ChangeLog 6.0 KB

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