ChangeLog 26 KB

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