2004-10-09 Atsushi Enomoto * XsltException.cs : Message is incorrectly regarded only after 2.0 (while it *disappeared* in 2.0). 2004-08-30 Atsushi Enomoto * XsltException.cs : Message property is not overriden in NET_2_0. 2004-08-30 Atsushi Enomoto * XsltException.cs : added NET_2_0 constructors too. 2004-08-30 Atsushi Enomoto * XsltCompileException.cs : added NET_2_0 constructors. Hide property Message under NET_2_0. 2004-05-06 Atsushi Enomoto * ManagedXslTransform.cs : For Stream input, use StreamWriter for input to GenericOutputter. Passing XmlWriter causes unexpected xml declaration output. 2004-03-27 Atsushi Enomoto * XsltContext.cs : Supply NameTable to base ctor(). 2004-03-22 Atsushi Enomoto * XsltException.cs, XsltCompileException.cs : They had used message field which were never set. 2004-01-16 Atsushi Enomoto * Multiplexer.cs : Pass stream parameters as is (to handle encoding correctly). Patch by Dariusz Olszewski. Bug #52913 fixed. * ManagedXslTransform.cs : In ctor() with stream, pass encoding parameter also for managed transformer. 2004-01-15 Atsushi Enomoto * ManagedXslTransform.cs : Pass TextReader's encoding for outputter. don't write start and end document. 2003-12-25 Atsushi Enomoto * Multiplexer.cs : Now we use managed XSLT engine by default. Added obsolete attribute to Transform()s without xmlresolver. 2003-12-07 Atsushi Enomoto * XsltException.cs, XsltCompileException.cs : Added locatable .ctor(). 2003-12-05 Atsushi Enomoto * Multiplexer.cs : set_XmlResolver is marked as obsolete. Added new Transform() methods introduced in .NET 1.1. CRLF and LF are desparately mixed, so adjusted to LF. * XslTransform.cs : CRLF and LF are desparately mixed, so adjusted to CRLF. 2003-12-02 Atsushi Enomoto * XslTransformImpl.cs : Load(XmlReader) should pass XmlSpace.Preserve to XPathDocument.ctor(). 2003-11-21 Atsushi Enomoto * ManagedXslTransform.cs : Now WriteStartDocument() is moved internal to GenericOutputter. 2003-11-19 Atsushi Enomoto * ManagedXslTransform.cs : Transform() should raise an error if no stylesheet was loaded. 2003-10-04 Atsushi Enomoto * XslTransformImpl.cs : Load(url, resolver) now uses XPathDocument .ctor(url, xmlSpace). 2003-08-30 Oleg Tkachenko * ManagedXslTransform.cs: Outputter/Emitter selection logic is moved to GenericOutputter. 2003-08-21 Gonzalo Paniagua Javier * XslTransform.cs: commented out Cleanup () because of bug #47776. 2003-08-21 Gonzalo Paniagua Javier * Multiplexer.cs: fixed infinite recursion bug. 2003-08-20 Ben Maurer * ManagedXslTransform.cs: sync API (Oleg). 2003-08-19 Ben Maurer * ManagedXslTransform.cs: sync to API changes. 2003-08-18 Ben Maurer * ManagedXslTransform.cs, XslTransformImpl.cs: Add support for encoding. 2003-08-18 Ben Maurer * *.cs: Support for xsl:output. (Oleg) 2003-08-17 Ben Maurer * XslTransformImpl.cs: close XmlTextWriter when we create it. 2003-08-14 Atsushi Enomoto * XslTransformImpl.cs, XslTransform.cs, Multiplexer.cs, ManagedXslTransform.cs : Added Evidence args introduced in .NET 1.1. 2003-08-11 Andreas Nahr * XsltCompileException.cs: Fixed/ Implemented rest * XsltException.cs: Added internal constructor 2003-08-04 Ben Maurer * ManagedXslTransform.cs: use the resolver given. 2003-07-30 Ben Maurer * ManagedXslTransform.cs: Hold reference to CompiledStyle, not the XslTransformProcessor. Will help with thread safty. 2003-07-30 Ben Maurer * ManagedXslTransform.cs: remove verbose debugging messages 2003-07-28 Ben Maurer * XslTransform.cs: Use the new XslTransformImpl class * XslTransformImpl.cs: An abstract class for Xsl transforms * UnmanagedXslTransform.cs: Contains the code that was in XslTransform.cs 2003-07-27 Piers Haken * XsltArgumentList.cs: fix type conversions in ValidateParam allow creating params with null namespaceUri 2003-07-05 Atsushi Enomoto * XslTransform.cs : fixed WriteTree() and WriteCurrentNode() to follow the recent changes of XPathNavigator implementations. 2003-07-02 Zoltan Varga * XslTransform.cs (Transform): Call xsltSaveResultToFilename instead of first reading the result into a string to conserve memory. 2003-06-30 Zoltan Varga * XslTransform.cs (GetStringFromDocument): Read the result using xsltSaveResultToString, since the XML document returned by applyStylesheet is missing the output processing done due to the usage of the xsl:output directive. 2003-06-21 Atsushi Enomoto * XslTransform.cs : Fixed Transform (string, string) not to call File.OpenWrite() that *appends* (not truncates) existing files. 2003-06-01 Joshua Tauberer * XslTransform.cs: Cache extension object delegates between calls to Transform. 2003-05-28 Gonzalo Paniagua Javier * XslTransform.cs: fixed NullReferenceExceptions after the last change (which, btw, should have included a ChangeLog entry). 2003-05-27 Joshua Tauberer * XslTransform.cs: Initial support for extension objects. Known issues: -Extension method signatures must match exactly to the types of parameters that the method is called with from the stylesheet. -Node set parameters are converted to an ArrayList of strings. 2003-05-27 Ben Maurer * XslTransform.cs: unsafe classes need unsafe! 2003-05-11 Gonzalo Paniagua Javier * XslTransform.cs: fixed bug #42739. 2003-05-11 Gonzalo Paniagua Javier * XslTransform.cs: fixed bug #42747. 2003-05-01 Gonzalo Paniagua Javier * XslTransform.cs: flush the writers when done. Fixes bug #42040. 2003-03-10 Alan Tam * XslTransform.cs: Fixed a bug when no args is passed 2003-03-10 Alan Tam * XslTransform.cs: Implemented boolean, number and string parameters. (Node Set and Node Iterator parameters and Extension Objects are left.) * XsltAttributeList.cs: Loosened access modifiers. 2003-02-20 Nick Drochak * XslTransform.cs: Remove confusing and unused parameter. 2003-01-24 Gonzalo Paniagua Javier * XslTransform.cs: don't free the xml document used for the style sheet. xmlFreeStylesheet already does it. Correctly close the element tag for elements that don't have children. Added a couple of checks more. 2003-01-23 Gonzalo Paniagua Javier * XslTransform.cs: fixed a couple of Transform overloads and changed the library name in DllImport to make it work on windows too. 2003-01-22 Gonzalo Paniagua Javier * XslTransform.cs: implemented all Load and Transform methods. It uses libxml2 and libxslt. No more temp files. It's slow and memory consuming, but, well, that's XSLT... ;-). Idea from Zdravko Tashev. Now the Xsl web control works. 2002-09-23 Duncan Mak * XslTransform.cs (Laod): Implemented the simple version that takes one XPathNavigator as argument. (Save): New private method for recreating the XML in text from a XPathNavigator (WriteCurrentNode): (WriteTree): private methods for generating the text XML from the XPathNavigator tree. 2002-09-20 Duncan Mak * XslTransform.cs (Load): Implemented the methods, not including the ones that deal with XPathNavigator (hopefully those will come later). (Transform): Implemented the version that saves directly to a file. (Save): New private method for recreating the XML in text from from an XmlReader We're now P/Invoking libxslt for doing XSLT work. 2002-06-23 Piers Haken * XsltContext.cs: added 'PreserveWhitespace' abstract method