ChangeLog 41 KB

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