ChangeLog 27 KB

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