ChangeLog 26 KB

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