ChangeLog 41 KB

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