ChangeLog 8.1 KB

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