2
0

ChangeLog 20 KB

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