*) Deleted parts of WebCat that were not needed for parsing SWFs.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2893 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
low012 19 years ago
parent f80a1304c2
commit 89af433879

@ -0,0 +1,7 @@
This package is part of WebCAT (http://webcat.sourceforge.net/)
WebCAT was developed at the XLDB group of the Department of Informatics of the Faculty of Sciences of the University of Lisbon in Portugal.
WebCAT was written by Bruno Martins.
WebCAT is released under the BSD License. (http://www.opensource.org/licenses/bsd-license.php)

Binary file not shown.

@ -16,7 +16,7 @@
<pathelement location="${build}" />
<!-- main lib needed to parse swf files -->
<pathelement location="${libx}/webcat.jar" />
<pathelement location="${libx}/webcat-0.1-swf.jar" />
</classpath>
</javac>
</target>
@ -25,7 +25,7 @@
<target name="zip" depends="compile">
<tar destfile="${parserArchive}" compression="gzip">
<tarfileset dir="${libx}"
includes="webcat.*"
includes="webcat-0.1-swf.*"
prefix="${releaseFileParentDir}/libx/"
dirmode="755" mode="644"/>
<tarfileset dir="${src}/de/anomic/plasma/parser/${parserShortName}"
@ -39,7 +39,7 @@
<target name="copy" depends="compile">
<copy todir="${release}/libx/">
<fileset dir="${libx}" includes="webcat.*"/>
<fileset dir="${libx}" includes="webcat-0.1-swf.*"/>
</copy>
<copy todir="${release}/source/de/anomic/plasma/parser/${parserShortName}">
<fileset dir="${src}/de/anomic/plasma/parser/${parserShortName}" includes="**/*"/>

@ -72,7 +72,7 @@ public class swfParser extends AbstractParser implements Parser {
* a list of library names that are needed by this parser
* @see Parser#getLibxDependences()
*/
private static final String[] LIBX_DEPENDENCIES = new String[] {"webcat.jar"};
private static final String[] LIBX_DEPENDENCIES = new String[] {"webcat-0.1-swf.jar"};
public swfParser() {
super(LIBX_DEPENDENCIES);

Loading…
Cancel
Save