ChangeLog 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  2. * XslTransform.cs: don't free the xml document used for the style sheet.
  3. xmlFreeStylesheet already does it. Correctly close the element tag for
  4. elements that don't have children. Added a couple of checks more.
  5. 2003-01-23 Gonzalo Paniagua Javier <[email protected]>
  6. * XslTransform.cs: fixed a couple of Transform overloads and changed the
  7. library name in DllImport to make it work on windows too.
  8. 2003-01-22 Gonzalo Paniagua Javier <[email protected]>
  9. * XslTransform.cs: implemented all Load and Transform methods. It uses
  10. libxml2 and libxslt. No more temp files. It's slow and memory consuming,
  11. but, well, that's XSLT... ;-). Idea from Zdravko Tashev.
  12. Now the Xsl web control works.
  13. 2002-09-23 Duncan Mak <[email protected]>
  14. * XslTransform.cs (Laod): Implemented the simple version that
  15. takes one XPathNavigator as argument.
  16. (Save): New private method for recreating the XML in text from a
  17. XPathNavigator
  18. (WriteCurrentNode):
  19. (WriteTree): private methods for generating the text XML from the
  20. XPathNavigator tree.
  21. 2002-09-20 Duncan Mak <[email protected]>
  22. * XslTransform.cs (Load): Implemented the methods, not
  23. including the ones that deal with XPathNavigator (hopefully those
  24. will come later).
  25. (Transform): Implemented the version that saves directly to a file.
  26. (Save): New private method for recreating the XML in text from
  27. from an XmlReader
  28. We're now P/Invoking libxslt for doing XSLT work.
  29. 2002-06-23 Piers Haken <[email protected]>
  30. * XsltContext.cs: added 'PreserveWhitespace' abstract method