ChangeLog 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. 2003-08-21 Gonzalo Paniagua Javier <[email protected]>
  2. * XslTransform.cs: commented out Cleanup () because of bug #47776.
  3. 2003-08-21 Gonzalo Paniagua Javier <[email protected]>
  4. * Multiplexer.cs: fixed infinite recursion bug.
  5. 2003-08-20 Ben Maurer <[email protected]>
  6. * ManagedXslTransform.cs: sync API (Oleg).
  7. 2003-08-19 Ben Maurer <[email protected]>
  8. * ManagedXslTransform.cs: sync to API changes.
  9. 2003-08-18 Ben Maurer <[email protected]>
  10. * ManagedXslTransform.cs, XslTransformImpl.cs: Add support for
  11. encoding.
  12. 2003-08-18 Ben Maurer <[email protected]>
  13. * *.cs: Support for xsl:output. (Oleg)
  14. 2003-08-17 Ben Maurer <[email protected]>
  15. * XslTransformImpl.cs: close XmlTextWriter when we create it.
  16. 2003-08-14 Atsushi Enomoto <[email protected]>
  17. * XslTransformImpl.cs, XslTransform.cs, Multiplexer.cs,
  18. ManagedXslTransform.cs : Added Evidence args introduced in .NET 1.1.
  19. 2003-08-11 Andreas Nahr <[email protected]>
  20. * XsltCompileException.cs: Fixed/ Implemented rest
  21. * XsltException.cs: Added internal constructor
  22. 2003-08-04 Ben Maurer <[email protected]>
  23. * ManagedXslTransform.cs: use the resolver given.
  24. 2003-07-30 Ben Maurer <[email protected]>
  25. * ManagedXslTransform.cs: Hold reference to CompiledStyle, not the
  26. XslTransformProcessor. Will help with thread safty.
  27. 2003-07-30 Ben Maurer <[email protected]>
  28. * ManagedXslTransform.cs: remove verbose debugging messages
  29. 2003-07-28 Ben Maurer <[email protected]>
  30. * XslTransform.cs: Use the new XslTransformImpl class
  31. * XslTransformImpl.cs: An abstract class for Xsl transforms
  32. * UnmanagedXslTransform.cs: Contains the code that was in
  33. XslTransform.cs
  34. 2003-07-27 Piers Haken <[email protected]>
  35. * XsltArgumentList.cs:
  36. fix type conversions in ValidateParam
  37. allow creating params with null namespaceUri
  38. 2003-07-05 Atsushi Enomoto <[email protected]>
  39. * XslTransform.cs : fixed WriteTree() and WriteCurrentNode() to follow
  40. the recent changes of XPathNavigator implementations.
  41. 2003-07-02 Zoltan Varga <[email protected]>
  42. * XslTransform.cs (Transform): Call xsltSaveResultToFilename instead
  43. of first reading the result into a string to conserve memory.
  44. 2003-06-30 Zoltan Varga <[email protected]>
  45. * XslTransform.cs (GetStringFromDocument): Read the result using
  46. xsltSaveResultToString, since the XML document returned by
  47. applyStylesheet is missing the output processing done due to the
  48. usage of the xsl:output directive.
  49. 2003-06-21 Atsushi Enomoto <[email protected]>
  50. * XslTransform.cs : Fixed Transform (string, string) not to call
  51. File.OpenWrite() that *appends* (not truncates) existing files.
  52. 2003-06-01 Joshua Tauberer <[email protected]>
  53. * XslTransform.cs: Cache extension object delegates
  54. between calls to Transform.
  55. 2003-05-28 Gonzalo Paniagua Javier <[email protected]>
  56. * XslTransform.cs: fixed NullReferenceExceptions after the last
  57. change (which, btw, should have included a ChangeLog entry).
  58. 2003-05-27 Joshua Tauberer <[email protected]>
  59. * XslTransform.cs: Initial support for extension objects.
  60. Known issues:
  61. -Extension method signatures must match exactly to the
  62. types of parameters that the method is called with from
  63. the stylesheet.
  64. -Node set parameters are converted to an ArrayList of
  65. strings.
  66. 2003-05-27 Ben Maurer <[email protected]>
  67. * XslTransform.cs: unsafe classes need unsafe!
  68. 2003-05-11 Gonzalo Paniagua Javier <[email protected]>
  69. * XslTransform.cs: fixed bug #42739.
  70. 2003-05-11 Gonzalo Paniagua Javier <[email protected]>
  71. * XslTransform.cs: fixed bug #42747.
  72. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  73. * XslTransform.cs: flush the writers when done. Fixes bug #42040.
  74. 2003-03-10 Alan Tam <[email protected]>
  75. * XslTransform.cs: Fixed a bug when no args is passed
  76. 2003-03-10 Alan Tam <[email protected]>
  77. * XslTransform.cs: Implemented boolean, number and string parameters.
  78. (Node Set and Node Iterator parameters and Extension Objects are left.)
  79. * XsltAttributeList.cs: Loosened access modifiers.
  80. 2003-02-20 Nick Drochak <[email protected]>
  81. * XslTransform.cs: Remove confusing and unused parameter.
  82. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  83. * XslTransform.cs: don't free the xml document used for the style sheet.
  84. xmlFreeStylesheet already does it. Correctly close the element tag for
  85. elements that don't have children. Added a couple of checks more.
  86. 2003-01-23 Gonzalo Paniagua Javier <[email protected]>
  87. * XslTransform.cs: fixed a couple of Transform overloads and changed the
  88. library name in DllImport to make it work on windows too.
  89. 2003-01-22 Gonzalo Paniagua Javier <[email protected]>
  90. * XslTransform.cs: implemented all Load and Transform methods. It uses
  91. libxml2 and libxslt. No more temp files. It's slow and memory consuming,
  92. but, well, that's XSLT... ;-). Idea from Zdravko Tashev.
  93. Now the Xsl web control works.
  94. 2002-09-23 Duncan Mak <[email protected]>
  95. * XslTransform.cs (Laod): Implemented the simple version that
  96. takes one XPathNavigator as argument.
  97. (Save): New private method for recreating the XML in text from a
  98. XPathNavigator
  99. (WriteCurrentNode):
  100. (WriteTree): private methods for generating the text XML from the
  101. XPathNavigator tree.
  102. 2002-09-20 Duncan Mak <[email protected]>
  103. * XslTransform.cs (Load): Implemented the methods, not
  104. including the ones that deal with XPathNavigator (hopefully those
  105. will come later).
  106. (Transform): Implemented the version that saves directly to a file.
  107. (Save): New private method for recreating the XML in text from
  108. from an XmlReader
  109. We're now P/Invoking libxslt for doing XSLT work.
  110. 2002-06-23 Piers Haken <[email protected]>
  111. * XsltContext.cs: added 'PreserveWhitespace' abstract method