ChangeLog 20 KB

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