2
0

ChangeLog 22 KB

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