ChangeLog 39 KB

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