ChangeLog 6.0 KB

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