ChangeLog 21 KB

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