ChangeLog 41 KB

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