2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.XML / Mono.Xml.Xsl / ChangeLog
index 33387e66fa5a4e6ada780ddd206840c64a9a4898..6ec06b0f79b11a5d8860fcf74a9132ef961a4178 100644 (file)
@@ -1,3 +1,217 @@
+2004-12-22  Atsushi Enomoto <atsushi@ximian.com>
+
+       * XslFunction.cs,
+         Compiler.cs : XmlResolver.ResolveUri() may return null.
+
+2004-12-01  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs : XPathNavigatorNsm needed more love. Clone() does not
+         make sense here.
+
+2004-12-01  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs : don't create XPathNavigatorNsm for every GetNsm() call.
+
+2004-11-26  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XslKey.cs, XslStylesheet.cs, MSXslScriptManager.cs :
+         warning elimination.
+
+2004-11-24  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XslStylesheet.cs : removed unused fields.
+       * XslOutput.cs : removed members for XSLT 2.0 (won't be implemented in
+         this class).
+
+2004-11-08  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs, XslTransformProcessor.cs :
+         when creating XmlTextReader, reuse XmlNameTable.
+
+2004-11-05  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs : Changes that reflects CompiledExpression changes.
+
+2004-10-04  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * HtmlEmitter.cs : TH tag is not regarded as HTML tag.
+         This fixes bug #67390.
+
+Thu Sep 9 07:09:11 PDT 2004 Paolo Molaro <lupus@ximian.com>
+
+       * ScriptCompilerInfo.cs: avoid using a .cctor and fix precomp.
+
+2004-06-18  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Debug.cs, HtmlEmitter.cs, MSXslScriptManager.cs,
+         ScriptCompilerInfo.cs, XslFunctions.cs, XslTemplate.cs
+         : Globalization. Removed unused code.
+
+2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XslKey.cs : Key-value search in absolute path search was 
+         insufficient.
+
+2004-06-14  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * HtmlEmitter.cs : Correct URL escape implementation.
+
+2004-06-06  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XslTransformProcessor.cs : On document() function, close the 
+         XmlTextReader opened from uri string.
+
+2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs,
+         GenericOutputter.cs : XmlNamespaceManager.LookupPrefix() allows only
+         atomized names. Fixed XPathNavigatorNsm.LookupNamespace() that 
+         should override another overload.
+
+2004-05-25  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * ScriptCompilerInfo.cs: the name used to load the Microsoft.JScript
+         assembly should not include the .dll extension.
+
+2004-05-20  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs :
+         - CompilePattern() now throws XsltCompileException for invalid
+           pattern, and add error location support.
+         - In Compiler.TryGetFunction(), compare namespace URI, not prefix.
+           Now it returns MSXslNodeSet instance (for msxsl:node-set).
+       * Debug.cs : don't throw System.Exception.
+       * XslFunctions.cs : Added MSXslNodeSet class.
+       * XslTemplate.cs : reflected CompilePattern() change.
+       * XslTransformProcessor.cs : don't throw System.Exception.
+       * XsltCompiledContext.cs : don't throw System.Exception.
+
+2004-05-12  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * XmlOutputter.cs,
+         XslOutput.cs,
+         XslStylesheet.cs : made classes/enums internal.
+
+2004-04-24  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Attribute.cs, Compiler.cs, Debug.cs, Emitter.cs, 
+         MSXslScriptCompiler.cs, Outputter.cs, XslAttributeSet.cs,
+         XslDecimalFormat.cs, XslKey.cs, XslStylesheet.cs, XslTemplate.cs,
+         XslTransformProcessor.cs : Make extra classes internal.
+
+       * XslKey.cs : It should require sorting.
+       * Debug.cs : Just avoid debug output. Only who want to output should
+         turn it on.
+
+2004-04-24  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * GenericOutputter.cs : Culture-independency fix. 
+         Replaced StringCollection to ArrayList.
+       * XslOutput.cs : Culture-independency fix.
+
+2004-04-12  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs : When BaseURI is an empty string, it should not try to
+         create Uri instance. This will fix bug #56832, but not sure.
+       * XslFunctions.cs : for XsltDocument.Resolve(), did the same.
+       * HtmlEmitter.cs : Environment.NewLine was incorrectly used (it 
+         should be the TextReader's NewLine).
+       * MSXslScriptManager.cs : Should raise an error when the prefix which
+         was specified by "implements-prefix" was not found.
+
+2004-03-27  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * ScriptCompilerInfo.cs : #line directive now holds dummy filename
+         when BaseURI for msxsl:script node is not available. This fixes
+         bug #56070.
+         Don't output line number in the error message, when it is 0.
+
+2004-03-27  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * Compiler.cs : Supply NameTable to base ctor() of XPathNavigatorNsm.
+
+2004-03-22 Atsushi Enomoto <atsushi@ximian.com>
+
+       * Compiler.cs, 
+         XslAttributeSet.cs,
+         XslFunctions,
+         XslTransformProcessor.cs :
+         Throw specific types of exceptions instead of Exception.
+       * XslFunctions.cs, XsltCompiledContext.cs :
+         added node argument for XsltExtensionFunction ctor() etc.
+
+2004-03-22 Atsushi Enomoto <atsushi@ximian.com>
+
+       * ScriptCompilerInfo.cs : Modified compilation processing. Now it uses
+         CodeDom. Compilation error should be caught. This fixes bug #55875.
+
+2004-03-13 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XslStylesheet.cs : "version" attribute is also required for embedded
+         stylesheet.
+
+2004-03-13 Atsushi Enomoto <atsushi@ximian.com>
+
+       * Compiler.cs,
+         XslStylesheet.cs : Reject xsl element other than stylesheet and
+         transform. Check mandatory version attribute (only for existence).
+
+2004-03-07 Atsushi Enomoto <atsushi@ximian.com>
+
+       * MSXslScriptManager.cs : if extension namespace was not found in
+         the script, just return null. Patch by Joshua Tauberer.
+
+2004-03-01 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XslLiteralElement.cs : quick fix for ArgumentNullException which
+         was because of the combination of non-namespaced instances and
+         exclude-result-prefixes.
+
+2004-02-17 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsltCompiledContext.cs : Extracted XslFunctions and changed namespace
+         from Mono.Xml.Xsl.Functions to Mono.Xml.Xsl.
+       * XslFunctions.cs : hereby Added.
+       * Compiler.cs : Removed deleted usingdecl.
+
+2004-02-16 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XslTransformProcessor.cs : Bugfix. Stored keys should be cleared.
+       * XslKey.cs : Added ExprKeyContainer expression type, which is 
+         designed to be matched at any level.
+       * Compiler.cs : support for ExprKeyContainer.
+
+2004-02-16 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XslKey.cs : Now it collects key and matching nodes at the first
+         evaluation time. After that, we can just get them from the table.
+       * Compiler.cs : Added KeyCompilationMode. It is used to prevent
+         prohibited key() usage in "match" and "use" attributes in xsl:key.
+         Modified accessibility of some classes.
+       * GenericOutputter.cs,
+         HtmlEmitter.cs,
+         TextEmitter.cs,
+         TextOutputter.cs,
+         XmlWriterEmitter.cs : made classes internal.
+       * XslOutput.cs : support line info for exception.
+       * XsltCompiledContext.cs : implemented CompareDocument() - so easily.
+
+2004-02-13 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsltCompiledContext.cs : fixed the length of context info array.
+
+2004-02-10 Atsushi Enomoto <atsushi@ximian.com>
+
+       * XsltCompiledContext.cs :
+         replaced EnumeratorIterator with ListIterator
+
+2004-02-08 Atsushi Enomoto <atsushi@ximian.com>
+
+       * GenericOutputter.cs,
+         XslAttributeSet.cs,
+         XslStylesheet.cs,
+         XslTemplate.cs : tiny foreach elimination.
+
 2004-01-16 Atsushi Enomoto <atsushi@ximian.com>
 
        * XslOutput.cs : Reverted. default encoding should be utf-8.