ChangeLog 1.7 KB

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