ChangeLog 8.4 KB

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