ChangeLog 6.3 KB

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