ChangeLog 10 KB

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