2
0

ChangeLog 20 KB

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