2004-07-12 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Mon, 12 Jul 2004 01:31:04 +0000 (01:31 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Mon, 12 Jul 2004 01:31:04 +0000 (01:31 -0000)
* xml-classes : oops, list styles.

svn path=/trunk/mono/; revision=31021

web/ChangeLog
web/xml-classes

index 2c22f5771cbea2fa6bd58ed8b7bbedde7a623610..7c6b6524101dc4a216330f1765e44abe4f67d55e 100755 (executable)
@@ -1,3 +1,7 @@
+2004-07-12  Atsushi Enomoto <atsushi@ximian.com>
+
+       * xml-classes : oops, list styles.
+
 2004-07-11  Atsushi Enomoto <atsushi@ximian.com>
 
        * xml-classes : updates and plans/ideas for Mono 1.2.
index 2f4c24e37a66f31011e303fe32169396646f2553..cbeb84fdfd037244bb56fca803e85f4be67e46c6 100755 (executable)
   <a href="http://msdn.microsoft.com/WebServices/default.aspx?pull=/library/en-us/dnexxml/html/xml05192003.asp">Microsoft has tried to do some of them</a>, 
   but it is not successful because of System.Xml.Xsl design problem:
 
-  <ul>
-       * In general, .NET's "extension objects" (including msxsl:script) is 
-         not useful to return node-sets (MS XSLT implementation rejects just
-         overriden XPathNodeIterator, but accepts only their hidden classes.
-         And are the same in Mono though classes are different)
-
-       * In .NET's extension object design, extension function name is a
-         valid method name that cannot contain some characters such as '-'.
-         That is, implementing EXSLT in C# is impossible.
-  </ul>
+       <ul>
+               * In general, .NET's "extension objects" (including 
+                 msxsl:script) is not useful to return node-sets (MS XSLT
+                 implementation rejects just overriden XPathNodeIterator, 
+                 but accepts only their hidden classes. And are the same 
+                 in Mono though classes are different)
+
+               * In .NET's extension object design, extension function name 
+                 is a valid method name that cannot contain some characters
+                 such as '-'. That is, implementing EXSLT in C# is impossible.
+       </ul>
 
   So if we support EXSLT, it has to be done inside our System.XML.dll.
   Microsoft developers are also aware of this problem and some of them wish
 
   Currently we have
 
-  <ul>
-       * Custom datatype support. Right now, you can use XML schema
-         datatypes ( http://www.w3.org/2001/XMLSchema-datatypes ) as well
-         as RELAX NG default datatypes (as used in relaxng.rng).
+       <ul>
+               * Custom datatype support. Right now, you can use XML schema
+                 datatypes ( http://www.w3.org/2001/XMLSchema-datatypes ) 
+                 as well as RELAX NG default datatypes (as used in relaxng.rng).
 
-       * RELAX NG Compact Syntax support, though not yet stable.
-         See Commons.Xml.Relaxng.Rnc.RncParser class.
-  </ul>
+               * RELAX NG Compact Syntax support, though not yet stable.
+                 See Commons.Xml.Relaxng.Rnc.RncParser class.
+</ul>
 
 
 ** Plans
 
   System.Xml 2.0 contains several features such as:
 
-  <ul>
-       * new XPathNavigator and XPathDocument
-       * Factory method based and strongly-typed XmlReader
-       * XML Schema design changes
-       * XSD Inference
-       * XQuery implementation
-       * Well-documented and improved XmlSerializer.
-       * XSLT IL generator (similar to Apache XSLTC) - it is 
-         internal use
-  </ul>
+       <ul>
+               * new XPathNavigator and XPathDocument
+               * Factory method based and strongly-typed XmlReader
+               * XML Schema design changes
+               * XSD Inference
+               * XQuery implementation
+               * Well-documented and improved XmlSerializer.
+               * XSLT IL generator (similar to Apache XSLTC) - it is 
+                 internal use
+       </ul>
 
 **** XmlReader.Create() and ReadValueAsXxx()
 
 
   XQuery implementation will be done in these steps:
 
-  <ul>
-       * XQuery syntax parser that parses xquery string to AST (abstract
-         syntax tree).
+       <ul>
+               * XQuery syntax parser that parses xquery string to AST 
+                 (abstract syntax tree).
 
-       * XQuery AST compiler into runnable query command (not done yet)
+               * XQuery AST compiler into runnable query command (not done yet)
 
-       * XQuery (dynamic context) runtime = XQuery expression evaluator
-         + sequence iterator.
+               * XQuery (dynamic context) runtime = XQuery expression evaluator
+                 + sequence iterator.
 
-       * Applied expression classes for XQuery/XPath 2.0 functions and
-         operators.
+               * Applied expression classes for XQuery/XPath 2.0 functions and
+                 operators.
 
-       * XQuery data model and (mainly) conversion support.
-  </ul>
+               * XQuery data model and (mainly) conversion support.
+       </ul>
 
 **** Relax NG and DSDL in Mono 1.2
 
 
   In Mono 1.2, there might be improvements on Commons.Xml.Relaxng.
 
-  <ul>
-       * Currently RelaxngPattern.Compile() provides cheap compilation
-         error information. At least it can provide error location. Also,
-         the type of error should be kind of RelaxngGrammarException.
-
-       * Right now there is no ambiguity detection implementation that
-         would be useful for RelaxngPattern based xml serialization (if
-         there is need).
-  </ul>
+       <ul>
+               * Currently RelaxngPattern.Compile() provides cheap compilation
+                 error information. At least it can provide error location.
+                 Also, the type of error should be kind of 
+                 RelaxngGrammarException.
+
+               * Right now there is no ambiguity detection implementation that
+                 would be useful for RelaxngPattern based xml serialization (if
+                 there is need).
+       </ul>
 
 
 ** Tools