ChangeLog 10 KB

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