ChangeLog 21 KB

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