ChangeLog 7.1 KB

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