ChangeLog 7.8 KB

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