ChangeLog 4.0 KB

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