Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,5 @@

# ECMAScript
org.apache.batik.bridge.RhinoInterpreterFactory
# TCL
#org.apache.batik.script.jacl.JaclInterpreterFactory
# Python
#org.apache.batik.script.jpython.JPythonInterpreterFactory
5 changes: 0 additions & 5 deletions batik-script/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.version}</version><!--$NO-MVN-MAN-VER$-->
<configuration>
<excludes>
<exclude>**/jacl/*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ Licensed to the Apache Software Foundation (ASF) under one or more
*
* <p>By default, it is able to create interpreters for ECMAScript,
* Python and Tcl scripting languages if you provide the right jar
* files in your CLASSPATH (i.e. Rhino, JPython and Jacl jar
* files).</p>
* files in your CLASSPATH (i.e. Rhino and JPython jar files).</p>
*
* @author <a href="mailto:[email protected]">Christophe Jolif</a>
* @version $Id$
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 1 addition & 11 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,6 @@ To display the available targets type:
<available property="jpython.present" classname="org.python.util.PythonInterpreter">
<classpath refid="libs-classpath"/>
</available>
<available property="jacl.present" classname="tcl.lang.Interp">
<classpath refid="libs-classpath"/>
</available>

<!-- When compiling Batik under GNU Classpath, the Sun codecs are not available. -->
<condition property="sun-codecs.present">
Expand Down Expand Up @@ -231,15 +228,9 @@ To display the available targets type:
<equals arg1="${jpython.present}" arg2="true"/>
</not>
</condition>
<condition property="javadoc-exclusion-jacl"
value="org.apache.batik.script.jacl">
<not>
<equals arg1="${jacl.present}" arg2="true"/>
</not>
</condition>

<property name="javadoc-exclusions"
value="${javadoc-exclusion-rhino},${javadoc-exclusion-jpython},${javadoc-exclusion-jacl}"/>
value="${javadoc-exclusion-rhino},${javadoc-exclusion-jpython}"/>

<uptodate property="IWasLoadedUpToDate"
targetfile="${testresources}/org/apache/batik/bridge/IWasLoaded.jar">
Expand Down Expand Up @@ -1034,7 +1025,6 @@ JAVA=/usr/bin/java
<exclude name="**/*.html"/>
<exclude name="**/rhino/*" unless="rhino.present"/>
<exclude name="**/jpython/*" unless="jpython.present"/>
<exclude name="**/jacl/*" unless="jacl.present"/>
<exclude name="${package-prefix}/ext/awt/image/codec/jpeg/*"
unless="sun-codecs.present"/>
<exclude name="${package-prefix}/ext/awt/image/codec/tiff/*"
Expand Down
4 changes: 0 additions & 4 deletions documentation-sources/content/xdocs/faq.xml
Original file line number Diff line number Diff line change
Expand Up @@ -439,10 +439,6 @@
Python for which you need to download the
<a href="http://www.jython.org">Jython</a> engine, and
</li>
<li>
Tcl for which you need to download the
<a href="http://dev.scriptics.com/software/java/">Jacl</a> engine.
</li>
</ul>
<p>
To get more information on how to install optional
Expand Down
6 changes: 0 additions & 6 deletions documentation-sources/content/xdocs/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,6 @@ jar xvf batik-1.6.zip</source>
you put the <code>jython.jar</code> file in the Batik <code>lib</code>
directory.
</li>
<li>
For Tcl, you need to download Jacl &amp; TclBlend distribution at
<a href="http://dev.scriptics.com/software/java/">http://dev.scriptics.com/software/java/</a>.
Then you put the <code>jacl.jar</code> and <code>tcljava.jar</code>
files in the Batik <code>lib</code> directory.
</li>
</ul>
<p>
Conversely, you can remove the <code>js.jar</code> of the Batik
Expand Down
10 changes: 4 additions & 6 deletions documentation-sources/content/xdocs/using/extending.xml
Original file line number Diff line number Diff line change
Expand Up @@ -731,14 +731,12 @@
</p>
<p>
Batik comes with implementations of <code>Interpreter</code> and
<code>IntepreterFactory</code> to support TCL and Python script in
SVG documents, if the Jacl and Jython distributions are installed,
respectively. See the classes in the
<code>org.apache.batik.script.jacl</code> and
<code>org.apache.batik.script.jython</code> packages to guidance
<code>IntepreterFactory</code> to support Python script in
SVG documents, if the Jython distributions is installed. See the classes
in the <code>org.apache.batik.script.jython</code> packages to guidance
on how to implement the interpreter interfaces, and the
<a href="site:install">installation notes</a> on what jar files are
needed for TCL and Python support.
needed for Python support.
</p>
</section>
</body>
Expand Down