ChangeLog 44 KB

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