ChangeLog 45 KB

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