ChangeLog 12 KB

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