ChangeLog 5.3 KB

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