ChangeLog 8.3 KB

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