ChangeLog 31 KB

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