packages for xml/*

bugfix for servlets with packages from theli.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1272 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
allo 2005-12-30 13:57:51 +00:00
parent b95c5d5781
commit ba96cefe0c
7 changed files with 7 additions and 11 deletions

View File

@ -1,13 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="source"/>
<classpathentry excluding="env/|htdocsdefault/|proxymsg/|xml/**|yacy/|xml/util/|xml/util/|xml/bookmarks/tags/|xml/bookmarks/tags/|xml/queues/|xml/queues/|xml/bookmarks/posts/|xml/bookmarks/posts/" kind="src" path="htroot"/>
<classpathentry excluding="env/|htdocsdefault/|proxymsg/|yacy/" kind="src" path="htroot"/>
<classpathentry kind="src" path="htroot/htdocsdefault"/>
<classpathentry kind="src" path="htroot/yacy"/>
<classpathentry kind="src" path="htroot/xml/queues"/>
<classpathentry kind="src" path="htroot/xml/util"/>
<classpathentry kind="src" path="htroot/xml/bookmarks/tags"/>
<classpathentry kind="src" path="htroot/xml/bookmarks/posts"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/commons-collections.jar"/>
<classpathentry kind="lib" path="lib/commons-pool-1.2.jar"/>

View File

@ -43,7 +43,7 @@
// You must compile this file with
// javac -classpath .:../classes IndexCreate_p.java
// if the shell's current path is HTROOT
package xml.bookmarks.posts;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;

View File

@ -45,7 +45,7 @@
// if the shell's current path is HTROOT
//package xml.bookmarks.tags;
package xml.bookmarks.tags;
import java.util.Iterator;
import de.anomic.data.bookmarksDB;

View File

@ -45,7 +45,7 @@
// if the shell's current path is HTROOT
//package xml.bookmarks.tags;
package xml.bookmarks.tags;
import de.anomic.http.httpHeader;
import de.anomic.plasma.plasmaSwitchboard;
import de.anomic.server.serverObjects;

View File

@ -45,7 +45,7 @@
// if the shell's current path is HTROOT
//package xml.queues;
package xml.queues;
import java.util.ArrayList;
import java.util.Date;
import java.text.SimpleDateFormat;

View File

@ -44,7 +44,7 @@
// You must compile this file with
// javac -classpath .:../classes IndexCreate_p.java
// if the shell's current path is HTROOT
package xml.util;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;

View File

@ -119,7 +119,7 @@ public final class serverClassLoader extends ClassLoader {
b = serverFileUtils.read(classfile);
// now make a class out of the stream
// System.out.println("loading class " + classname + " from file " + classfile.toString());
c = this.defineClass(classname, b, 0, b.length);
c = this.defineClass(null, b, 0, b.length);
resolveClass(c);
this.classes.put(classfile, c);
} catch (LinkageError ee) {