ChangeLog 4.2 KB

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