You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by am...@apache.org on 2007/02/02 16:49:05 UTC

svn commit: r502636 - in /xerces/c/trunk/doc: build-other.xml html/ApacheDOMC++BindingL3.html program-deprecateddom.xml program-dom.xml program-sax.xml program.xml xerces-c_book.xml

Author: amassari
Date: Fri Feb  2 07:49:05 2007
New Revision: 502636

URL: http://svn.apache.org/viewvc?view=rev&rev=502636
Log:
Removed documentation for deprecated methods that have been removed; updated links to DOML3 specs

Removed:
    xerces/c/trunk/doc/program-deprecateddom.xml
Modified:
    xerces/c/trunk/doc/build-other.xml
    xerces/c/trunk/doc/html/ApacheDOMC++BindingL3.html
    xerces/c/trunk/doc/program-dom.xml
    xerces/c/trunk/doc/program-sax.xml
    xerces/c/trunk/doc/program.xml
    xerces/c/trunk/doc/xerces-c_book.xml

Modified: xerces/c/trunk/doc/build-other.xml
URL: http://svn.apache.org/viewvc/xerces/c/trunk/doc/build-other.xml?view=diff&rev=502636&r1=502635&r2=502636
==============================================================================
--- xerces/c/trunk/doc/build-other.xml (original)
+++ xerces/c/trunk/doc/build-other.xml Fri Feb  2 07:49:05 2007
@@ -183,54 +183,8 @@
          <ul>
          <li>src/xercesc/dom/impl/DOMDocumentImpl.cpp</li>
          <li>src/xercesc/dom/impl/DOMDocumentImpl.hpp</li>
-         <li>src/xercesc/dom/deprecated/DocumentImpl.cpp</li>
-         <li>src/xercesc/dom/deprecated/DocumentImpl.hpp</li>
          <li>src/xercesc/validators/common/ContentSpecNode.hpp</li>
          </ul>
-
-         <p>Update  the following routines in src/xercesc/dom/deprecated/DocumentImpl.cpp as follows:</p>
-<source>
- void DocumentImpl::setUserData(NodeImpl* n, void* data)
- {
-	if (!userData &amp;&amp; data)
-  #ifdef __OS400__
-		userData = new RefHashTableOf&lt;char&gt;(29, false, new HashPtr());
-  #else
-		userData = new RefHashTableOf&lt;void&gt;(29, false, new HashPtr());
-  #endif
-	if (!data &amp;&amp; userData)
-		userData-&gt;removeKey((void*)n);
-	else
-  #ifdef __OS400__
-		userData-&gt;put((void*)n,(char*)data);
-  #else
-		userData-&gt;put((void*)n,data);
-  #endif
- }
-
- void* DocumentImpl::getUserData(NodeImpl* n)
- {
-	if (userData)
-  #ifdef __OS400__
-		return (void*)userData-&gt;get((void*)n);
-  #else
-		return userData-&gt;get((void*)n);
-  #endif
-	else
-		return null;
- }
-</source>
-
-         <p>To update src/xercesc/dom/deprecated/DoumentImpl.hpp as follows:</p>
-
-<source>
- #ifdef __OS400__
-	RefHashTableOf&lt;char&gt;		*userData;
- #else
-
-	RefHashTableOf&lt;void&gt;		*userData;
- #endif
-</source>
 
           <p>Update the following routines in src/xercesc/dom/impl/DOMDocumentImpl.cpp as follows:</p>
 <source>

Modified: xerces/c/trunk/doc/html/ApacheDOMC++BindingL3.html
URL: http://svn.apache.org/viewvc/xerces/c/trunk/doc/html/ApacheDOMC%2B%2BBindingL3.html?view=diff&rev=502636&r1=502635&r2=502636
==============================================================================
--- xerces/c/trunk/doc/html/ApacheDOMC++BindingL3.html (original)
+++ xerces/c/trunk/doc/html/ApacheDOMC++BindingL3.html Fri Feb  2 07:49:05 2007
@@ -5304,7 +5304,7 @@
 <tr ALIGN=LEFT VALIGN=TOP>
 <td ALIGN=CENTER><i><font color="#0086B2">
 <font size=-1>
-Copyright &copy; 1999-2006 The Apache Software Foundation. All Rights Reserved.
+Copyright &copy; 1999-2007 The Apache Software Foundation. All Rights Reserved.
 </font>
 </font>
 </i>

Modified: xerces/c/trunk/doc/program-dom.xml
URL: http://svn.apache.org/viewvc/xerces/c/trunk/doc/program-dom.xml?view=diff&rev=502636&r1=502635&r2=502636
==============================================================================
--- xerces/c/trunk/doc/program-dom.xml (original)
+++ xerces/c/trunk/doc/program-dom.xml Fri Feb  2 07:49:05 2007
@@ -373,21 +373,6 @@
             <p/>
 
             <table>
