ChangeLog 12 KB

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