ChangeLog 22 KB

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