ChangeLog 3.9 KB

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