ChangeLog 2.0 KB

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