summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlotus <lotus@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-09-23 15:54:12 +0000
committerlotus <lotus@6c8d7289-2bf4-0310-a012-ef5d649a1542>2008-09-23 15:54:12 +0000
commit0a0cc3bf67a177861612077872e3800da9022a4d (patch)
tree8bcc37e6d3aee0497ba513ffeb228efb5a5ebb1a
parent7b35d54c6c86d421fadf70c24116959247889705 (diff)
added missing classes to build target "run"
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@5201 6c8d7289-2bf4-0310-a012-ef5d649a1542
-rw-r--r--build.xml8
-rw-r--r--source/de/anomic/data/htmlTools.java2
2 files changed, 8 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 01a5be076..e15ef3bf4 100644
--- a/build.xml
+++ b/build.xml
@@ -889,7 +889,13 @@
<classpath>
<pathelement location="${build}"/>
<pathelement location="${htroot}"/>
- <pathelement location="${lib}/tar.jar" />
+ <pathelement location="${lib}/tar.jar" />
+ <pathelement location="${lib}/commons-fileupload-1.2.1.jar" />
+ <pathelement location="${lib}/commons-httpclient-3.1.jar" />
+ <pathelement location="${lib}/commons-logging-1.1.1.jar" />
+ <pathelement location="${lib}/commons-io-1.4.jar" />
+ <pathelement location="${lib}/jdic.jar" />
+ <pathelement location="${lib}/servlet-api.jar" />
<pathelement location="${libx}" />
<fileset dir="${libx}" includes="**/*.jar" />
</classpath>
diff --git a/source/de/anomic/data/htmlTools.java b/source/de/anomic/data/htmlTools.java
index fc3dc466f..f910ab0af 100644
--- a/source/de/anomic/data/htmlTools.java
+++ b/source/de/anomic/data/htmlTools.java
@@ -274,7 +274,7 @@ public class htmlTools {
System.out.println(decodeHtml2Unicode(txet));
if (decodeHtml2Unicode(txet).equals(text)) System.out.println("correct");
- final String text2 = "encodeUnicode2xml: & \" < > ä ö ü";
+ final String text2 = "encodeUnicode2xml: & \" < >";
System.out.println(text2);
System.out.println(encodeUnicode2xml(text2));
}