2
0

ChangeLog 5.9 KB

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