ChangeLog 5.8 KB

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