ChangeLog 24 KB

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