ChangeLog 2.9 KB

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