You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2008/12/08 05:22:15 UTC

svn commit: r724245 - in /xerces/java/trunk/docs: api.xml faq-general.xml faq-pcfp.xml faq-xinclude.xml faq-xs.xml install.xml readme.xml samples-jaxp.xml

Author: mrglavas
Date: Sun Dec  7 20:22:07 2008
New Revision: 724245

URL: http://svn.apache.org/viewvc?rev=724245&view=rev
Log:
JIRA Issue #1318:
http://issues.apache.org/jira/browse/XERCESJ-1318

Updating the documentation for JAXP 1.4.

Modified:
    xerces/java/trunk/docs/api.xml
    xerces/java/trunk/docs/faq-general.xml
    xerces/java/trunk/docs/faq-pcfp.xml
    xerces/java/trunk/docs/faq-xinclude.xml
    xerces/java/trunk/docs/faq-xs.xml
    xerces/java/trunk/docs/install.xml
    xerces/java/trunk/docs/readme.xml
    xerces/java/trunk/docs/samples-jaxp.xml

Modified: xerces/java/trunk/docs/api.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/api.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/api.xml (original)
+++ xerces/java/trunk/docs/api.xml Sun Dec  7 20:22:07 2008
@@ -44,6 +44,17 @@
       <jump href='javadocs/api/javax/xml/parsers/package-summary.html'>Parsers</jump>
      </li>
      <li>
+      <jump href='javadocs/api/javax/xml/stream/package-summary.html'>Stream</jump>
+     </li>
+     <ul>
+      <li>
+       <jump href='javadocs/api/javax/xml/stream/events/package-summary.html'>Events</jump>
+      </li>
+      <li>
+       <jump href='javadocs/api/javax/xml/stream/util/package-summary.html'>Utilities</jump>
+      </li>
+     </ul>
+     <li>
       <jump href='javadocs/api/javax/xml/transform/package-summary.html'>Transform</jump>
      </li>
      <ul>
@@ -54,6 +65,9 @@
        <jump href='javadocs/api/javax/xml/transform/sax/package-summary.html'>SAX</jump>
       </li>
       <li>
+       <jump href='javadocs/api/javax/xml/transform/stax/package-summary.html'>StAX</jump>
+      </li>
+      <li>
        <jump href='javadocs/api/javax/xml/transform/stream/package-summary.html'>Stream</jump>
       </li>
      </ul>

Modified: xerces/java/trunk/docs/faq-general.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/faq-general.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/faq-general.xml (original)
+++ xerces/java/trunk/docs/faq-general.xml Sun Dec  7 20:22:07 2008
@@ -43,7 +43,7 @@
         </p>
         <ul>
         <li><code>xml-apis.jar</code> contains the DOM level 3,
-        SAX 2.0.2 and the JAXP 1.3 APIs;</li>
+        SAX 2.0.2 and the JAXP 1.4 APIs;</li>
         <li><code>xercesImpl.jar</code> contains the implementation of
         these API&apos;s as well as the XNI API.
         </li>
@@ -54,8 +54,8 @@
         </p>
     </a>
  </faq>
- <faq title="Using JAXP 1.3 on JDK 1.4">
-  <q>How can I use JAXP 1.3 on JDK 1.4?</q>
+ <faq title="Using JAXP 1.4 on JDK 1.4 and above">
+  <q>How can I use JAXP 1.4 on JDK 1.4 and above?</q>
   <a>
    <p>
     Use the <jump href="http://java.sun.com/j2se/1.4/docs/guide/standards/">Endorsed Standards Override Mechanism</jump>

Modified: xerces/java/trunk/docs/faq-pcfp.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/faq-pcfp.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/faq-pcfp.xml (original)
+++ xerces/java/trunk/docs/faq-pcfp.xml Sun Dec  7 20:22:07 2008
@@ -81,7 +81,7 @@
   <q>How can I tell the parser to validate against XML Schema and not to report DTD validation errors?</q>
   <a>
    <p>
-    Using JAXP you can instruct the parser to validate against XML Schema only. The JAXP 1.3
+    Using JAXP you can instruct the parser to validate against XML Schema only. The JAXP 1.4
     Validation API allows you to build an in-memory representation of an XML Schema which 
     you can then set on a parser factory. Parsers created from the factory will validate
     documents using the schema object you specified.

Modified: xerces/java/trunk/docs/faq-xinclude.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/faq-xinclude.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/faq-xinclude.xml (original)
+++ xerces/java/trunk/docs/faq-xinclude.xml Sun Dec  7 20:22:07 2008
@@ -22,9 +22,9 @@
     <q>How do I enable XInclude processing?</q>
     <a>
      <p>
-      Applications using JAXP 1.3 can enable XInclude processing by setting
-      XInclude awareness on the parser factory. The following demonstrates
-      how to accomplish this with SAX:
+      Applications using JAXP 1.3 (and above) can enable XInclude processing 
+      by setting XInclude awareness on the parser factory. The following 
+      demonstrates how to accomplish this with SAX:
      </p>
      <source>import javax.xml.parsers.SAXParserFactory;
      

Modified: xerces/java/trunk/docs/faq-xs.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/faq-xs.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/faq-xs.xml (original)
+++ xerces/java/trunk/docs/faq-xs.xml Sun Dec  7 20:22:07 2008
@@ -203,8 +203,8 @@
     </a>
   </faq>
 
