ChangeLog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. 2004-05-22 Atsushi Enomoto <[email protected]>
  2. * DefaultContext.cs : Add XPathNavigator input support for ToBoolean()
  3. and ToNavigator().
  4. * Expression.cs : In Equality comparison, evaluate XPathNavigator in
  5. the same as well as NodeSet. This fixes bug #59134.
  6. 2004-05-22 Atsushi Enomoto <[email protected]>
  7. * XPathAtomicValue.cs : missed NET_2_0.
  8. 2004-05-22 Atsushi Enomoto <[email protected]>
  9. * IXPathChangeNavigable.cs,
  10. IXPathEditable.cs,
  11. NodeChangedEventArgs.cs,
  12. NodeChangedEventHandler.cs,
  13. XPathAtomicValue.cs,
  14. XPathChangeNavigator.cs,
  15. XPathDocumentNodeChangedAction.cs,
  16. XPathEditableNavigator.cs,
  17. XPathItem.cs,
  18. XmlChangeFilters.cs,
  19. XmlNodeChangeType.cs : added NET_2_0 classes.
  20. * XPathDocument.cs,
  21. XPathNavigator.cs : updated NET_2_0 members.
  22. 2004-05-20 Atsushi Enomoto <[email protected]>
  23. * Expression.cs : We should not catch all kind of exception. Just
  24. throwing any kind of exception would be preferable.
  25. Added support for XPathNavigator values.
  26. 2004-05-13 Atsushi Enomoto <[email protected]>
  27. * DefaultContext.cs : Removed MonoTODO. done.
  28. * Expression.cs : handle XPathResultType.Navigator in some places and
  29. removed MonoTODO. Mark MonoTODO with explicit comments (though they
  30. are mostly pointing out possibilities of optimization).
  31. Removed extra check that depended on the old bugs.
  32. * XPathResultType.cs : Fixed .Navigator that had the same value as
  33. .String.
  34. 2004-05-12 Atsushi Enomoto <[email protected]>
  35. * Parser.jay : made class internal.
  36. 2004-03-16 Atsushi Enomoto <[email protected]>
  37. * XPathNavigator.cs, Iterator.cs : Considered detached nodes, the
  38. result of MoveToParent() should be checked.
  39. 2004-02-17 Atsushi Enomoto <[email protected]>
  40. * XPathNavigator.cs : Only child and attribute axes are allowed for
  41. Matches().
  42. * Expression.cs : Added IsPositional property.
  43. * DefaultContext.cs : Added some overrides.
  44. 2004-02-16 Atsushi Enomoto <[email protected]>
  45. * XPathNavigator.cs : no, its still not ok. comment out now.
  46. 2004-02-16 Atsushi Enomoto <[email protected]>
  47. * Expression.cs : Added EvaluatedNodeType and NeedAbsoluteMatching
  48. to reduce extraneous Matches() trial.
  49. * Iterator.cs : Removed unused MergedIterator.
  50. * XPathNavigator.cs : Optimized Matches() not to evaluate ancestors
  51. unnecessarily. (Test with NeedAbsoluteMatching).
  52. 2004-02-10 Atsushi Enomoto <[email protected]>
  53. * Iterator.cs : Added overriden Count properties for some iterators
  54. (this fixes the half of #50678).
  55. Added ListIterator class (which can reduce GetEnumerator()).
  56. In some places we can omit clone for Current property, so added
  57. some check logic (It has no effect as yet).
  58. * Expression.cs, DefaultContext.cs :
  59. use ListIterator instead of EnumeratorIterator.
  60. 2004-02-08 Atsushi Enomoto <[email protected]>
  61. * DefaultContext.cs, Expression.cs, Iterator.cs :
  62. tiny foreach elimination.
  63. 2004-02-05 Atsushi Enomoto <[email protected]>
  64. * DefaultContext.cs : trivial processing order fix.
  65. 2004-01-27 Atsushi Enomoto <[email protected]>
  66. * DefaultContext.cs : Avoid exception if possible.
  67. * Iterator.cs : Fixed PrecedingSiblingIterator.MoveNext(). When the
  68. nav was positioned at the first, it incorrectly points itself.
  69. Don't add names to name table while it is useless and expensive.
  70. 2004-01-08 Nick Drochak <[email protected]>
  71. * Iterator.cs: Removed unused variable.
  72. 2003-12-18 Atsushi Enomoto <[email protected]>
  73. * Parser.jay : now it supresses error output from jay.
  74. * DefaultContext.cs : (XPathFunctionSubstring) exclude -Infinity.
  75. * Tokenizer.cs : better error message.
  76. * XPathDocument.cs : Use XmlValidatingReader to support id() function.
  77. (just found MS.NET actually supports it)
  78. 2003-12-16 Atsushi Enomoto <[email protected]>
  79. * Iterator.cs : On its iteration, moving Current must not affect to
  80. MoveNext(). To assure this, Current must be a clone of navigator.
  81. Removed unused code.
  82. 2003-12-07 Atsushi Enomoto <[email protected]>
  83. * Tokenizer.cs : Removed some TODOs. (trivial ;-)
  84. * Iterator.cs : ParensIterator can inherit from BaseIterator.
  85. SlashIterator copy .ctor() always failed to clone. This fixes Count.
  86. 2003-12-03 Atsushi Enomoto <[email protected]>
  87. * Expression.cs : XPathSorters.Compare() should compare document
  88. position. See last sentence of XSLT 1.0 secion 10.
  89. 2003-12-03 Atsushi Enomoto <[email protected]>
  90. * DefaultContext.cs : Overrode all functions' ToString().
  91. XPathFunctions.ToNumber() trims whitespaces at both side.
  92. Fixed NullReferenceException in normalize-space().
  93. * Iterator.cs : Fixed AncestorOrSelfIterator.MoveNext() didn't handle
  94. attribute or namespace node correctly.
  95. SlashIterator.Clone() didn't clone "next node iterator" correctly.
  96. EnumeratorIterator.ctor() should raise an error (not at Clone())
  97. when the target IEnumerator is not ICloneable.
  98. 2003-11-28 Atsushi Enomoto <[email protected]>
  99. * Expression.cs : namespace axis now traversed in reverse order, so it
  100. requires sorting.
  101. * Iterator.cs : UnionIterator.Clone() was incomplete.
  102. NamespaceItarator() should be reverse order (special handling
  103. because of XPathNavigator specification).
  104. 2003-11-24 Atsushi Enomoto <[email protected]>
  105. * Iterator.cs : PrecedingIterator.MoveNext() now breaks up at Root.
  106. * XPathNavigator.cs : ComparePosition() didn't handle attributes
  107. correctly.
  108. 2003-11-24 Atsushi Enomoto <[email protected]>
  109. * Parser.jay, Expression.cs, Iterator.cs :
  110. Added ExprParens and ParensIterator classes which is used to handle
  111. precedence of parenthesized expressions.
  112. (e.g. consider "(preceding::*)[3]" and "preceding::[3]" )
  113. * Expression.cs, Iterator.cs :
  114. Added RequireSorting property for each Expr and BaseIterator classes.
  115. SlashIterator.MoveNext() now considers correct sorting. But
  116. considering performance, it separates two logics, sorted and sortless
  117. depending on RequireSorting of left iterator and right expression.
  118. * Iterator.cs :
  119. SimpleIterator.ctor() should consider when nav is null.
  120. FollowingIterator.MoveNext() and PrecedingIterator.MoveNext() should
  121. not return any nodes.
  122. AncestorIterator and AncestorOrSelfIterator copy ctr() should clone
  123. positions.
  124. AncestorIterator.MoveNext() should skip Root if context node is
  125. Root itself.
  126. FollowingIterator.MoveNext() should not handle children of context
  127. itself.
  128. PrecedingIterator.MoveNext() should skip its ancestors.
  129. AxisIterator.ReverseAxis should be dependent on its containing iter.
  130. UnionIterator.MoveNext() should consider comparison of nodes in
  131. different document. The behavior is implementation dependent.
  132. (see XSLT spec 12.1)
  133. 2003-11-19 Atsushi Enomoto <[email protected]>
  134. * Added XPathComparer.cs
  135. * DefaultContext.cs : Fixed XPathFunctionId.Evaluate() to iterate base
  136. iterator correctly, and sort results.
  137. 2003-11-19 Atsushi Enomoto <[email protected]>
  138. * DefaultContext.cs : Imcomplete fix ;-)
  139. 2003-11-19 Atsushi Enomoto <[email protected]>
  140. * DefaultContext.cs : XPathFunctions.ToNumber() should catch overflow.
  141. XPathFunctionId.cs : Exposed Id expression.
  142. * Expression.cs : Added ExprLiteral.Value, and class ExprParens (it
  143. will be used to solve evaluation precedence problem).
  144. 2003-11-09 Atsushi Enomoto <[email protected]>
  145. * Iterator.cs : Fixed SlashIterator that might return nodes 1)in
  146. inconsistent order, and 2)may return duplicate result nodes.
  147. 2003-11-06 Ben Maurer <[email protected]>
  148. * Iterator.cs: (AxisIterator.ComparablePosition): Remove. Let
  149. it inherit from the base class. This made b[2] evaluated on
  150. <a /><b /><c /><a /><b /><c /> return the first b node because
  151. in the ChildIterator it was the second node and seemed to satsify
  152. the predicate.
  153. 2003-11-04 Atsushi Enomoto <[email protected]>
  154. * Iterator.cs : Added bool ReverseAxis property to identify whether
  155. the iterator is in reverse order or not. Added ComparablePosition
  156. for correct position comparison for PredicateIterator and reverse-
  157. order-axes. Modified AncestorIterator, AncestorOrSelfIterator,
  158. PrecedingIterator and PrecedingSiblingIterator to make MoveNext()
  159. return their nodes in document order. This fixes bugzilla #39079.
  160. 2003-10-15 Atsushi Enomoto <[email protected]>
  161. * Iterator.cs : DescendantIterator and FollowingIterator also should
  162. not MoveNext() after they reached to the end.
  163. 2003-10-13 Atsushi Enomoto <[email protected]>
  164. * Iterator.cs : Fixed UnionIterator who ignores document order.
  165. Fixed SlashIterator whose MoveNext() should finish at its end.
  166. 2003-09-27 Ben Maurer <[email protected]>
  167. * Iterator.cs, Expression.cs, XPathNavigator.cs: In AxisIterator
  168. use NameTable so we dont call strcmp.
  169. 2003-09-27 Ben Maurer <[email protected]>
  170. * DefaultContext.cs (translate): translate ("abc", "c", "") = "ab"
  171. not "abc".
  172. * Iterator.cs, Expression.cs: All axes are
  173. SimpleIterators. SimpleIterators are gaurenteed to give the same
  174. XPathNavigator in Current. Make AxisIterator take a
  175. SimpleIterator, not any old BaseIterator. Will allow us to make
  176. NameTable optimizations and avoid quite a few strcmp's.
  177. 2003-09-24 Ben Maurer <[email protected]>
  178. * Expression.cs: make // work right, must use another slash itr.
  179. 2003-09-21 Ben Maurer <[email protected]>
  180. * Expression.cs: cant use $$ before assigned.
  181. 2003-09-21 Ben Maurer <[email protected]>
  182. * Expression.cs, Parser.jay, XPathNavigator.cs: api beautification.
  183. 2003-09-20 Ben Maurer <[email protected]>
  184. * Expression.cs: num != double.NaN does not work.
  185. 2003-09-19 Ben Maurer <[email protected]>
  186. * Expression.cs: in NodeTypeTest dont throw an exception if it is
  187. an unknown node type (allows for better Pattern debugging).
  188. 2003-09-17 Ben Maurer <[email protected]>
  189. * DefaultContext.cs: implement sum () and translate ().
  190. 2003-09-13 Ben Maurer <[email protected]>
  191. * XPathNavigator.cs: Make methods where you pass in the context,
  192. so that we dont have to clone expressions so much.
  193. 2003-09-06 Ben Maurer <[email protected]>
  194. * DefaultContext.cs, Expresssion.cs, Parser.jay: Rewrite so that
  195. system functions are actually expressions. Will allow for some
  196. nice optimizations.
  197. 2003-08-25 Ben Maurer <[email protected]>
  198. * XPathNavigator.cs: "Smart" behavior in Matches. Nice 8x speed
  199. improvement in the method (5ms/call -> .7 ms / call) measured by
  200. monodoc's rendering of N:System.
  201. * Expression.cs: Utility methods to support above.
  202. 2003-08-13 Piers Haken <[email protected]>
  203. * Iterator.cs:
  204. fix MergedIterator.Clone(), now clones other's iterators
  205. fix DescendantIterator.Clone(), now copies depth
  206. make iterator cloning constructors more type-specific
  207. 2003-08-01 Piers Haken <[email protected]>
  208. * Expression.cs: added NodeNamespaceTest
  209. * XPathNavigator.cs: implement Select* with namespaces
  210. 2003-07-31 Ben Maurer <[email protected]>
  211. * Iterator.cs: Allow creation of an EnumeratorIterator with an
  212. XmlNamespaceManager.
  213. 2003-07-31 Piers Haken <[email protected]>
  214. * Parser.jay:
  215. Nested predicates (uses ExprFilter instead)
  216. more type safety
  217. make grammar look more like w3c spec
  218. * Expression.cs:
  219. remove ExprStep, ExprPredicates
  220. NodeTest is now a NodeSet
  221. more type-safety
  222. * Iterator.cs:
  223. PredicateIterator now only takes a single predicate expression
  224. more type-safety
  225. * XPathNavigator.cs:
  226. simplified SelectTest
  227. * XPathException.cs:
  228. fixed indenting
  229. 2003-07-30 Duncan Mak <[email protected]>
  230. * XPathException.cs
  231. (GetObjectData):
  232. (Message): Added.
  233. 2003-07-29 Piers Haken <[email protected]>
  234. * DefaultContext.cs: 'local-name' returns String, not NodeSet!
  235. 2003-07-29 Piers Haken <[email protected]>
  236. * XPathNavigator.cs:
  237. * Expression.cs:
  238. add typesafe Evaluate* methods
  239. 2003-07-29 Piers Haken <[email protected]>
  240. * DefaultContext.cs: fix 'substring-after'
  241. 2003-07-29 Piers Haken <[email protected]>
  242. * Iterator.cs: fix PredicateIterator.CurrentPosition bug (it wasn't incrementing)
  243. 2003-07-29 Ben Maurer <[email protected]>
  244. * Iterator.cs: dont throw exceptions on tostring ()
  245. 2003-07-28 Piers Haken <[email protected]>
  246. * DefaultContext.cs: better handling of null argument lists
  247. * XPathNavigator.cs: implement ComparePosition
  248. 2003-07-28 Piers Haken <[email protected]>
  249. * Expression.cs: boolean operators: handle comparing .Any better
  250. 2003-07-28 Piers Haken <[email protected]>
  251. * DefaultContext.cs: count() should return a double
  252. * Expression.cs: better support for handling non-double numbers
  253. 2003-07-28 Piers Haken <[email protected]>
  254. * DefaultContext.cs: better function param matching
  255. 2003-07-27 Piers Haken <[email protected]>
  256. * Expression.cs:
  257. * DefaultContext.cs:
  258. catch FormatExceptions while parsing numbers
  259. 2003-07-27 Piers Haken <[email protected]>
  260. * Expression.cs:
  261. fix case sorting order
  262. allow EvaluateNumber to take XPathResultType.Any
  263. 2003-07-27 Piers Haken <[email protected]>
  264. * Expression.cs:
  265. * Tokenizer.cs:
  266. don't pass null to XmlQualifiedName constructor
  267. 2003-07-27 Piers Haken <[email protected]>
  268. * DefaultContext.cs: allow 'concat' to take arbitrary-typed arguments (spec?)
  269. 2003-07-27 Piers Haken <[email protected]>
  270. * Expression.cs: allow EvaluateNodeSet to take XPathResultType.Any
  271. 2003-07-26 Piers Haken <[email protected]>
  272. * Expression.cs: fix function evaluation with ambigous argument types
  273. * XPathNavigator.cs: fix silly null reference bug
  274. 2003-07-26 Piers Haken <[email protected]>
  275. * Iterator.cs:
  276. * DefaultContext.cs:
  277. ArrayListIterator->EnumeratorIterator
  278. * Expression.cs: add sorting support
  279. 2003-07-26 Piers Haken <[email protected]>
  280. * Tokenizer.cs:
  281. * Parser.jay:
  282. move QName parsing into tokenizer
  283. * Expression.cs:
  284. fix evaluating XPathResultType.Any
  285. fix ExprDiv.ToString()
  286. fix NodeTypeTest.ToString() (for namespace axis)
  287. 2003-07-25 Piers Haken <[email protected]>
  288. * Expression.cs: return clone of $var evaluation
  289. 2003-07-26 Piers Haken <[email protected]>
  290. * Iterator.cs: add setter for NamespaceManager
  291. * XPathNavigator.cs: propagate NamespaceManager from context on Evaluate
  292. * Expression.cs: fix func/var exception strings
  293. 2003-07-25 Piers Haken <[email protected]>
  294. * Expression.cs: implement ExprFilter.Evaluate
  295. 2003-07-25 Piers Haken <[email protected]>
  296. * Expression.cs: implement ExprVariable.Evaluate
  297. 2003-07-24 Ben Maurer <[email protected]>
  298. * DefaultContext.cs: implement lang ()
  299. 2003-07-24 Piers Haken <[email protected]>
  300. * Parser.jay:
  301. * Expression.cs:
  302. allow ExprUNION to take non-nodeset (eg, $var) arguments
  303. 2003-07-24 Piers Haken <[email protected]>
  304. * Tokenizer.cs: fix variable references
  305. * Parser.jay:
  306. * Expression.cs:
  307. * XPathNavigator.cs:
  308. use XmlQualifiedName
  309. 2003-06-30 Atsushi Enomoto <[email protected]>
  310. * XPathDocument.cs : removed Driver class and restored authors' name
  311. (though it is completely rewrote).
  312. 2003-06-30 Atsushi Enomoto <[email protected]>
  313. * XPathDocument.cs : Replaced existing stub class with real
  314. XPathDocument implementation.
  315. 2003-04-28 Piers Haken <[email protected]>
  316. * Parser.jay, Tokenizer.cs: more compliant lexical parsing of ambiguous tokens
  317. 2003-03-07 Piers Haken <[email protected]>
  318. * Tokenizer.cs: allow '.'s in NCNames
  319. 2003-03-07 Piers Haken <[email protected]>
  320. * Exression.cs:
  321. * DefaultContext.cs:
  322. fixed function argument resolution
  323. 2003-02-09 Piers Haken <[email protected]>
  324. * XPathNavigator.cs:
  325. * Iterator.cs:
  326. * Expression.cs: fix namespace handling
  327. 2003-01-04 Piers Haken <[email protected]>
  328. * Parser.*: Remove extraneous "using" that was stopping the build. Permanently thisi time ;-)
  329. 2003-02-02 Piers Haken <[email protected]>
  330. * Parser.jay: add token names
  331. * Tokenizer.cs: fix NCName tokenization
  332. 2003-01-02 Atsushi Enomoto <[email protected]>
  333. * Tokenizer.cs : Fixed ParseIdentifier to allow digits.
  334. (It should be a temporary fix.)
  335. 2002-09-22 Nick Drochak <[email protected]>
  336. * Parser.cs: Remove extraneous "using" that was stopping the build.
  337. 2002-09-21 Piers Haken <[email protected]>
  338. * XPathException: implementation
  339. * Expression.cs:
  340. * Iterator.cs:
  341. * Parser.jay:
  342. * Tokenizer.jay:
  343. * XPathNavigator.jay:
  344. use XPathException.
  345. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  346. * Parser.cs: commented out non-existent namespace (it compiles fine
  347. with mcs because of a bug that is already on bugzilla).
  348. 2002-09-12 Piers Haken <[email protected]>
  349. * Tokenizer.cs: fix parsing numbers that start with '.'
  350. * DefaultContext.cs: use MS-compatible formatting of doubles
  351. 2002-09-12 Piers Haken <[email protected]>
  352. * Iterator.cs: added NullIterator to handle unspecified contexts
  353. * XPathNavigator.cs: use NullIterator insted of SelfIterator when context is unspecified.
  354. * XPathNodeIterator.cs: change default _count to -1 to prevent recalculations for NullIterators
  355. 2002-09-12 Piers Haken <[email protected]>
  356. * Expression.cs, Parser.jay: allow ExprSLASH to take a generic expression as its left argument.
  357. * Iterator.cs: fix SlashIterator.Clone() when _iterRight is null.
  358. * DefaultContext.cs: fix id() return type.
  359. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  360. * DefaultContext.cs: fixed bug #28840.
  361. * Expression.cs: added FIXME.
  362. 2002-08-17 Jason Diamond <[email protected]>
  363. * XPathNavigator.cs: Fixed matching on patterns that look like
  364. absolute XPath expressions.
  365. 2002-08-17 Jason Diamond <[email protected]>
  366. * XPathNavigator.cs: Added naive (but working) implementation of
  367. Matches.
  368. 2002-07-31 Piers Haken <[email protected]>
  369. * XPathDocument.cs: simple, XmlDocument-based implementation
  370. 2002-07-25 Piers Haken <[email protected]>
  371. * DefaultContext.cs: implement XPathFunctionName 'name()' function.
  372. 2002-07-17 Piers Haken <[email protected]>
  373. * DefaultContext.cs: implement 'string-length()', 'normalize-space()'
  374. * Parser.jay: remove redundant production
  375. * Expression.cs: add switches for debugging under VS.NET
  376. 2002-07-17 Piers Haken <[email protected]>
  377. * Expression.cs: implement nodeset/nodeset comparisons (non-optimal)
  378. 2002-07-15 Piers Haken <[email protected]>
  379. * Iterator.cs:
  380. - rename UnionIterator to MergedIterator,
  381. - create new UnionIterator to implment uniqueness for '|' operator
  382. - fix position bug in ArrayListIterator.Clone()
  383. * Expression.cs: use new UnionIterator constructor syntax
  384. 2002-07-12 Piers Haken <[email protected]>
  385. * Iterator.cs: PredicateIterator: handle numeric predicates
  386. * Parser.jay: add some debugging support: yyparseDebug
  387. * Tokenizer.cs: cleanup, include '-' chars in identifier tokens
  388. 2002-06-29 Piers Haken <[email protected]>
  389. * Expression.cs:
  390. - remove dead code
  391. - NodeTest uses XPathResultType instead of internal NodeTestTypes enum
  392. - remove NodeTestTypes enum
  393. - remove NodeTestTypeAny (functionality provided by base now)
  394. - fix ExprStep to handle wildcard QNames
  395. * Parser.jay:
  396. - moved to Mono.Xml.XPath namespace
  397. - use XPathResultType
  398. - handle wildcard QNames
  399. * Tokenizer.cs: moved to Mono.Xml.XPath namespace
  400. * XPathNavigator.cs: implement
  401. - IsDescendant
  402. - SelectAncestors
  403. - SelectDescendants
  404. - SelectChildren
  405. * XPathResultType.cs: fix enum values
  406. 2002-06-24 Jason Diamond <[email protected]>
  407. * XPathScanner.cs: Removed.
  408. 2002-06-24 Dick Porter <[email protected]>
  409. * XmlCaseOrder.cs: Fix namespace
  410. 2002-06-23 Piers Haken <[email protected]>
  411. * DefaultContext.cs: implemented XPathFUnctionId
  412. * Iterator.cs: new ArrayListIterator for id() support
  413. 2002-06-23 Piers Haken <[email protected]>
  414. * XPathNavigator.cs: implement:
  415. - Compile
  416. - Evaluate
  417. - Clone
  418. - Select
  419. - ToString
  420. - some forwarding methods
  421. * XPathNodeIterator: implement caching Count
  422. * Tokenizer.cs: new XPath tokenizer
  423. * Parser.jay: new XPath grammar
  424. * Parser.cs: new precompiled XPath grammar
  425. * Expression.cs: new XPath expression objects
  426. * Iterator.cs: new XPath result/context objects
  427. * DefaultContext.cs: new XPath function binding context
  428. 2002-05-08 Tim Coleman <[email protected]>
  429. * XPathDocument.cs:
  430. * XPathException.cs: New stub files added.
  431. 2002-04-12 Duncan Mak <[email protected]>
  432. * XmlCaseOrder.cs: Moved to here from System.Xml.
  433. 2002-03-26 Jason Diamond <[email protected]>
  434. * XPathScanner.cs: Now handles name tests with wildacards. Abbreviated
  435. steps. Both absolution and relative abbreviated location paths.
  436. 2002-03-25 Jason Diamond <[email protected]>
  437. * XPathScanner.cs: Added new file. This class is supposed to be internal
  438. but that would make it impossible to test.
  439. 2002-03-08 Duncan Mak <[email protected]>
  440. * XPathNamespaceScope.cs:
  441. * XPathNodeType.cs:
  442. * XPathResultType.cs:
  443. * XmlDataType.cs:
  444. * XmlSortOrder.cs: Used EnumCheck and realigned elements to be compatible with MS
  445. implementation. XPathResultType is interesting as EnumCheck does
  446. not show the Navigator element, but shows the String element twice.
  447. 2002-03-08 Jason Diamond <[email protected]>
  448. * XmlDataType.cs, XmlSortOrder.cs, XPathNodeType.cs: Added files.
  449. 2002-03-06 Jason Diamond <[email protected]>
  450. * ChangeLog: Added to this directory.
  451. * XPathExpression.cs, XPathNamespaceScope.cs, XPathNodeIterator.cs,
  452. XPathResultType.cs: New files.
  453. * XPathNavigator.cs: Stubbed out all properties and methods.