2
0

ChangeLog 9.9 KB

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