ChangeLog 2.4 KB

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