You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by el...@apache.org on 2002/01/29 00:11:00 UTC

cvs commit: xml-xerces/java/docs dom3.xml readme.xml

elena       02/01/28 15:11:00

  Modified:    java/docs dom3.xml readme.xml
  Log:
  Update docs
  
  Revision  Changes    Path
  1.2       +18 -5     xml-xerces/java/docs/dom3.xml
  
  Index: dom3.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/dom3.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- dom3.xml	17 Dec 2001 16:12:28 -0000	1.1
  +++ dom3.xml	28 Jan 2002 23:11:00 -0000	1.2
  @@ -5,7 +5,9 @@
   <p>
   The &ParserNameLong; &ParserVersion;  contains a partial implementation of the W3C Document Object Model 
   Level 3.  This implementation is experimental.  The DOM Level 3 specification is 
  -still in working draft stage: you should not consider this implementation complete or correct.  The limitations of this implementation are detailed below. Please read this document before using this package.  
  +still in working draft stage: you should not consider this implementation complete or correct.  
  +The limitations of this implementation are detailed below. 
  +Please, read this document before using dom3 package.  
   </p>
   </s2> 
   <s2 title="Introduction">
  @@ -38,6 +40,10 @@
       <li>
           Node.set/getUserData()
       </li>
  +    
  +    <li>
  +        Node.isEqualNode()
  +    </li>
       <li>
           DOMErrorHandler, DOMError, DOMLocator
       </li>
  @@ -46,12 +52,17 @@
   <ul>
       <li>
           DOMBuilder - supports all required features. Does not provide implementation to 
  -        parseWithContext() and DOMBuilderFilter
  +        parseWithContext() and DOMBuilderFilter.
       </li>
       <li>
  -        DOMWriter - supports all required features. Provides support for "format-pretty-print 
  -         " (true)
  -    </li>
  +        DOMWriter - supports all required features. Provides support for "format-pretty-print" (true).
  +        DOMWriter also fixes namespaces during serialization as required by Load and Save module:
  +
  +        "Namespaces are fixed up during serialization, the serialization process will verify that namespace declarations, namespace prefixes and the namespace URIs associated with Elements and Attributes are consistent. 
  +        If inconsistencies are found, the serialized form of the document will be altered to 
  +        remove them"    
  +        
  +        </li>
       <li>
           DOMInputSource
       </li>
  @@ -63,6 +74,8 @@
       </li>
   </ul>
   </s2> <s2 title='Implementation of DOM Level 3 Abstract Schemas'>
  +<note>Xerces does not provide implementation for editing schemas (AS-EDIT) nor we provide implementation
  +for "Document-editing"</note>
   <ul>
       <li>
           DOMImplementationAS
  
  
  
  1.22      +19 -15    xml-xerces/java/docs/readme.xml
  
  Index: readme.xml
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/docs/readme.xml,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- readme.xml	17 Dec 2001 16:12:09 -0000	1.21
  +++ readme.xml	28 Jan 2002 23:11:00 -0000	1.22
  @@ -18,8 +18,19 @@
      <link idref='xni'>XNI Manual</link>.
     </p>
     <p>
  -   <strong>Note:</strong> Since this is a beta release, bugs are
  -   to be expected. Please use 
  +   Xerces 2 is a fully conforming XML Schema processor. 
  +   For more information, refer to the <link idref='limitations-schema'>XML Schema Implementation</link> page. 
  +  </p>
  +  <p>
  +   Xerces 2 also provides a partial implementation of Document Object Model Level 3  
  +    <jump href='http://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010913/'>Core</jump>, 
  +    <jump href='http://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025/abstract-schemas.html'>Abstract Schemas</jump> and 
  +    <jump href='http://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025/load-save.html'>Load and Save</jump> Working Drafts. For more information, refer to the 
  +   <link idref='dom3'>DOM Level 3 Implementation</link> page. 
  +  </p>
  +
  +  <p>
  +   Please use 
      <jump href='http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Xerces2-J'>BugZilla</jump>
      to report any bugs that you find.
     </p>
  @@ -70,18 +81,9 @@
      
     </ul>
    </s2>
  + 
    <s2 title='Changes from Previous Release'>
  -  <p>
  -   Xerces2 release includes full XML Schema support with completely redesigned and rewritten XML Schema validation engine. For more information, refer to the 
  -   <link idref='limitations-schema'>XML Schema Implementation</link> page. 
  -  </p>
  -  <p>
  -   This release also provides a partial implementation of Document Object Model Level 3  
  -    <jump href='http://www.w3.org/TR/2001/WD-DOM-Level-3-Core-20010913/'>Core</jump>, 
  -    <jump href='http://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025/abstract-schemas.html'>Abstract Schemas</jump> and 
  -    <jump href='http://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025/load-save.html'>Load and Save</jump> Working Drafts. For more information, refer to the 
  -   <link idref='dom3'>DOM Level 3 Implementation</link> page. 
  -  </p>
  +    
     <p>
      The &ParserNameLong; &ParserVersion; introduced some changes to the Xerces Native
      Interface. The following list enumerates the important changes:
  @@ -106,8 +108,10 @@
     <p>
      Xerces2 is a nearly complete rewrite of the Xerces 1.x codebase
      in order to make the code cleaner, more modular, and easier to
  -   maintain. Applications using only the standard interfaces such as
  -   JAXP, DOM, and SAX should not see any differences.
  +   maintain. It includes a completely redesigned and rewritten XML Schema validation engine. 
  +
  +   Applications using only the standard interfaces such as
  +   JAXP, DOM, and SAX should not see any differences. 
     </p>
    </s2>
    <s2 title='License Information'>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org