You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by dl...@apache.org on 2001/01/26 21:02:57 UTC

cvs commit: xml-xalan/java/xdocs/sources/xalan overview.xml usagepatterns.xml

dleslie     01/01/26 12:02:57

  Modified:    java/xdocs/sources/xalan overview.xml usagepatterns.xml
  Log:
  Fixed 3 bad internal links found in print.docs target.
  
  Revision  Changes    Path
  1.10      +2 -2      xml-xalan/java/xdocs/sources/xalan/overview.xml
  
  Index: overview.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/overview.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- overview.xml	2001/01/11 18:31:29	1.9
  +++ overview.xml	2001/01/26 20:02:53	1.10
  @@ -104,14 +104,14 @@
            <resource-ref idref="sax2"/> and <resource-ref idref="dom2"/>.<br/><br/></li>
       	  <li>May be configured to work with any XML parser, such
           <jump href="http://xml.apache.org/xerces-j/index.html">&xml4j;</jump>, that implements <resource-ref
  -        idref="jaxp"/> (see <link idref="usagepatterns" anchor="xmlreader">Plugging in an XML
  +        idref="jaxp"/> (see <link idref="usagepatterns" anchor="plug">Plugging in an XML
            parser</link>).<br/><br/></li>
       	  <li>Can process Stream, SAX or DOM input, and output to a Stream, SAX or DOM.<br/><br/></li>
           <li>Transformations may be chained (the output of one transformation may be the input for
            another).<br/><br/></li>
           <li>May be run from the <link idref="commandline">command line</link> for convenient file-to-file
               transformations.<br/><br/></li>
  -    	  <li>Includes an <link idref="getstarted" anchor="applet">applet wrapper</link>.<br/><br/></li>
  +    	  <li>Includes an <link idref="usagepatterns" anchor="applet">applet wrapper</link>.<br/><br/></li>
           <li>May be used in a <link idref="samples" anchor="servlet">servlet</link> to transform XML documents into
           HTML and serve the results to clients.<br/><br/></li>
           <li>Supports the creation of <link idref="extensions">Java and scripting language extensions</link>. and
  
  
  
  1.25      +1 -1      xml-xalan/java/xdocs/sources/xalan/usagepatterns.xml
  
  Index: usagepatterns.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/xdocs/sources/xalan/usagepatterns.xml,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- usagepatterns.xml	2001/01/24 15:36:44	1.24
  +++ usagepatterns.xml	2001/01/26 20:02:54	1.25
  @@ -99,7 +99,7 @@
        new javax.xml.transform.stream.StreamResult( new
                                     java.io.FileOutputStream("foo.out")));</source>
     <note>For a working example of this model at its simplest, see SimpleTransform.java in the java/samples/SimpleTransform subdirectory.</note>
  -  </s2><anchor name="processor"/>
  +  </s2><anchor name="transformerfactory"/>
     <s2 title="1. Instantiate a TransformerFactory">
     <p><jump href="apidocs/javax/xml/transform/TransformerFactory#html">TransformerFactory</jump> is an abstract class with a static newInstance() method that instantiates the concrete subclass designated by the javax.xml.transform.TransformerFactory system property.</p>
     <p>The default setting for this system property is <jump href="apidocs/org/apache/xalan/processor/TransformerFactoryImpl.html">org.apache.xalan.processor.TransformerFactoryImpl</jump>.</p>