Просмотр исходного кода

2004-11-24 Atsushi Enomoto <[email protected]>

	* 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
Atsushi Eno 21 лет назад
Родитель
Сommit
e9f29771eb

+ 6 - 0
mcs/class/System.XML/Mono.Xml.Xsl/ChangeLog

@@ -1,3 +1,9 @@
+2004-11-24  Atsushi Enomoto  <[email protected]>
+
+	* 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  <[email protected]>
 
 	* Compiler.cs, XslTransformProcessor.cs :

+ 0 - 26
mcs/class/System.XML/Mono.Xml.Xsl/XslOutput.cs

@@ -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;

+ 0 - 3
mcs/class/System.XML/Mono.Xml.Xsl/XslStylesheet.cs

@@ -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; }