You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by vh...@apache.org on 2001/05/17 03:30:31 UTC

cvs commit: xml-batik/xdocs faq.xml testInfrastructure.xml svgviewer.xml svgrasterizer.xml

vhardy      01/05/16 18:30:31

  Modified:    xdocs    faq.xml testInfrastructure.xml svgviewer.xml
                        svgrasterizer.xml
  Log:
  Added review comments from Stephane.
  
  Revision  Changes    Path
  1.21      +5 -9      xml-batik/xdocs/faq.xml
  
  Index: faq.xml
  ===================================================================
  RCS file: /home/cvs/xml-batik/xdocs/faq.xml,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- faq.xml	2001/05/16 12:34:29	1.20
  +++ faq.xml	2001/05/17 01:30:27	1.21
  @@ -10,7 +10,7 @@
   <!-- ========================================================================= -->
   <!-- author vincent.hardy@eng.sun.com                                          -->
   <!-- author cjolif@ilog.fr                                                     -->
  -<!-- version $Id: faq.xml,v 1.20 2001/05/16 12:34:29 deweese Exp $ -->
  +<!-- version $Id: faq.xml,v 1.21 2001/05/17 01:30:27 vhardy Exp $ -->
   <!-- ========================================================================= -->
   
   <!DOCTYPE faqs SYSTEM "./dtd/faq-v10.dtd">
  @@ -138,7 +138,7 @@
           <p>
           The <strong>SVG Font Converter</strong> lets the user easily create
           an SVG Font for a set of characters from a True Type Font file. That
  -        SVG Font definition can be embeded in a document using the
  +        SVG Font definition can be embedded in a document using the
           characters. This allows users to create SVG documents that are self contained and 
           do not rely on system fonts, and guarantees that the SVG file will
           be displayed exactly as it was authored on all platforms.
  @@ -147,7 +147,7 @@
           <p>
           The <strong>SVG Pretty Printer</strong> is a convenience tool to 
           pretty print an SVG document, which means that you can reformat any
  -        existing SVG document to produce a properly formatted and higly legible 
  +        existing SVG document to produce a properly formatted and highly legible 
           version.</p>
   
           <!-- <p>The SVG Generator 
  @@ -200,7 +200,7 @@
           <p>
           Apache's mission is to allow the web to be an open environment and
           to remain an open environment. Batik is an open source implementation of
  -        a key format for today and tomorow's web and fits well in Apache's mission.
  +        a key format for today and tomorrow's web and fits well in Apache's mission.
           </p>
       </answer>
   
  @@ -210,15 +210,11 @@
       <question>How does Batik relate to other Apache projects?</question>
       <answer>
           <p>
  -        Batik will likely be used in <link href="http://xml.apache.org/cocoon/index.html">Cocoon</link> 
  +        Batik is used in <link href="http://xml.apache.org/cocoon/index.html">Cocoon</link> 
           for server side rasterization of SVG images. In addition, the Batik and the
           <link href="http://xml.apache.org/fop/index.html">FOP</link> teams have started to work
           together to define how the projects can leverage each other's work for SVG to PDF 
           conversion.
  -        </p>
  -        <p>
  -        Note that Batik uses <link href="http://xml.apache.org/xalan-j/index.html">Xalan</link> for its 
  -        support of XSL transformations (have a look at the xsltest.svg file in the distribution).
           </p>
       </answer>
   
  
  
  
  1.3       +7 -7      xml-batik/xdocs/testInfrastructure.xml
  
  Index: testInfrastructure.xml
  ===================================================================
  RCS file: /home/cvs/xml-batik/xdocs/testInfrastructure.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- testInfrastructure.xml	2001/05/01 15:27:06	1.2
  +++ testInfrastructure.xml	2001/05/17 01:30:27	1.3
  @@ -11,7 +11,7 @@
   
   <!-- ========================================================================= -->
   <!-- author vincent.hardy@eng.sun.com                                          -->
  -<!-- version $Id: testInfrastructure.xml,v 1.2 2001/05/01 15:27:06 vhardy Exp $ -->
  +<!-- version $Id: testInfrastructure.xml,v 1.3 2001/05/17 01:30:27 vhardy Exp $ -->
   <!-- ========================================================================= -->
   
   <document>
  @@ -30,7 +30,7 @@
               <ul>
                   <li>Make it easy to detect regressions</li>
                   <li>Make it easy to run test suites</li>
  -                <li>Make it easy to write new test and add them
  +                <li>Make it easy to write new tests and add them
                       to an existing test suite</li>
               </ul>
   
  @@ -79,7 +79,7 @@
   
                   <li>A <code>TestReportProcessor</code> is used to 
                   analyze a <code>TestReport</code>. A specific implementation
  -                can chose to create graphs, send an email or write
  +                can choose to create graphs, send an email or write
                   an HTML file</li>
   
               </ul>
  @@ -242,7 +242,7 @@
   
               <p>There is now a rule in our <code>build.xml</code> to run a test suite defined in 
               an XML file as the one above. At the command line, type the following:</p>
  -            <p><code>build runtestsuite -Dargs="path/to/my/newly/created/testSuite.xml"</code>.
  +            <p><code>build runtestsuite path/to/my/newly/created/testSuite.xml</code>.
               In addition, the <em>regard</em> rule runs a specific set of tests by default,
               so that you do not need to pass any testRun file argument.</p>
               </s2>
  @@ -251,7 +251,7 @@
           <anchor id="regardReplacement" />
           <s1 title="The 'regard' replacement">
           
  -        <p>'regard' is the tool we have used so far to deted regressions in how we render SVG images</p>
  +        <p>'regard' is the tool we have used so far to detect regressions in how we render SVG images</p>
           <p>There is a <code>Test</code> implementation, <code>SVGRenderingAccuracyTest</code> which takes over
           the responsibility that regard has and then goes beyond.</p>
   
  @@ -366,7 +366,7 @@
               reference images are typically generated, you can check-in the reference image in 
               test-references/samples/tests. Otherwise (and this is ok), you can let the test fail the 
               first time it is run on the build/test machine and that will be a reminder for whoever
  -            is responsible for that machine that a valid reference image shoudl be checked in.</p>
  +            is responsible for that machine that a valid reference image should be checked in.</p>
               
           </s2>
   
  @@ -375,7 +375,7 @@
               <p>Imagine you want to validate some aspect of your code, and let's take the bridge error
               handling as an example. You could create a new class in the <code>test-sources</code>
               area, in the org/apache/batik/bridge in our example, and let's call it <code>ErrorHandlingTest</code>.
  -            To simplify the implementation of the <code>Test</code> interface, you can chose
  +            To simplify the implementation of the <code>Test</code> interface, you can choose
               to derive from the <code>AbstractTest</code> class and generate a <code>DefaultTestReport</code>.</p>
               
               <p>While writing the <code>Test</code> you may want to use your own XML file with just
  
  
  
  1.11      +5 -5      xml-batik/xdocs/svgviewer.xml
  
  Index: svgviewer.xml
  ===================================================================
  RCS file: /home/cvs/xml-batik/xdocs/svgviewer.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- svgviewer.xml	2001/05/01 15:27:06	1.10
  +++ svgviewer.xml	2001/05/17 01:30:28	1.11
  @@ -11,7 +11,7 @@
   
   <!-- ========================================================================= -->
   <!-- author vincent.hardy@eng.sun.com                                          -->
  -<!-- version $Id: svgviewer.xml,v 1.10 2001/05/01 15:27:06 vhardy Exp $ -->
  +<!-- version $Id: svgviewer.xml,v 1.11 2001/05/17 01:30:28 vhardy Exp $ -->
   <!-- ========================================================================= -->
   
   <document>
  @@ -58,13 +58,13 @@
               <s2 title="Starting the browser for the binary distribution">
   
                   <p>If you downloaded the binary distribution of Batik, you should have
  -                gotten a file called <em>batik-1.0beta.zip</em>, which, when expanded, 
  +                gotten a file called <em>batik-1.0.zip</em>, which, when expanded, 
                   created a <em>batik-svgbrowser.jar</em> file. To start the browser, 
                   type the following on the command line:</p>
                   <p><em>cd &lt;installationDirectory&gt;</em></p>
                   <p><em>java -jar batik-svgbrowser.jar</em></p>
                   <p>You can pass options to the command line:</p>
  -                <p><em>java -jar batik-svgbrowser.jar [-font-size &lt;fontSize&gt;] [svgURL]</em></p>
  +                <p><em>java -jar batik-svgbrowser.jar [-font-size &lt;fontSize&gt;] [svgURL]*</em></p>
                   <p>Where:</p>
                       <ul>
                           <li><em>-font-size &lt;fontSize&gt;</em> will make the browser use small fonts in the GUI.</li>
  @@ -102,8 +102,8 @@
                           This will start the browser</li>
                   </ul>
                   <p>You can pass options to the browser as follows:</p>
  -                <p><strong>Windows: </strong><em>build svgbrowser [-font-size &lt;fontSize&gt;] [svgURL]"</em></p>
  -                <p><strong>UNIX: </strong><em>build.sh svgbrowser [-font-size &lt;fontSize&gt;] [svgURL]"</em></p>
  +                <p><strong>Windows: </strong><em>build svgbrowser [-font-size &lt;fontSize&gt;] [svgURL]</em></p>
  +                <p><strong>UNIX: </strong><em>build.sh svgbrowser [-font-size &lt;fontSize&gt;] [svgURL]</em></p>
                   <p>Refer to "Starting the browser for the binary distribution" for an explanation of these
                   options</p>
               </s2>
  
  
  
  1.5       +3 -3      xml-batik/xdocs/svgrasterizer.xml
  
  Index: svgrasterizer.xml
  ===================================================================
  RCS file: /home/cvs/xml-batik/xdocs/svgrasterizer.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- svgrasterizer.xml	2000/12/03 20:40:46	1.4
  +++ svgrasterizer.xml	2001/05/17 01:30:29	1.5
  @@ -11,7 +11,7 @@
   
   <!-- ========================================================================= -->
   <!-- author vincent.hardy@eng.sun.com                                          -->
  -<!-- version $Id: svgrasterizer.xml,v 1.4 2000/12/03 20:40:46 vhardy Exp $ -->
  +<!-- version $Id: svgrasterizer.xml,v 1.5 2001/05/17 01:30:29 vhardy Exp $ -->
   <!-- ========================================================================= -->
   
   <document>
  @@ -117,8 +117,8 @@
                           help message for the rasterizer</li>
                   </ul>
                   <p>You can pass options to the rasterizer as follows:</p>
  -                <p><strong>Windows: </strong><em>build svgrasterizer -Dargs="[-d &lt;directory&gt;] [-m &lt;mimeType&gt;] [@files]"</em></p>
  -                <p><strong>UNIX: </strong><em>build.sh svgrasterizer -Dargs="[-d &lt;directory&gt;] [-m &lt;mimeType&gt;] [@files]"</em></p>
  +                <p><strong>Windows: </strong><em>build svgrasterizer [-d &lt;directory&gt;] [-m &lt;mimeType&gt;] [@files]</em></p>
  +                <p><strong>UNIX: </strong><em>build.sh svgrasterizer [-d &lt;directory&gt;] [-m &lt;mimeType&gt;] [@files]</em></p>
                   <p>Refer to <link href="#usingBinary">"Using the binary distribution" </link>for an explanation of these
                   options</p>
               </s2>
  
  
  

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