ChangeLog 39 KB

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