ChangeLog 10 KB

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