- <faq title="Accessing PSVI via the JAXP 1.3 Validation API">
-   <q>How do I access PSVI via the JAXP 1.3 Validation API?</q>
+ <faq title="Accessing PSVI via the JAXP 1.4 Validation API">
+   <q>How do I access PSVI via the JAXP 1.4 Validation API?</q>
    <a> <p>Like the Xerces SAX parser the implementations of <code>javax.xml.validation.Validator</code>
        and <code>javax.xml.validation.ValidatorHandler</code> also implement the
        <code>org.apache.xerces.xs.PSVIProvider</code> interface. Within the scope of the methods 

Modified: xerces/java/trunk/docs/install.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/install.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/install.xml (original)
+++ xerces/java/trunk/docs/install.xml Sun Dec  7 20:22:07 2008
@@ -97,7 +97,7 @@
     the parser.  Currently &ParserName; supports DOM level 3, SAX
     2.0.2, and the <code>javax.xml.datatype</code>, 
     <code>javax.xml.parsers</code> and <code>javax.xml.validation</code> 
-    parts of JAXP 1.3.</td>
+    parts of JAXP 1.4.</td>
    </tr>
    <tr>
     <td>xercesSamples.jar</td>

Modified: xerces/java/trunk/docs/readme.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/readme.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/readme.xml (original)
+++ xerces/java/trunk/docs/readme.xml Sun Dec  7 20:22:07 2008
@@ -109,7 +109,7 @@
       </li>
       <li>
 	<jump href='http://java.sun.com/xml/xml_jaxp.html'>Java APIs for 
-	  XML Processing</jump> (JAXP) 1.3
+	  XML Processing</jump> (JAXP) 1.4
       </li>
       <li>
 	<jump href='http://www.w3.org/XML/Schema'>XML Schema</jump> 1.0

Modified: xerces/java/trunk/docs/samples-jaxp.xml
URL: http://svn.apache.org/viewvc/xerces/java/trunk/docs/samples-jaxp.xml?rev=724245&r1=724244&r2=724245&view=diff
==============================================================================
--- xerces/java/trunk/docs/samples-jaxp.xml (original)
+++ xerces/java/trunk/docs/samples-jaxp.xml Sun Dec  7 20:22:07 2008
@@ -38,8 +38,8 @@
   <p>
    A sample which demonstrates usage of classes in the
    javax.xml.parsers package, particularly new features introduced
-   in JAXP 1.3, including XInclude processing, integration with
-   the JAXP 1.3 Validation API and parser reset.
+   in JAXP 1.3 and 1.4, including XInclude processing, integration 
+   with the JAXP 1.4 Validation API and parser reset.
   </p>
   <s3 title='usage'>
    <source>java jaxp.ParserAPIUsage (options) uri</source>
@@ -58,14 +58,14 @@
  <anchor name='SourceValidator'/>
  <s2 title='Sample jaxp.SourceValidator'>
   <p>
-   A sample demonstrating how to use the JAXP 1.3 Validation API
+   A sample demonstrating how to use the JAXP 1.4 Validation API
    to create a validator and use the validator to validate input
    from SAX, DOM or a stream. The output of this program shows the 
    time spent executing the Validator.validate(Source) method.
   </p>
   <p>
    This class is useful as a "poor-man's" performance tester to
-   compare the speed of various JAXP 1.3 validators with different
+   compare the speed of various JAXP 1.4 validators with different
    input sources. However, it is important to note that the first 
    validation time of a validator will include both VM class load time 
    and validator initialization that would not be present in subsequent
@@ -88,7 +88,7 @@
     <tr><td>-x number</td><td>Select number of repetitions.</td></tr>
     <tr><td>-a uri ...</td><td>Provide a list of schema documents.</td></tr>
     <tr><td>-i uri ...</td><td>Provide a list of instance documents to validate.</td></tr>
-    <tr><td>-vs source</td><td>Select validation source (sax|dom|stream).</td></tr>
+    <tr><td>-vs source</td><td>Select validation source (sax|dom|stax|stream).</td></tr>
     <tr>
      <td>-f  | -F</td>
      <td>
@@ -137,7 +137,7 @@
  <anchor name='InlineSchemaValidator'/>
  <s2 title='Sample jaxp.InlineSchemaValidator'>
   <p>
-   A sample demonstrating how to use the JAXP 1.3 Validation API
+   A sample demonstrating how to use the JAXP 1.4 Validation API
    to create a validator and use the validator to validate input
    from a DOM which contains inline schemas and multiple validation
    roots. The output of this program shows the time spent executing 
@@ -145,7 +145,7 @@
   </p>
   <p>
    This class is useful as a "poor-man's" performance tester to
-   compare the speed of various JAXP 1.3 validators with different
+   compare the speed of various JAXP 1.4 validators with different
    input sources. However, it is important to note that the first 
    validation time of a validator will include both VM class load time 
    and validator initialization that would not be present in subsequent
@@ -220,7 +220,7 @@
   <p>
    Provides a trace of the schema type information for elements and
    attributes in an XML document. This demonstrates usage of the
-   JAXP 1.3 Validation API, particuarly how to read type information
+   JAXP 1.4 Validation API, particuarly how to read type information
    from a TypeInfoProvider.
   </p>
   <s3 title='usage'>



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