ChangeLog 43 KB

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