ChangeLog 13 KB

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