ChangeLog 3.0 KB

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