ChangeLog 8.5 KB

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