ChangeLog 4.5 KB

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