ChangeLog 25 KB

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