ChangeLog 21 KB

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