ChangeLog 13 KB

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