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
path: root/doc
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2004-02-03 12:14:47 +0300
committerAtsushi Eno <atsushieno@gmail.com>2004-02-03 12:14:47 +0300
commit59947fdcb0d954d9d5eeec6f704d878c80a8711e (patch)
tree9a6718db313f27c9b9b7735b1171bfb0603c29f5 /doc
parent57f35c238b6f225f5f1ce211d4a8c3eb09406d54 (diff)
2004-02-03 Atsushi Enomoto <atsushi@ximian.com>
* xml-classes : updates svn path=/trunk/mono/; revision=22733
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/ChangeLog4
-rwxr-xr-xdoc/xml-classes18
2 files changed, 17 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 608e10e6a23..d20ca107937 100755
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2004-02-03 Atsushi Enomoto <atsushi@ximian.com>
+
+ * xml-classes : updates
+
2004-01-22 Atsushi Enomoto <atsushi@ximian.com>
* xml-classes : status update, additional infos.
diff --git a/doc/xml-classes b/doc/xml-classes
index eb2607e34c6..d0ac9898b85 100755
--- a/doc/xml-classes
+++ b/doc/xml-classes
@@ -34,8 +34,9 @@
Here XmlWriter almost equals to XmlTextWriter. If you want to see
another implementation, check XmlNodeWriter.cs used in monodoc.
- XmlTextWriter is completed. However, it looks nearly twice as slow as
- MS.NET (I tried 1.1)
+ XmlTextWriter is completed. However, it looks slower than MS.NET (I
+ tried 1.1). After some optimization, it became better, but maybe it can be
+ done more.
*** XmlResolver
@@ -77,8 +78,12 @@
XmlTextReader, XmlNodeReader and XmlValidatingReader are almost finished.
<ul>
- * Most of the OASIS conformance test passes as Microsoft
- does, but about W3C tests, it is still not perfect.
+ * All OASIS conformance test passes as Microsoft does. Some
+ W3C tests fail, but it looks better.
+ * Entity expansion and its well-formedness check is incomplete.
+ It incorrectly allows divided content models. It incorrectly
+ treats its Base URI, so some dtd fails.
+ * Unicode surrogate pair character is not supported yet.
* I won't add any XDR support on XmlValidatingReader. (I haven't
ever seen XDR used other than Microsoft's BizTalk Server 2000,
and Now they have 2002 with XML Schema support)
@@ -136,6 +141,7 @@
compilation. Interestingly, MS.NET also fails around here,
so it might be nature of ContentTypeParticle design)
* Some derivation by restriction (DBR) handling is incorrect.
+ * Some simple type restriction handling is still incorrect.
</ul>
*** Validating Reader
@@ -175,7 +181,9 @@
** System.Xml.XPath and System.Xml.Xsl
There are two implementations for XSLT. One (and historical) implementation
- is based on libxslt. Now we uses fully implemented managed XSLT.
+ is based on libxslt (aka Unmanaged XSLT). Now we uses fully implemented
+ managed XSLT. To use Unmanaged XSLT, set MONO_UNMANAGED_XSLT environment
+ value (any value is acceptable).
As for Managed XSLT, we support msxsl:script.