-                <tr><th colspan="2"><em>void setExpandEntityReferences(const bool)</em> (deprecated) <br/>
-                please use <link anchor="createEntityRef">setCreateEntityReferenceNodes</link> </th></tr>
-                <tr><th><em>true:</em></th><td> Do not create EntityReference nodes in the DOM tree.  No
-                EntityReference nodes will be created, only the nodes corresponding to their fully
-                expanded sustitution text will be created.  </td></tr>
-                <tr><th><em>false:</em></th><td> Create EntityReference nodes in the DOM tree.   The
-                EntityReference nodes and their child nodes will be read-only. </td></tr>
-                <tr><th><em>default:</em></th><td> false </td></tr>
-                <tr><th><em>see:</em></th><td>
-                <link anchor="createEntityRef">setCreateEntityReferenceNodes</link>
-                </td></tr>
-            </table>
-            <p/>
-
-            <table>
                 <tr><th colspan="2"><em>void setIncludeIgnorableWhitespace(const bool)</em></th></tr>
                 <tr><th><em>true:</em></th><td> Include text nodes that can be considered "ignorable
                 whitespace" in the DOM tree. </td></tr>
@@ -415,23 +400,6 @@
             </table>
             <p/>
 
-            <anchor name="validation"/>
-            <table>
-                <tr><th colspan="2"><em>void setDoValidation(const bool)</em> (deprecated) <br/>
-                please use <link anchor="validation-dynamic">setValidationScheme</link>
-                </th></tr>
-                <tr><th><em>true:</em></th><td> Report all validation errors. </td></tr>
-                <tr><th><em>false:</em></th><td> Do not report validation errors. </td></tr>
-                <tr><th><em>default:</em></th><td> see the default of
-                <link anchor="validation-dynamic">setValidationScheme</link>
-                </td></tr>
-                <tr><th><em>see:</em></th><td>
-                <link anchor="validation-dynamic">setValidationScheme</link>
-                </td></tr>
-            </table>
-
-            <p/>
-
             <anchor name="validation-dynamic"/>
             <table>
                 <tr><th colspan="2"><em>void setValidationScheme(const ValSchemes)</em></th></tr>
@@ -962,8 +930,8 @@
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMCDATASection </td></tr>
                 <tr><th><em>note:</em></th><td> Setting this feature to false is not supported. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -976,8 +944,8 @@
                 <tr><th><em>default:</em></th><td> true </td></tr>
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMComments </td></tr>                
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -995,8 +963,8 @@
                 <tr><th><em>default:</em></th><td> true </td></tr>
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMCharsetOverridesXMLEncoding </td></tr>                
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1015,8 +983,8 @@
                 <jump href="http://www.w3.org/TR/2000/REC-xml-20001006">XML 1.0 (Second Edition)</jump>.
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
                 <jump href="http://www.w3.org/TR/2000/REC-xml-20001006">XML 1.0 (Second Edition)</jump>.
@@ -1038,8 +1006,8 @@
                 EntityReference nodes in the DOM tree. The document will always contain the entity
                 reference child nodes. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1053,8 +1021,8 @@
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMCanonicalForm </td></tr>
                 <tr><th><em>note:</em></th><td> Setting this feature to true is not supported. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1068,8 +1036,8 @@
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMInfoset </td></tr>  
                 <tr><th><em>note:</em></th><td> Setting this feature to true is not supported. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1088,8 +1056,8 @@
                 <link anchor="builder-validation">validation</link>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1107,8 +1075,8 @@
                 <link anchor="builder-namespaces">namespaces</link>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1122,8 +1090,8 @@
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMSupportedMediatypesOnly </td></tr>
                 <tr><th><em>note:</em></th><td> Setting this feature to true is not supported. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1141,8 +1109,8 @@
                 <link anchor="builder-validation">validation</link>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1166,8 +1134,8 @@
                 <link anchor="builder-load-external-dtd">http://apache.org/xml/features/nonvalidating/load-external-dtd</link>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1187,8 +1155,8 @@
                 they will be flagged as ignorable; and the method DOMText::isIgnorableWhitespace()
                 will return true for those text nodes. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
            </s4>
@@ -1814,8 +1782,8 @@
                 <tr><th><em>note:</em></th><td> This feature only affects the output XML stream.
 				The DOM tree to be serialized will not be changed. </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1833,8 +1801,8 @@
                 <link anchor="writer-pretty">format-pretty-print</link>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1855,8 +1823,8 @@
                 <link anchor="writer-canonical">canonical-form</link>
                 </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1870,8 +1838,8 @@
                 <tr><th><em>default:</em></th><td> false </td></tr>
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMWRTNormalizeCharacters </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1887,8 +1855,8 @@
                 <tr><th><em>default:</em></th><td> true </td></tr>
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMWRTSplitCdataSections </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1902,8 +1870,8 @@
                 <tr><th><em>default:</em></th><td> false </td></tr>
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMWRTValidation </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1918,8 +1886,8 @@
                 <tr><th><em>default:</em></th><td> true </td></tr>
                 <tr><th><em>XMLUni Predefined Constant:</em></th><td> fgDOMWRTWhitespaceInElementContent </td></tr>
                 <tr><th><em>see:</em></th><td>
