ChangeLog 26 KB

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