ChangeLog 20 KB

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