2004-11-24 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Wed, 24 Nov 2004 10:50:24 +0000 (10:50 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Wed, 24 Nov 2004 10:50:24 +0000 (10:50 -0000)
* XslStylesheet.cs : removed unused fields.
* XslOutput.cs : removed members for XSLT 2.0 (won't be implemented in
  this class).

svn path=/trunk/mcs/; revision=36468

mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog
mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs
mcs/class/System.XML/Mono.Xml.Xsl/XslStylesheet.cs

index 447ffc29479b2e05662ba707ebf2bb3f32b784ca..116d9a71ecdbd4f4272a5e2cedbf3b89b5b7293a 100644 (file)
@@ -1,3 +1,9 @@
+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 :
index 3e00e6a3c12774c043b855c04d45f8b8856f6a6e..e62c546a3fa22e38dec33729e7f99b73fbf6d7e8 100644 (file)
@@ -72,11 +72,6 @@ namespace Mono.Xml.Xsl
                QName [] cdataSectionElements;
                string indent;
                string mediaType;
-               bool escapeUriAttributes;
-               bool includeContentType;
-               bool normalizeUnicode;
-               bool undeclareNamespaces;
-               QName [] useCharacterMaps;
 
                // for compilation only.
                ArrayList cdSectsList = new ArrayList ();
@@ -133,27 +128,6 @@ namespace Mono.Xml.Xsl
                        get { return mediaType; }
                }
 
-               // Below are introduced in XSLT 2.0 (WD-20030502)
-               public bool EscapeUriAttributes {
-                       get { return escapeUriAttributes; }
-               }
-
-               public bool IncludeContentType {
-                       get { return includeContentType; }
-               }
-
-               public bool NormalizeUnicode {
-                       get { return normalizeUnicode; }
-               }
-
-               public bool UndeclareNamespaces {
-                       get { return undeclareNamespaces; }
-               }
-
-               public QName [] UseCharacterMaps {
-                       get { return useCharacterMaps; }
-               }
-
                public void Fill (XPathNavigator nav)
                {
                        string att;
index 79d900125315abb0e58c04c8707949e75c974bab..890672680af3651666ce82d9098f28650ed5d81b 100644 (file)
@@ -83,9 +83,6 @@ namespace Mono.Xml.Xsl {
                Hashtable functions = new Hashtable ();
                // [QName]=>XslSortKey
                Hashtable sortKeys = new Hashtable ();
-               //  attributes::
-               string xpathDefaultNamespace = "";
-               XslDefaultValidation defaultValidation = XslDefaultValidation.Lax;
 
                public string BaseUri {
                        get { return c.Input.BaseURI; }