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 hi...@apache.org on 2001/03/08 03:05:58 UTC

cvs commit: xml-batik/sources/org/apache/batik/util DocumentEvent.java DocumentEventSource.java DocumentListener.java DocumentLoadRunnable.java DocumentLoadingEvent.java DocumentPropertyEvent.java SVGFileFilter.java SwingInitializer.java Timer.java TimerTask.java

hillion     01/03/07 18:05:57

  Modified:    .        build.xml
               sources  batik.mf
  Added:       sources  batik-browser.mf
  Removed:     resources/org/apache/batik/apps/svgviewer/resources
                        Application.properties GUI.properties
                        StatusBarMessages.properties back.gif batik.gif
                        blank.gif description.gif domtree.gif forward.gif
                        language.gif monitor.gif open.gif print.gif
                        reload.gif source.gif stop.gif unzoom.gif
                        zoomin.gif zoomout.gif
               sources  batik-viewer.mf
               sources/org/apache/batik/apps/svgviewer Main.java
                        StatusBar.java ViewerFrame.java
               sources/org/apache/batik/experiment Experiments.java
                        TextPathElement.java TextPathElementBridge.java
                        TextPathElementFactory.java
               sources/org/apache/batik/swing JSVGCanvas.java
               sources/org/apache/batik/util DocumentEvent.java
                        DocumentEventSource.java DocumentListener.java
                        DocumentLoadRunnable.java DocumentLoadingEvent.java
                        DocumentPropertyEvent.java SVGFileFilter.java
                        SwingInitializer.java Timer.java TimerTask.java
  Log:
  Removed the old viewer and all related classes.
  
  Revision  Changes    Path
  1.44      +4 -35     xml-batik/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-batik/build.xml,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- build.xml	2001/03/08 01:21:01	1.43
  +++ build.xml	2001/03/08 02:05:04	1.44
  @@ -30,10 +30,10 @@
   
   This action will compile the sources to the 'classes' directory.
   
  -You can now launch the SVG viewer by typing:
  +You can now launch the SVG browser by typing:
   
  -  [unix]  ./build.sh svgviewer
  -  [win32] .\build.bat svgviewer
  +  [unix]  ./build.sh svgbrowser
  +  [win32] .\build.bat svgbrowser
   
   
   Build Targets
  @@ -45,7 +45,7 @@
     [win32] .\build.bat help
   
    
  - $Id: build.xml,v 1.43 2001/03/08 01:21:01 hillion Exp $
  + $Id: build.xml,v 1.44 2001/03/08 02:05:04 hillion Exp $
   
   -->
   
  @@ -118,7 +118,6 @@
       <echo message="   dist-zip      --> build the zip distributions"/>
       <echo message="   dist-tgz      --> build the tgz distributions"/>
       <echo message="   compile       --> compiles the source code"/>
  -    <echo message="   svgviewer     --> runs the SVG viewer"/>
       <echo message="   svgbrowser    --> runs the SVG browser"/>
       <echo message="   svgrasterizer --> runs the SVG rasterizer"/>
       <echo message="   svgpp         --> runs the SVG pretty-printer"/>
  @@ -251,7 +250,6 @@
                                  root-jar,
                                  svg-pp-jar,
                                  svggen-jar,
  -                               svg-viewer-jar,
                                  svg-browser-jar,
                                  rasterizer-jar">
       <copy todir="${build}/lib">
  @@ -482,21 +480,6 @@
       </jar>
     </target>
   
  -  <!-- SVG Viewer (dependencies: all) -->
  -  <target name="svg-viewer-jar" depends="compile, prepare-build">
  -    <jar manifest="${src}/${project}-viewer.mf"
  -         jarfile="${build}/${project}-svgviewer.jar">
  -      <fileset dir="${dest}">
  -        <include name="${package-prefix}/apps/svgviewer/**/*.class"/>
  -        <include name="${package-prefix}/experiment/**/*.class"/>
  -      </fileset>
  -      <fileset dir="${resources}">
  -        <include name="${package-prefix}/apps/svgviewer/**/resources/**"/>
  -      </fileset>
  -    </jar>
  -  </target>
  -
  -
     <!-- SVG Browser (dependencies: all) -->
     <target name="svg-browser-jar" depends="compile, prepare-build">
       <jar manifest="${src}/${project}-browser.mf"
  @@ -533,20 +516,6 @@
   
   
     <!-- Applications ....................................................... -->
  -  <target name="svgviewer"
  -          depends="compile"
  -          description="Runs the SVG viewer">
  -    <java fork="yes"
  -          classname="${class-prefix}.apps.svgviewer.Main">
  -      <classpath>
  -        <pathelement location="${dest}" />
  -        <path refid="libs-classpath"/>
  -        <pathelement location="resources" />
  -      </classpath>
  -      <arg value="${args}"/>
  -    </java>
  -  </target>
  -
     <target name="svgbrowser"
             depends="compile"
             description="Runs the SVG browser">
  
  
  
  1.2       +3 -3      xml-batik/sources/batik.mf
  
  Index: batik.mf
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/batik.mf,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- batik.mf	2001/02/02 18:34:27	1.1
  +++ batik.mf	2001/03/08 02:05:28	1.2
  @@ -1,5 +1,5 @@
  -Manifest-Version: $Id: batik.mf,v 1.1 2001/02/02 18:34:27 hillion Exp $
  -Main-Class: org.apache.batik.apps.svgviewer.Main
  +Manifest-Version: $Id: batik.mf,v 1.2 2001/03/08 02:05:28 hillion Exp $
  +Main-Class: org.apache.batik.apps.svgbrowser.Main
   Class-Path: lib/batik-ext.jar \
               lib/batik-dom.jar \
               lib/batik-css.jar \
  @@ -15,7 +15,7 @@
               lib/batik-xml.jar \
               lib/batik-root.jar \
               lib/batik-svggen.jar \
  -            batik-svgviewer.jar \
  +            batik-svgbrowser.jar \
               batik-rasterizer.jar \
               batik-pp.jar \
               lib/crimson.jar \
  
  
  
  1.1                  xml-batik/sources/batik-browser.mf
  
  Index: batik-browser.mf
  ===================================================================
  Manifest-Version: $Id: batik-browser.mf,v 1.1 2001/03/08 02:05:26 hillion Exp $
  Main-Class: org.apache.batik.apps.svgbrowser.Main
  Class-Path: lib/batik-ext.jar \
              lib/batik-dom.jar \
              lib/batik-css.jar \
              lib/batik-svg-dom.jar \
              lib/batik-gvt.jar \
              lib/batik-parser.jar \
              lib/batik-script.jar \
              lib/batik-bridge.jar \
              lib/batik-transcoder.jar \
              lib/batik-gui-util.jar \
              lib/batik-awt-util.jar \
              lib/batik-util.jar \
              lib/crimson.jar \
              lib/js.jar \
              lib/xalan-1.2.1.jar \
              lib/xerces-1.2.1.jar