ChangeLog 29 KB

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