ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. 2003-08-13 Piers Haken <[email protected]>
  2. * Iterator.cs:
  3. fix MergedIterator.Clone(), now clones other's iterators
  4. fix DescendantIterator.Clone(), now copies depth
  5. make iterator cloning constructors more type-specific
  6. 2003-08-01 Piers Haken <[email protected]>
  7. * Expression.cs: added NodeNamespaceTest
  8. * XPathNavigator.cs: implement Select* with namespaces
  9. 2003-07-31 Ben Maurer <[email protected]>
  10. * Iterator.cs: Allow creation of an EnumeratorIterator with an
  11. XmlNamespaceManager.
  12. 2003-07-31 Piers Haken <[email protected]>
  13. * Parser.jay:
  14. Nested predicates (uses ExprFilter instead)
  15. more type safety
  16. make grammar look more like w3c spec
  17. * Expression.cs:
  18. remove ExprStep, ExprPredicates
  19. NodeTest is now a NodeSet
  20. more type-safety
  21. * Iterator.cs:
  22. PredicateIterator now only takes a single predicate expression
  23. more type-safety
  24. * XPathNavigator.cs:
  25. simplified SelectTest
  26. * XPathException.cs:
  27. fixed indenting
  28. 2003-07-30 Duncan Mak <[email protected]>
  29. * XPathException.cs
  30. (GetObjectData):
  31. (Message): Added.
  32. 2003-07-29 Piers Haken <[email protected]>
  33. * DefaultContext.cs: 'local-name' returns String, not NodeSet!
  34. 2003-07-29 Piers Haken <[email protected]>
  35. * XPathNavigator.cs:
  36. * Expression.cs:
  37. add typesafe Evaluate* methods
  38. 2003-07-29 Piers Haken <[email protected]>
  39. * DefaultContext.cs: fix 'substring-after'
  40. 2003-07-29 Piers Haken <[email protected]>
  41. * Iterator.cs: fix PredicateIterator.CurrentPosition bug (it wasn't incrementing)
  42. 2003-07-29 Ben Maurer <[email protected]>
  43. * Iterator.cs: dont throw exceptions on tostring ()
  44. 2003-07-28 Piers Haken <[email protected]>
  45. * DefaultContext.cs: better handling of null argument lists
  46. * XPathNavigator.cs: implement ComparePosition
  47. 2003-07-28 Piers Haken <[email protected]>
  48. * Expression.cs: boolean operators: handle comparing .Any better
  49. 2003-07-28 Piers Haken <[email protected]>
  50. * DefaultContext.cs: count() should return a double
  51. * Expression.cs: better support for handling non-double numbers
  52. 2003-07-28 Piers Haken <[email protected]>
  53. * DefaultContext.cs: better function param matching
  54. 2003-07-27 Piers Haken <[email protected]>
  55. * Expression.cs:
  56. * DefaultContext.cs:
  57. catch FormatExceptions while parsing numbers
  58. 2003-07-27 Piers Haken <[email protected]>
  59. * Expression.cs:
  60. fix case sorting order
  61. allow EvaluateNumber to take XPathResultType.Any
  62. 2003-07-27 Piers Haken <[email protected]>
  63. * Expression.cs:
  64. * Tokenizer.cs:
  65. don't pass null to XmlQualifiedName constructor
  66. 2003-07-27 Piers Haken <[email protected]>
  67. * DefaultContext.cs: allow 'concat' to take arbitrary-typed arguments (spec?)
  68. 2003-07-27 Piers Haken <[email protected]>
  69. * Expression.cs: allow EvaluateNodeSet to take XPathResultType.Any
  70. 2003-07-26 Piers Haken <[email protected]>
  71. * Expression.cs: fix function evaluation with ambigous argument types
  72. * XPathNavigator.cs: fix silly null reference bug
  73. 2003-07-26 Piers Haken <[email protected]>
  74. * Iterator.cs:
  75. * DefaultContext.cs:
  76. ArrayListIterator->EnumeratorIterator
  77. * Expression.cs: add sorting support
  78. 2003-07-26 Piers Haken <[email protected]>
  79. * Tokenizer.cs:
  80. * Parser.jay:
  81. move QName parsing into tokenizer
  82. * Expression.cs:
  83. fix evaluating XPathResultType.Any
  84. fix ExprDiv.ToString()
  85. fix NodeTypeTest.ToString() (for namespace axis)
  86. 2003-07-25 Piers Haken <[email protected]>
  87. * Expression.cs: return clone of $var evaluation
  88. 2003-07-26 Piers Haken <[email protected]>
  89. * Iterator.cs: add setter for NamespaceManager
  90. * XPathNavigator.cs: propagate NamespaceManager from context on Evaluate
  91. * Expression.cs: fix func/var exception strings
  92. 2003-07-25 Piers Haken <[email protected]>
  93. * Expression.cs: implement ExprFilter.Evaluate
  94. 2003-07-25 Piers Haken <[email protected]>
  95. * Expression.cs: implement ExprVariable.Evaluate
  96. 2003-07-24 Ben Maurer <[email protected]>
  97. * DefaultContext.cs: implement lang ()
  98. 2003-07-24 Piers Haken <[email protected]>
  99. * Parser.jay:
  100. * Expression.cs:
  101. allow ExprUNION to take non-nodeset (eg, $var) arguments
  102. 2003-07-24 Piers Haken <[email protected]>
  103. * Tokenizer.cs: fix variable references
  104. * Parser.jay:
  105. * Expression.cs:
  106. * XPathNavigator.cs:
  107. use XmlQualifiedName
  108. 2003-06-30 Atsushi Enomoto <[email protected]>
  109. * XPathDocument.cs : removed Driver class and restored authors' name
  110. (though it is completely rewrote).
  111. 2003-06-30 Atsushi Enomoto <[email protected]>
  112. * XPathDocument.cs : Replaced existing stub class with real
  113. XPathDocument implementation.
  114. 2003-04-28 Piers Haken <[email protected]>
  115. * Parser.jay, Tokenizer.cs: more compliant lexical parsing of ambiguous tokens
  116. 2003-03-07 Piers Haken <[email protected]>
  117. * Tokenizer.cs: allow '.'s in NCNames
  118. 2003-03-07 Piers Haken <[email protected]>
  119. * Exression.cs:
  120. * DefaultContext.cs:
  121. fixed function argument resolution
  122. 2003-02-09 Piers Haken <[email protected]>
  123. * XPathNavigator.cs:
  124. * Iterator.cs:
  125. * Expression.cs: fix namespace handling
  126. 2003-01-04 Piers Haken <[email protected]>
  127. * Parser.*: Remove extraneous "using" that was stopping the build. Permanently thisi time ;-)
  128. 2003-02-02 Piers Haken <[email protected]>
  129. * Parser.jay: add token names
  130. * Tokenizer.cs: fix NCName tokenization
  131. 2003-01-02 Atsushi Enomoto <[email protected]>
  132. * Tokenizer.cs : Fixed ParseIdentifier to allow digits.
  133. (It should be a temporary fix.)
  134. 2002-09-22 Nick Drochak <[email protected]>
  135. * Parser.cs: Remove extraneous "using" that was stopping the build.
  136. 2002-09-21 Piers Haken <[email protected]>
  137. * XPathException: implementation
  138. * Expression.cs:
  139. * Iterator.cs:
  140. * Parser.jay:
  141. * Tokenizer.jay:
  142. * XPathNavigator.jay:
  143. use XPathException.
  144. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  145. * Parser.cs: commented out non-existent namespace (it compiles fine
  146. with mcs because of a bug that is already on bugzilla).
  147. 2002-09-12 Piers Haken <[email protected]>
  148. * Tokenizer.cs: fix parsing numbers that start with '.'
  149. * DefaultContext.cs: use MS-compatible formatting of doubles
  150. 2002-09-12 Piers Haken <[email protected]>
  151. * Iterator.cs: added NullIterator to handle unspecified contexts
  152. * XPathNavigator.cs: use NullIterator insted of SelfIterator when context is unspecified.
  153. * XPathNodeIterator.cs: change default _count to -1 to prevent recalculations for NullIterators
  154. 2002-09-12 Piers Haken <[email protected]>
  155. * Expression.cs, Parser.jay: allow ExprSLASH to take a generic expression as its left argument.
  156. * Iterator.cs: fix SlashIterator.Clone() when _iterRight is null.
  157. * DefaultContext.cs: fix id() return type.
  158. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  159. * DefaultContext.cs: fixed bug #28840.
  160. * Expression.cs: added FIXME.
  161. 2002-08-17 Jason Diamond <[email protected]>
  162. * XPathNavigator.cs: Fixed matching on patterns that look like
  163. absolute XPath expressions.
  164. 2002-08-17 Jason Diamond <[email protected]>
  165. * XPathNavigator.cs: Added naive (but working) implementation of
  166. Matches.
  167. 2002-07-31 Piers Haken <[email protected]>
  168. * XPathDocument.cs: simple, XmlDocument-based implementation
  169. 2002-07-25 Piers Haken <[email protected]>
  170. * DefaultContext.cs: implement XPathFunctionName 'name()' function.
  171. 2002-07-17 Piers Haken <[email protected]>
  172. * DefaultContext.cs: implement 'string-length()', 'normalize-space()'
  173. * Parser.jay: remove redundant production
  174. * Expression.cs: add switches for debugging under VS.NET
  175. 2002-07-17 Piers Haken <[email protected]>
  176. * Expression.cs: implement nodeset/nodeset comparisons (non-optimal)
  177. 2002-07-15 Piers Haken <[email protected]>
  178. * Iterator.cs:
  179. - rename UnionIterator to MergedIterator,
  180. - create new UnionIterator to implment uniqueness for '|' operator
  181. - fix position bug in ArrayListIterator.Clone()
  182. * Expression.cs: use new UnionIterator constructor syntax
  183. 2002-07-12 Piers Haken <[email protected]>
  184. * Iterator.cs: PredicateIterator: handle numeric predicates
  185. * Parser.jay: add some debugging support: yyparseDebug
  186. * Tokenizer.cs: cleanup, include '-' chars in identifier tokens
  187. 2002-06-29 Piers Haken <[email protected]>
  188. * Expression.cs:
  189. - remove dead code
  190. - NodeTest uses XPathResultType instead of internal NodeTestTypes enum
  191. - remove NodeTestTypes enum
  192. - remove NodeTestTypeAny (functionality provided by base now)
  193. - fix ExprStep to handle wildcard QNames
  194. * Parser.jay:
  195. - moved to Mono.Xml.XPath namespace
  196. - use XPathResultType
  197. - handle wildcard QNames
  198. * Tokenizer.cs: moved to Mono.Xml.XPath namespace
  199. * XPathNavigator.cs: implement
  200. - IsDescendant
  201. - SelectAncestors
  202. - SelectDescendants
  203. - SelectChildren
  204. * XPathResultType.cs: fix enum values
  205. 2002-06-24 Jason Diamond <[email protected]>
  206. * XPathScanner.cs: Removed.
  207. 2002-06-24 Dick Porter <[email protected]>
  208. * XmlCaseOrder.cs: Fix namespace
  209. 2002-06-23 Piers Haken <[email protected]>
  210. * DefaultContext.cs: implemented XPathFUnctionId
  211. * Iterator.cs: new ArrayListIterator for id() support
  212. 2002-06-23 Piers Haken <[email protected]>
  213. * XPathNavigator.cs: implement:
  214. - Compile
  215. - Evaluate
  216. - Clone
  217. - Select
  218. - ToString
  219. - some forwarding methods
  220. * XPathNodeIterator: implement caching Count
  221. * Tokenizer.cs: new XPath tokenizer
  222. * Parser.jay: new XPath grammar
  223. * Parser.cs: new precompiled XPath grammar
  224. * Expression.cs: new XPath expression objects
  225. * Iterator.cs: new XPath result/context objects
  226. * DefaultContext.cs: new XPath function binding context
  227. 2002-05-08 Tim Coleman <[email protected]>
  228. * XPathDocument.cs:
  229. * XPathException.cs: New stub files added.
  230. 2002-04-12 Duncan Mak <[email protected]>
  231. * XmlCaseOrder.cs: Moved to here from System.Xml.
  232. 2002-03-26 Jason Diamond <[email protected]>
  233. * XPathScanner.cs: Now handles name tests with wildacards. Abbreviated
  234. steps. Both absolution and relative abbreviated location paths.
  235. 2002-03-25 Jason Diamond <[email protected]>
  236. * XPathScanner.cs: Added new file. This class is supposed to be internal
  237. but that would make it impossible to test.
  238. 2002-03-08 Duncan Mak <[email protected]>
  239. * XPathNamespaceScope.cs:
  240. * XPathNodeType.cs:
  241. * XPathResultType.cs:
  242. * XmlDataType.cs:
  243. * XmlSortOrder.cs: Used EnumCheck and realigned elements to be compatible with MS
  244. implementation. XPathResultType is interesting as EnumCheck does
  245. not show the Navigator element, but shows the String element twice.
  246. 2002-03-08 Jason Diamond <[email protected]>
  247. * XmlDataType.cs, XmlSortOrder.cs, XPathNodeType.cs: Added files.
  248. 2002-03-06 Jason Diamond <[email protected]>
  249. * ChangeLog: Added to this directory.
  250. * XPathExpression.cs, XPathNamespaceScope.cs, XPathNodeIterator.cs,
  251. XPathResultType.cs: New files.
  252. * XPathNavigator.cs: Stubbed out all properties and methods.