| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 2003-03-10 Alan Tam <[email protected]>
- * XslTransform.cs: Fixed a bug when no args is passed
- 2003-03-10 Alan Tam <[email protected]>
- * 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 <[email protected]>
- * XslTransform.cs: Remove confusing and unused parameter.
- 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
-
- * XsltContext.cs: added 'PreserveWhitespace' abstract method
|