ChangeLog 5.4 KB

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