ChangeLog 11 KB

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