-                <jump href="http://www.w3.org/TR/2002/WD-DOM-Level-3-ASLS-20020409/">
-                DOM Level 3.0 Abstract Schemas and Load and Save Specification</jump>
+                <jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407">
+                DOM Level 3.0 Load and Save Specification</jump>
                 </td></tr>
             </table>
 
@@ -1963,15 +1931,6 @@
            </s4>
         </s3>
 
-    </s2>
-
-    <anchor name="Deprecated"/>
-    <s2 title="Deprecated - Java-like DOM">
-      <p>Earlier, &XercesCName; has provided a set of C++ DOM interfaces that is
-        very similar in design and use, to the Java DOM API bindings.
-        Currently, such interface has been deprecated.
-        See this <jump href="program-deprecateddom.html"> document </jump> for its programming details.
-      </p>
     </s2>
 
 </s1>

Modified: xerces/c/trunk/doc/program-sax.xml
URL: http://svn.apache.org/viewvc/xerces/c/trunk/doc/program-sax.xml?view=diff&rev=502636&r1=502635&r2=502636
==============================================================================
--- xerces/c/trunk/doc/program-sax.xml (original)
+++ xerces/c/trunk/doc/program-sax.xml Fri Feb  2 07:49:05 2007
@@ -192,23 +192,6 @@
             </table>
             <p/>
 
-            <anchor name="validation"/>
-            <table>
-                <tr><th colspan="2"><em>void setDoValidation(const bool)</em> (deprecated) <br/>
-                please use <link anchor="validation-dynamic">setValidationScheme</link>.
-                </th></tr>
-                <tr><th><em>true:</em></th><td> Report all validation errors. </td></tr>
-                <tr><th><em>false:</em></th><td> Do not report validation errors. </td></tr>
-                <tr><th><em>default:</em></th><td> see the default of
-                <link anchor="validation-dynamic">setValidationScheme</link>.
-                </td></tr>
-                <tr><th><em>see:</em></th><td>
-                <link anchor="validation-dynamic">setValidationScheme</link>
-                </td></tr>
-            </table>
-
-            <p/>
-
             <anchor name="validation-dynamic"/>
             <table>
                 <tr><th colspan="2"><em>void setValidationScheme(const ValSchemes)</em></th></tr>

Modified: xerces/c/trunk/doc/program.xml
URL: http://svn.apache.org/viewvc/xerces/c/trunk/doc/program.xml?view=diff&rev=502636&r1=502635&r2=502636
==============================================================================
--- xerces/c/trunk/doc/program.xml (original)
+++ xerces/c/trunk/doc/program.xml Fri Feb  2 07:49:05 2007
@@ -92,7 +92,6 @@
           <li><jump href="program-dom.html#DOMLSSerializerEntityRef">How does DOMLSSerializer handle built-in entity Reference in node value?</jump></li>
           <li><jump href="program-dom.html#DOMLSSerializerFeatures">Supported Features</jump></li>
       </ul>
-      <li><jump href="program-dom.html#Deprecated">Deprecated - Java-like DOM</jump></li>
     </ul>
   </s2>
 

Modified: xerces/c/trunk/doc/xerces-c_book.xml
URL: http://svn.apache.org/viewvc/xerces/c/trunk/doc/xerces-c_book.xml?view=diff&rev=502636&r1=502635&r2=502636
==============================================================================
--- xerces/c/trunk/doc/xerces-c_book.xml (original)
+++ xerces/c/trunk/doc/xerces-c_book.xml Fri Feb  2 07:49:05 2007
@@ -18,7 +18,7 @@
 
 <!DOCTYPE book SYSTEM "sbk:/style/dtd/book.dtd">
 
-<book title="&XercesCName; Documentation" copyright="1999-2005 The Apache Software Foundation">
+<book title="&XercesCName; Documentation" copyright="1999-2007 The Apache Software Foundation">
 
   &home;
 
@@ -79,7 +79,6 @@
      <hidden   id="program-sax2"          source="program-sax2.xml"/>
      <hidden   id="program-dom"           source="program-dom.xml"/>
      <hidden   id="dom3"                  source="dom3.xml"/>
-     <hidden   id="program-deprecateddom" source="program-deprecateddom.xml"/>
      <hidden   id="schema"                source="schema.xml"/>
      <hidden   id="program-others"        source="program-others.xml"/>
 



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