Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2005-03-09 08:17:39 +0300
committerAtsushi Eno <atsushieno@gmail.com>2005-03-09 08:17:39 +0300
commite26aab13f9de3e742e8e65cdd2af81eac85537c9 (patch)
treeab7dd29a2cb478a8d3e9e3ef3e0ecbc2cfc03331 /mcs/class/System.XML/System.Xml.Xsl
parent1db08307b5f631bdc9ab6d5142428a30d952cf7d (diff)
2005-03-09 Atsushi Enomoto <atsushi@ximian.com>
* XsltContext.cs : removed GetNsm() from IStaticXsltContext and added LookupNamespace() instead. * BUGS-MS.txt : more bug info. * XslFunctions.cs, Compiler.cs : Eliminated XPathNavigatorNsm class to reduce references to stylesheet XPathNavigator. To accomplish it, IStaticXsltContext does not declare GetNsm() anymore. All xslt function types now directly hold IStaticXsltContext. * XslStylesheet.cs : removed "Compiler c" field. Removed unused properties. svn path=/trunk/mcs/; revision=41583
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Xsl')
-rwxr-xr-xmcs/class/System.XML/System.Xml.Xsl/BUGS-MS.txt10
-rw-r--r--mcs/class/System.XML/System.Xml.Xsl/ChangeLog6
-rw-r--r--mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs2
3 files changed, 16 insertions, 2 deletions
diff --git a/mcs/class/System.XML/System.Xml.Xsl/BUGS-MS.txt b/mcs/class/System.XML/System.Xml.Xsl/BUGS-MS.txt
index c726d6da5c9..4b3fd640ecd 100755
--- a/mcs/class/System.XML/System.Xml.Xsl/BUGS-MS.txt
+++ b/mcs/class/System.XML/System.Xml.Xsl/BUGS-MS.txt
@@ -75,7 +75,11 @@ No. 0012
No. 0013
When XslTransform output is XmlWriter (not Stream), document()
function is not working properly.
- (copy_copy27, namespace_namespace20, reluri_reluri09 - reluri_reluri11)
+ (copy_copy27, namespace_namespace20, reluri_reluri09 -
+ reluri_reluri11, XSLTFunctions_Bug76054, XSLTFunctions_Bug76984,
+ XSLTFunctions_DocumentFuncWithEmptyArg, XSLTFunctions_DocumentInUnion,
+ XSLTFunctions_DocumentInUnionWithDuplicateNodes,
+ XSLTFunctions_DocumentFunctionNoArg)
No. 0014
Standard XSLT function unparsed-entity-uri() is not found.
@@ -91,6 +95,10 @@ No. 0016
such one as XSLT instruction.
(XSLTFunctions_ElementAvailFunctionTrue)
+No. 0017
+ format-number() does not accept some patterns.
+ (XSLTFunctions_specialCharInPattern)
+
Not sure the reason why:
idkey_idkey49
diff --git a/mcs/class/System.XML/System.Xml.Xsl/ChangeLog b/mcs/class/System.XML/System.Xml.Xsl/ChangeLog
index 4fd70c7f9bf..1289e187fb8 100644
--- a/mcs/class/System.XML/System.Xml.Xsl/ChangeLog
+++ b/mcs/class/System.XML/System.Xml.Xsl/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-09 Atsushi Enomoto <atsushi@ximian.com>
+
+ * XsltContext.cs : removed GetNsm() from IStaticXsltContext and added
+ LookupNamespace() instead.
+ * BUGS-MS.txt : more bug info.
+
2005-03-04 Atsushi Enomoto <atsushi@ximian.com>
* BUGS-MS.txt : more bug info.
diff --git a/mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs b/mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs
index 324588d4e5b..f8c9d8c5a9e 100644
--- a/mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs
+++ b/mcs/class/System.XML/System.Xml.Xsl/XsltContext.cs
@@ -80,6 +80,6 @@ namespace System.Xml.Xsl
Expression TryGetVariable (string nm);
Expression TryGetFunction (XmlQualifiedName nm, FunctionArguments args);
XmlQualifiedName LookupQName (string s);
- XmlNamespaceManager GetNsm ();
+ string LookupNamespace (string prefix);
}
}