cjolif 01/10/26 04:45:40 Modified: xdocs glossary.xml scriptIntro.xml svggen.xml whoAreWe.xml Log: documentation review for v1.1 Revision Changes Path 1.6 +2 -2 xml-batik/xdocs/glossary.xml Index: glossary.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/glossary.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- glossary.xml 2001/05/17 01:17:58 1.5 +++ glossary.xml 2001/10/26 11:45:40 1.6 @@ -11,7 +11,7 @@ <!-- ========================================================================= --> <!-- author [EMAIL PROTECTED] --> -<!-- version $Id: glossary.xml,v 1.5 2001/05/17 01:17:58 vhardy Exp $ --> +<!-- version $Id: glossary.xml,v 1.6 2001/10/26 11:45:40 cjolif Exp $ --> <!-- ========================================================================= --> <document> @@ -42,7 +42,7 @@ The SVG DOM (Document Object Model) defines the API that programming languages use to interact with SVG documents. There are different 'bindings' of the DOM API for different languages. For example, there is an ECMAScript - binding which allows SVG scripts to access or modify SVG document, for example + binding which allows SVG scripts to access or modify SVG documents, for example in reaction to events. There is also a Java technology binding which allows Java programs to dynamically interact with SVG documents. The Java binding and the ECMA Script binding are both available in Batik. 1.4 +4 -4 xml-batik/xdocs/scriptIntro.xml Index: scriptIntro.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/scriptIntro.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- scriptIntro.xml 2001/06/06 07:13:53 1.3 +++ scriptIntro.xml 2001/10/26 11:45:40 1.4 @@ -11,7 +11,7 @@ <!-- ========================================================================= --> <!-- author [EMAIL PROTECTED] --> -<!-- version $Id: scriptIntro.xml,v 1.3 2001/06/06 07:13:53 cjolif Exp $ --> +<!-- version $Id: scriptIntro.xml,v 1.4 2001/10/26 11:45:40 cjolif Exp $ --> <!-- ========================================================================= --> <document> <header> @@ -24,7 +24,7 @@ <body> <s1 title="Introduction"> <p> - Batik 1.0 is a static SVG implementation, that's why scripting cannot be used to modify the rendering of the SVG elements on the screen. However you will find below a little introduction on scripting basics, on how it could be useful through an example and on how you can go a little bit further. + Batik 1.1 is a static SVG implementation, that's why scripting cannot be used to modify the rendering of the SVG elements on the screen. However you will find below a little introduction on scripting basics, on how it could be useful through an example and on how you can go a little bit further. </p> </s1> <s1 title="Scripting Basics"> @@ -67,7 +67,7 @@ </ul> </s1> <s1 title="Scripting Uses in Batik"> - <p>Batik release 1.0 is a static SVG implementation, that's why in this version you can't use scripting to move or change graphic objects on the screen, however it can still be usefull for other purposes.</p> + <p>Batik release 1.1 is a static SVG implementation, that's why in this version you can't use scripting to move or change graphic objects on the screen, however it can still be usefull for other purposes.</p> <p>The following simplified example that you can find in your Batik distribution uses the Java Sound API through scripting to simulate a piano in SVG:</p> <source> @@ -148,7 +148,7 @@ A similar job is done in the <code>drag</code> function. </p> <p> - To sum up, this sample shows that the Batik 1.0 release is able to handle events and perform + To sum up, this sample shows that the Batik 1.1 release is able to handle events and perform some actions in ECMAScript when receiving them. Here the action is to play music with the Java Sound API, it could be other kind of job (logging user actions, performing tasks in answer to user actions...). 1.9 +5 -5 xml-batik/xdocs/svggen.xml Index: svggen.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/svggen.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- svggen.xml 2001/08/29 13:08:52 1.8 +++ svggen.xml 2001/10/26 11:45:40 1.9 @@ -12,12 +12,12 @@ <!-- ========================================================================= --> <!-- author [EMAIL PROTECTED] --> <!-- author [EMAIL PROTECTED] --> -<!-- version $Id: svggen.xml,v 1.8 2001/08/29 13:08:52 cjolif Exp $ --> +<!-- version $Id: svggen.xml,v 1.9 2001/10/26 11:45:40 cjolif Exp $ --> <!-- ========================================================================= --> <document> <header> <title>SVGGraphics2D</title> - <subtitle>A brief of the SVG Generator in Java(SVGGraphics2D)</subtitle> + <subtitle>A brief of the SVG Generator in Java (SVGGraphics2D)</subtitle> <authors> <person name="Sheng Pei" email="[EMAIL PROTECTED]"/> <person name="Vincent Hardy" email="[EMAIL PROTECTED]"/> @@ -30,7 +30,7 @@ <figure src="images/svggen.jpg" alt="Batik SVG Generator"/> <p> - As SVG(Scalable Vector Graphics) is emerging as a promising graphics format + As SVG (Scalable Vector Graphics) is emerging as a promising graphics format for a wide range of domains and applications, bridging it with Java becomes important. This page explains how Batik's <code>SVGGraphics2D</code>, referred to as the SVG Generator, makes this possible. It is divided into three parts: </p> @@ -88,7 +88,7 @@ <s1 title="How to use SVGGraphics2D"> <p> From the figure in the previous section we can see that in order for an instance of <code>SVGGraphics2D</code> to build - the SVG content(the DOM tree), an instance of DOM's <code>Document</code> class is needed. The DOM tree is an in-memory + the SVG content (the DOM tree), an instance of DOM's <code>Document</code> class is needed. The DOM tree is an in-memory representation of the SVG document, which can be further manipulated by the user using DOM API or be streamed out into any <code>java.io.Writer</code>. </p> @@ -194,7 +194,7 @@ </p> <s2 title="Have your own comment in the generated SVG file"> <p> - We begin with the simpliest possible example. If you integrate the Batik SVG generator in your own Java application, you may want to specialize the comment generated in the XML code. You can proceed as below. + We begin with the simplest possible example. If you integrate the Batik SVG generator in your own Java application, you may want to specialize the comment generated in the XML code. You can proceed as below. </p> <source> 1.28 +2 -2 xml-batik/xdocs/whoAreWe.xml Index: whoAreWe.xml =================================================================== RCS file: /home/cvs/xml-batik/xdocs/whoAreWe.xml,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- whoAreWe.xml 2001/10/22 07:36:44 1.27 +++ whoAreWe.xml 2001/10/26 11:45:40 1.28 @@ -11,7 +11,7 @@ <!-- ========================================================================= --> <!-- author [EMAIL PROTECTED] --> -<!-- version $Id: whoAreWe.xml,v 1.27 2001/10/22 07:36:44 tkormann Exp $ --> +<!-- version $Id: whoAreWe.xml,v 1.28 2001/10/26 11:45:40 cjolif Exp $ --> <!-- ========================================================================= --> <document> <header> @@ -221,7 +221,7 @@ </tr> <tr> <td>SVGGraphics2D</td><td/><td/><td>X</td><td/> - <td/><td/><td/><td/> + <td/><td>X</td><td/><td/> </tr> <tr> <td>Micro Parsers</td><td/><td/><td/><td>X</td>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]