ChangeLog 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. 2003-04-28 Piers Haken <[email protected]>
  2. * Parser.jay, Tokenizer.cs: more compliant lexical parsing of ambiguous tokens
  3. 2003-03-07 Piers Haken <[email protected]>
  4. * Tokenizer.cs: allow '.'s in NCNames
  5. 2003-03-07 Piers Haken <[email protected]>
  6. * Exression.cs:
  7. * DefaultContext.cs:
  8. fixed function argument resolution
  9. 2003-02-09 Piers Haken <[email protected]>
  10. * XPathNavigator.cs:
  11. * Iterator.cs:
  12. * Expression.cs: fix namespace handling
  13. 2003-01-04 Piers Haken <[email protected]>
  14. * Parser.*: Remove extraneous "using" that was stopping the build. Permanently thisi time ;-)
  15. 2003-02-02 Piers Haken <[email protected]>
  16. * Parser.jay: add token names
  17. * Tokenizer.cs: fix NCName tokenization
  18. 2003-01-02 Atsushi Enomoto <[email protected]>
  19. * Tokenizer.cs : Fixed ParseIdentifier to allow digits.
  20. (It should be a temporary fix.)
  21. 2002-09-22 Nick Drochak <[email protected]>
  22. * Parser.cs: Remove extraneous "using" that was stopping the build.
  23. 2002-09-21 Piers Haken <[email protected]>
  24. * XPathException: implementation
  25. * Expression.cs:
  26. * Iterator.cs:
  27. * Parser.jay:
  28. * Tokenizer.jay:
  29. * XPathNavigator.jay:
  30. use XPathException.
  31. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  32. * Parser.cs: commented out non-existent namespace (it compiles fine
  33. with mcs because of a bug that is already on bugzilla).
  34. 2002-09-12 Piers Haken <[email protected]>
  35. * Tokenizer.cs: fix parsing numbers that start with '.'
  36. * DefaultContext.cs: use MS-compatible formatting of doubles
  37. 2002-09-12 Piers Haken <[email protected]>
  38. * Iterator.cs: added NullIterator to handle unspecified contexts
  39. * XPathNavigator.cs: use NullIterator insted of SelfIterator when context is unspecified.
  40. * XPathNodeIterator.cs: change default _count to -1 to prevent recalculations for NullIterators
  41. 2002-09-12 Piers Haken <[email protected]>
  42. * Expression.cs, Parser.jay: allow ExprSLASH to take a generic expression as its left argument.
  43. * Iterator.cs: fix SlashIterator.Clone() when _iterRight is null.
  44. * DefaultContext.cs: fix id() return type.
  45. 2002-09-03 Gonzalo Paniagua Javier <[email protected]>
  46. * DefaultContext.cs: fixed bug #28840.
  47. * Expression.cs: added FIXME.
  48. 2002-08-17 Jason Diamond <[email protected]>
  49. * XPathNavigator.cs: Fixed matching on patterns that look like
  50. absolute XPath expressions.
  51. 2002-08-17 Jason Diamond <[email protected]>
  52. * XPathNavigator.cs: Added naive (but working) implementation of
  53. Matches.
  54. 2002-07-31 Piers Haken <[email protected]>
  55. * XPathDocument.cs: simple, XmlDocument-based implementation
  56. 2002-07-25 Piers Haken <[email protected]>
  57. * DefaultContext.cs: implement XPathFunctionName 'name()' function.
  58. 2002-07-17 Piers Haken <[email protected]>
  59. * DefaultContext.cs: implement 'string-length()', 'normalize-space()'
  60. * Parser.jay: remove redundant production
  61. * Expression.cs: add switches for debugging under VS.NET
  62. 2002-07-17 Piers Haken <[email protected]>
  63. * Expression.cs: implement nodeset/nodeset comparisons (non-optimal)
  64. 2002-07-15 Piers Haken <[email protected]>
  65. * Iterator.cs:
  66. - rename UnionIterator to MergedIterator,
  67. - create new UnionIterator to implment uniqueness for '|' operator
  68. - fix position bug in ArrayListIterator.Clone()
  69. * Expression.cs: use new UnionIterator constructor syntax
  70. 2002-07-12 Piers Haken <[email protected]>
  71. * Iterator.cs: PredicateIterator: handle numeric predicates
  72. * Parser.jay: add some debugging support: yyparseDebug
  73. * Tokenizer.cs: cleanup, include '-' chars in identifier tokens
  74. 2002-06-29 Piers Haken <[email protected]>
  75. * Expression.cs:
  76. - remove dead code
  77. - NodeTest uses XPathResultType instead of internal NodeTestTypes enum
  78. - remove NodeTestTypes enum
  79. - remove NodeTestTypeAny (functionality provided by base now)
  80. - fix ExprStep to handle wildcard QNames
  81. * Parser.jay:
  82. - moved to Mono.Xml.XPath namespace
  83. - use XPathResultType
  84. - handle wildcard QNames
  85. * Tokenizer.cs: moved to Mono.Xml.XPath namespace
  86. * XPathNavigator.cs: implement
  87. - IsDescendant
  88. - SelectAncestors
  89. - SelectDescendants
  90. - SelectChildren
  91. * XPathResultType.cs: fix enum values
  92. 2002-06-24 Jason Diamond <[email protected]>
  93. * XPathScanner.cs: Removed.
  94. 2002-06-24 Dick Porter <[email protected]>
  95. * XmlCaseOrder.cs: Fix namespace
  96. 2002-06-23 Piers Haken <[email protected]>
  97. * DefaultContext.cs: implemented XPathFUnctionId
  98. * Iterator.cs: new ArrayListIterator for id() support
  99. 2002-06-23 Piers Haken <[email protected]>
  100. * XPathNavigator.cs: implement:
  101. - Compile
  102. - Evaluate
  103. - Clone
  104. - Select
  105. - ToString
  106. - some forwarding methods
  107. * XPathNodeIterator: implement caching Count
  108. * Tokenizer.cs: new XPath tokenizer
  109. * Parser.jay: new XPath grammar
  110. * Parser.cs: new precompiled XPath grammar
  111. * Expression.cs: new XPath expression objects
  112. * Iterator.cs: new XPath result/context objects
  113. * DefaultContext.cs: new XPath function binding context
  114. 2002-05-08 Tim Coleman <[email protected]>
  115. * XPathDocument.cs:
  116. * XPathException.cs: New stub files added.
  117. 2002-04-12 Duncan Mak <[email protected]>
  118. * XmlCaseOrder.cs: Moved to here from System.Xml.
  119. 2002-03-26 Jason Diamond <[email protected]>
  120. * XPathScanner.cs: Now handles name tests with wildacards. Abbreviated
  121. steps. Both absolution and relative abbreviated location paths.
  122. 2002-03-25 Jason Diamond <[email protected]>
  123. * XPathScanner.cs: Added new file. This class is supposed to be internal
  124. but that would make it impossible to test.
  125. 2002-03-08 Duncan Mak <[email protected]>
  126. * XPathNamespaceScope.cs:
  127. * XPathNodeType.cs:
  128. * XPathResultType.cs:
  129. * XmlDataType.cs:
  130. * XmlSortOrder.cs: Used EnumCheck and realigned elements to be compatible with MS
  131. implementation. XPathResultType is interesting as EnumCheck does
  132. not show the Navigator element, but shows the String element twice.
  133. 2002-03-08 Jason Diamond <[email protected]>
  134. * XmlDataType.cs, XmlSortOrder.cs, XPathNodeType.cs: Added files.
  135. 2002-03-06 Jason Diamond <[email protected]>
  136. * ChangeLog: Added to this directory.
  137. * XPathExpression.cs, XPathNamespaceScope.cs, XPathNodeIterator.cs,
  138. XPathResultType.cs: New files.
  139. * XPathNavigator.cs: Stubbed out all properties and methods.