ChangeLog 8.5 KB

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