ChangeLog 9.5 KB

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