ChangeLog 5.2 KB

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