ChangeLog 13 KB

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