Merge branch 'master' of ssh://git@gitorious.org/yacy/rc1.git

pull/1/head
Michael Christen 13 years ago
commit e6d51363ee

4
.gitignore vendored

@ -1,4 +1,5 @@
*.class
*.*~
lib/yacycore.jar
libbuild/svnRevNr.jar
libbuild/GitRevTask.jar
@ -7,3 +8,6 @@ DATA/
classes/
RELEASE/
/yacy.pid
/nbproject/private/
/build/
/dist/

@ -79,7 +79,7 @@
<target name="buildGitRevTask">
<delete file="${libbuild}/GitRevTask.jar" failonerror="false" />
<javac srcdir="${libbuild}/GitRevTask">
<javac srcdir="${libbuild}/GitRevTask" includeantruntime="true">
<classpath>
<pathelement location="${libbuild}/org.eclipse.jgit-1.1.0.201109151100-r.jar" />
</classpath>
@ -199,7 +199,7 @@
<!-- compile yacyBuildProperties.java -->
<javac srcdir="${build}" destdir="${build}" sourcepath="${src}"
debug="true" debuglevel="lines,vars,source"
debug="true" debuglevel="lines,vars,source" includeantruntime="false"
includes="net/yacy/peers/operation/yacyBuildProperties.java"
source="${javacSource}" target="${javacTarget}">
<classpath refid="project.class.path" />
@ -209,7 +209,7 @@
<!-- compile the core sources -->
<javac srcdir="${src}/" destdir="${build}"
debug="true" debuglevel="lines,vars,source"
debug="true" debuglevel="lines,vars,source" includeantruntime="false"
excludes="net/yacy/peers/operation/yacyBuildProperties.java"
source="${javacSource}" target="${javacTarget}">
<classpath refid="project.class.path" />
@ -251,7 +251,7 @@
<javac srcdir="${htroot}/"
excludes="processing/**"
source="${javacSource}" target="${javacTarget}"
debug="true" debuglevel="lines,vars,source">
debug="true" debuglevel="lines,vars,source" includeantruntime="false">
<classpath refid="project.class.path" />
<compilerarg value="-Xlint"/>
</javac>

@ -624,7 +624,11 @@ public class Blacklist_p {
String newEntry,
final String[] supportedBlacklistTypes) {
// TODO: ignore empty entries
// ignore empty entries
if(newEntry == null || newEntry.isEmpty()) {
Log.logWarning("Blacklist", "skipped adding an empty entry");
return;
}
if (newEntry.startsWith("http://") ){
newEntry = newEntry.substring(7);

@ -30,8 +30,8 @@
// javac -classpath .:../classes Blog.java
// if the shell's current path is HTROOT
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.DateFormat;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
@ -52,9 +52,13 @@ public class Blog {
private static final String DEFAULT_PAGE = "blog_default";
private static SimpleDateFormat SimpleFormatter = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss", Locale.US);
// TODO: make userdefined date/time-strings (localisation)
private static DateFormat SimpleFormatter = DateFormat.getDateTimeInstance(DateFormat.DEFAULT,DateFormat.DEFAULT, Locale.getDefault());
/**
* print localized date/time "yyyy/mm/dd HH:mm:ss"
* @param date
* @return
*/
public static String dateString(final Date date) {
return SimpleFormatter.format(date);
}
@ -74,11 +78,7 @@ public class Blog {
final boolean xml = (header.get(HeaderFramework.CONNECTION_PROP_PATH)).endsWith(".xml");
final String address = sb.peers.mySeed().getPublicAddress();
if(hasRights) {
prop.put("mode_admin", "1");
} else {
prop.put("mode_admin", "0");
}
prop.put("mode_admin", hasRights ? "1" : "0");
if (post == null) {
prop.putHTML("peername", sb.peers.mySeed().getName());
@ -102,22 +102,22 @@ public class Blog {
String pagename = post.get("page", DEFAULT_PAGE);
final String ip = header.get(HeaderFramework.CONNECTION_PROP_CLIENTIP, "127.0.0.1");
String StrAuthor = post.get("author", "");
String strAuthor = post.get("author", "anonymous");
if ("anonymous".equals(StrAuthor)) {
StrAuthor = sb.blogDB.guessAuthor(ip);
if ("anonymous".equals(strAuthor)) {
strAuthor = sb.blogDB.guessAuthor(ip);
if (StrAuthor == null || StrAuthor.length() == 0) {
if (strAuthor == null || strAuthor.length() == 0) {
if (sb.peers.mySeed() == null) {
StrAuthor = "anonymous";
strAuthor = "anonymous";
} else {
StrAuthor = sb.peers.mySeed().get("Name", "anonymous");
strAuthor = sb.peers.mySeed().get("Name", "anonymous");
}
}
}
byte[] author;
author = UTF8.getBytes(StrAuthor);
author = UTF8.getBytes(strAuthor);
if (hasRights && post.containsKey("delete") && "sure".equals(post.get("delete"))) {
page = sb.blogDB.readBlogEntry(pagename);
@ -161,7 +161,7 @@ public class Blog {
final Map<String, String> map = new HashMap<String, String>();
map.put("page", pagename);
map.put("subject", StrSubject.replace(',', ' '));
map.put("author", StrAuthor.replace(',', ' '));
map.put("author", strAuthor.replace(',', ' '));
sb.peers.newsPool.publishMyNews(sb.peers.mySeed(), NewsPool.CATEGORY_BLOG_ADD, map);
}
}

@ -32,10 +32,8 @@
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Iterator;
import java.util.Locale;
import net.yacy.cora.document.UTF8;
import net.yacy.cora.protocol.HeaderFramework;
@ -54,11 +52,10 @@ import de.anomic.server.serverSwitch;
public class BlogComments {
private final static SimpleDateFormat SIMPLE_FORMATTER = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss", Locale.US);
// TODO: make userdefined date/time-strings (localisation)
private static final String DEFAULT_PAGE = "blog_default";
public static String dateString(final Date date) {
return SIMPLE_FORMATTER.format(date);
return Blog.dateString(date);
}
public static serverObjects respond(final RequestHeader header, serverObjects post, final serverSwitch env) {
@ -77,32 +74,31 @@ public class BlogComments {
final UserDB.Entry userentry = sb.userDB.proxyAuth(header.get(RequestHeader.AUTHORIZATION, "xxxxxx"));
if (userentry != null && userentry.hasRight(UserDB.AccessRight.BLOG_RIGHT)) {
hasRights = true;
}
//opens login window if login link is clicked
else if (post.containsKey("login")) {
} else if (post.containsKey("login")) {
//opens login window if login link is clicked
prop.put("AUTHENTICATE","admin log-in");
}
}
final String pagename = post.get("page", "blog_default");
String pagename = post.get("page", DEFAULT_PAGE);
final String ip = post.get(HeaderFramework.CONNECTION_PROP_CLIENTIP, "127.0.0.1");
String StrAuthor = post.get("author", "anonymous");
String strAuthor = post.get("author", "anonymous");
if ("anonymous".equals(StrAuthor)) {
StrAuthor = sb.blogDB.guessAuthor(ip);
if ("anonymous".equals(strAuthor)) {
strAuthor = sb.blogDB.guessAuthor(ip);
if (StrAuthor == null || StrAuthor.length() == 0) {
if (strAuthor == null || strAuthor.length() == 0) {
if (sb.peers.mySeed() == null) {
StrAuthor = "anonymous";
strAuthor = "anonymous";
} else {
StrAuthor = sb.peers.mySeed().get("Name", "anonymous");
strAuthor = sb.peers.mySeed().get("Name", "anonymous");
}
}
}
byte[] author;
author = UTF8.getBytes(StrAuthor);
author = UTF8.getBytes(strAuthor);
final BlogBoard.BlogEntry page = sb.blogDB.readBlogEntry(pagename); //maybe "if(page == null)"
final boolean pageExists = sb.blogDB.contains(pagename);
@ -132,13 +128,13 @@ public class BlogComments {
sb.blogCommentDB.write(sb.blogCommentDB.newEntry(commentID, subject, author, ip, date, content));
prop.putHTML("LOCATION","BlogComments.html?page=" + pagename);
MessageBoard.entry msgEntry = null;
sb.messageDB.write(msgEntry = sb.messageDB.newEntry(
MessageBoard.entry msgEntry = sb.messageDB.newEntry(
"blogComment",
StrAuthor,
strAuthor,
sb.peers.mySeed().hash,
sb.peers.mySeed().getName(), sb.peers.mySeed().hash,
"new blog comment: " + UTF8.String(blogEntry.getSubject()), content));
"new blog comment: " + UTF8.String(blogEntry.getSubject()), content);
sb.messageDB.write(msgEntry);
messageForwardingViaEmail(sb, msgEntry);

@ -53,8 +53,7 @@ public class CacheResource_p {
return prop;
}
byte[] resource = null;
resource = Cache.getContent(url.hash());
byte[] resource = Cache.getContent(url.hash());
if (resource == null) return prop;
// check request type

@ -43,6 +43,9 @@ import de.anomic.server.serverCore;
import de.anomic.server.serverCore.Session;
import de.anomic.server.serverObjects;
import de.anomic.server.serverSwitch;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
public final class Connections_p {
@ -141,11 +144,14 @@ public final class Connections_p {
// client sessions
final Set<ConnectionInfo> allConnections = ConnectionInfo.getAllConnections();
// TODO sorting
// Arrays.sort(a, httpc.connectionTimeComparatorInstance);
// sorting: sort by initTime, decending
List<ConnectionInfo> allConnectionsSorted = new LinkedList<ConnectionInfo>(allConnections);
Collections.sort(allConnectionsSorted);
Collections.reverse(allConnectionsSorted); // toggle ascending/descending
int c = 0;
synchronized (allConnections) {
for (final ConnectionInfo conInfo: allConnections) {
synchronized (allConnectionsSorted) {
for (final ConnectionInfo conInfo: allConnectionsSorted) {
prop.put("clientList_" + c + "_clientProtocol", conInfo.getProtocol());
prop.putNum("clientList_" + c + "_clientLifetime", conInfo.getLifetime());
prop.putNum("clientList_" + c + "_clientUpbytes", conInfo.getUpbytes());

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<!-- By default, only the Clean and Build commands use this build script. -->
<!-- Commands such as Run, Debug, and Test only use this build script if -->
<!-- the Compile on Save feature is turned off for the project. -->
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
<!-- in the project's Project Properties dialog box.-->
<project name="yacy" default="default" basedir=".">
<description>Builds, tests, and runs the project yacy.</description>
<import file="nbproject/build-impl.xml"/>
<!--
There exist several targets which are by default empty and which can be
used for execution of your tasks. These targets are usually executed
before and after some main targets. They are:
-pre-init: called before initialization of project properties
-post-init: called after initialization of project properties
-pre-compile: called before javac compilation
-post-compile: called after javac compilation
-pre-compile-single: called before javac compilation of single file
-post-compile-single: called after javac compilation of single file
-pre-compile-test: called before javac compilation of JUnit tests
-post-compile-test: called after javac compilation of JUnit tests
-pre-compile-test-single: called before javac compilation of single JUnit test
-post-compile-test-single: called after javac compilation of single JUunit test
-pre-jar: called before JAR building
-post-jar: called after JAR building
-post-clean: called after cleaning build products
(Targets beginning with '-' are not intended to be called on their own.)
Example of inserting an obfuscator after compilation could look like this:
<target name="-post-compile">
<obfuscate>
<fileset dir="${build.classes.dir}"/>
</obfuscate>
</target>
For list of available properties check the imported
nbproject/build-impl.xml file.
Another way to customize the build is by overriding existing main targets.
The targets of interest are:
-init-macrodef-javac: defines macro for javac compilation
-init-macrodef-junit: defines macro for junit execution
-init-macrodef-debug: defines macro for class debugging
-init-macrodef-java: defines macro for class execution
-do-jar-with-manifest: JAR building (if you are using a manifest)
-do-jar-without-manifest: JAR building (if you are not using a manifest)
run: execution of project
-javadoc-build: Javadoc generation
test-report: JUnit report generation
An example of overriding the target for project execution could look like this:
<target name="run" depends="yacy-impl.jar">
<exec dir="bin" executable="launcher.exe">
<arg file="${dist.jar}"/>
</exec>
</target>
Notice that the overridden target depends on the jar target and not only on
the compile target as the regular run target does. Again, for a list of available
properties which you can use, check the target you are overriding in the
nbproject/build-impl.xml file.
-->
</project>

File diff suppressed because it is too large Load Diff

@ -0,0 +1,8 @@
nb-build.xml.data.CRC32=c1d508a7
nb-build.xml.script.CRC32=812fb2fd
nb-build.xml.stylesheet.CRC32=28e38971@1.50.1.46
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=c1d508a7
nbproject/build-impl.xml.script.CRC32=ec466945
nbproject/build-impl.xml.stylesheet.CRC32=fcddb364@1.50.1.46

@ -0,0 +1,185 @@
annotation.processing.enabled=true
annotation.processing.enabled.in.editor=false
annotation.processing.processors.list=
annotation.processing.run.all.processors=true
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
api.dir=${file.reference.htroot-api}
application.title=yacy
application.vendor=marek
auxiliary.org-netbeans-modules-projectimport-eclipse-core.key=src=source;src=htroot;src=htroot/api;src=htroot/env;src=htroot/yacy;src=htroot/api/bookmarks;src=htroot/api/ymarks;src=htroot/api/bookmarks/posts;src=htroot/api/bookmarks/tags;src=htroot/api/bookmarks/xbel;file=lib/commons-logging-1.1.1.jar;file=lib/servlet-api.jar;file=lib/bzip2.jar;file=lib/J7Zip-modified.jar;file=lib/webcat-0.1-swf.jar;file=lib/activation.jar;file=lib/commons-jxpath-1.3.jar;file=lib/poi-3.6-20091214.jar;file=lib/poi-scratchpad-3.6-20091214.jar;file=lib/bcmail-jdk15-145.jar;file=lib/bcprov-jdk15-145.jar;file=lib/jsch-0.1.42.jar;file=lib/jakarta-oro-2.0.8.jar;file=lib/commons-codec-1.4.jar;file=lib/mysql-connector-java-5.1.12-bin.jar;file=lib/jcifs-1.3.15.jar;file=lib/metadata-extractor-2.4.0-beta-1.jar;file=lib/httpclient-4.1.2.jar;file=lib/httpcore-4.1.3.jar;file=lib/httpmime-4.1.2.jar;file=lib/apache-mime4j-0.6.jar;file=lib/commons-fileupload-1.2.2.jar;file=lib/log4j-1.2.16.jar;file=lib/json-simple-1.1.jar;file=lib/fontbox-1.6.0.jar;file=lib/jempbox-1.6.0.jar;file=lib/pdfbox-1.6.0.jar;file=lib/commons-io-2.0.1.jar;file=lib/xercesImpl.jar;file=lib/xml-apis.jar;file=lib/slf4j-api-1.6.1.jar;file=lib/slf4j-jdk14-1.6.1.jar;file=lib/commons-httpclient-3.1.jar;file=lib/geronimo-stax-api_1.0_spec-1.0.1.jar;file=lib/jcl-over-slf4j-1.6.1.jar;file=lib/wstx-asl-3.2.7.jar;file=lib/apache-solr-solrj-3.4.0.jar;file=lib/icu4j-core.jar;output=gen;
auxiliary.org-netbeans-modules-projectimport-eclipse-core.project=.
auxiliary.org-netbeans-modules-projectimport-eclipse-core.timestamp=1325785600000
bookmarks.dir=${file.reference.api-bookmarks}
build.classes.dir=${build.dir}/classes
build.classes.excludes=**/*.java,**/*.form
# This directory is removed when the project is cleaned:
build.dir=build
build.generated.dir=${build.dir}/generated
build.generated.sources.dir=${build.dir}/generated-sources
# Only compile against the classpath explicitly listed here:
build.sysclasspath=ignore
build.test.classes.dir=${build.dir}/test/classes
build.test.results.dir=${build.dir}/test/results
buildfile=nb-build.xml
# Uncomment to specify the preferred debugger connection transport:
#debug.transport=dt_socket
debug.classpath=\
${run.classpath}
debug.test.classpath=\
${run.test.classpath}
# This directory is removed when the project is cleaned:
dist.dir=dist
dist.jar=${dist.dir}/yacy.jar
dist.javadoc.dir=${dist.dir}/javadoc
endorsed.classpath=
env.dir=${file.reference.htroot-env}
excludes=api/,env/,processing/domaingraph/applet/,yacy/,api/bookmarks/,api/ymarks/,api/bookmarks/posts/,api/bookmarks/tags/,api/bookmarks/xbel/,bookmarks/,ymarks/,bookmarks/posts/,bookmarks/tags/,bookmarks/xbel/,posts/,tags/,xbel/
file.reference.activation.jar=lib/activation.jar
file.reference.apache-mime4j-0.6.jar=lib/apache-mime4j-0.6.jar
file.reference.apache-solr-solrj-3.4.0.jar=lib/apache-solr-solrj-3.4.0.jar
file.reference.api-bookmarks=htroot/api/bookmarks
file.reference.api-ymarks=htroot/api/ymarks
file.reference.bcmail-jdk15-145.jar=lib/bcmail-jdk15-145.jar
file.reference.bcprov-jdk15-145.jar=lib/bcprov-jdk15-145.jar
file.reference.bookmarks-posts=htroot/api/bookmarks/posts
file.reference.bookmarks-tags=htroot/api/bookmarks/tags
file.reference.bookmarks-xbel=htroot/api/bookmarks/xbel
file.reference.bzip2.jar=lib/bzip2.jar
file.reference.commons-codec-1.4.jar=lib/commons-codec-1.4.jar
file.reference.commons-fileupload-1.2.2.jar=lib/commons-fileupload-1.2.2.jar
file.reference.commons-httpclient-3.1.jar=lib/commons-httpclient-3.1.jar
file.reference.commons-io-2.0.1.jar=lib/commons-io-2.0.1.jar
file.reference.commons-jxpath-1.3.jar=lib/commons-jxpath-1.3.jar
file.reference.commons-logging-1.1.1.jar=lib/commons-logging-1.1.1.jar
file.reference.fontbox-1.6.0.jar=lib/fontbox-1.6.0.jar
file.reference.geronimo-stax-api_1.0_spec-1.0.1.jar=lib/geronimo-stax-api_1.0_spec-1.0.1.jar
file.reference.htroot-api=htroot/api
file.reference.htroot-env=htroot/env
file.reference.htroot-yacy=htroot/yacy
file.reference.httpclient-4.1.2.jar=lib/httpclient-4.1.2.jar
file.reference.httpcore-4.1.3.jar=lib/httpcore-4.1.3.jar
file.reference.httpmime-4.1.2.jar=lib/httpmime-4.1.2.jar
file.reference.icu4j-core.jar=lib/icu4j-core.jar
file.reference.J7Zip-modified.jar=lib/J7Zip-modified.jar
file.reference.jakarta-oro-2.0.8.jar=lib/jakarta-oro-2.0.8.jar
file.reference.jcifs-1.3.15.jar=lib/jcifs-1.3.15.jar
file.reference.jcl-over-slf4j-1.6.1.jar=lib/jcl-over-slf4j-1.6.1.jar
file.reference.jempbox-1.6.0.jar=lib/jempbox-1.6.0.jar
file.reference.jsch-0.1.42.jar=lib/jsch-0.1.42.jar
file.reference.json-simple-1.1.jar=lib/json-simple-1.1.jar
file.reference.log4j-1.2.16.jar=lib/log4j-1.2.16.jar
file.reference.metadata-extractor-2.4.0-beta-1.jar=lib/metadata-extractor-2.4.0-beta-1.jar
file.reference.mysql-connector-java-5.1.12-bin.jar=lib/mysql-connector-java-5.1.12-bin.jar
file.reference.pdfbox-1.6.0.jar=lib/pdfbox-1.6.0.jar
file.reference.poi-3.6-20091214.jar=lib/poi-3.6-20091214.jar
file.reference.poi-scratchpad-3.6-20091214.jar=lib/poi-scratchpad-3.6-20091214.jar
file.reference.rc1-htroot=htroot
file.reference.rc1-source=source
file.reference.servlet-api.jar=lib/servlet-api.jar
file.reference.slf4j-api-1.6.1.jar=lib/slf4j-api-1.6.1.jar
file.reference.slf4j-jdk14-1.6.1.jar=lib/slf4j-jdk14-1.6.1.jar
file.reference.webcat-0.1-swf.jar=lib/webcat-0.1-swf.jar
file.reference.wstx-asl-3.2.7.jar=lib/wstx-asl-3.2.7.jar
file.reference.xercesImpl.jar=lib/xercesImpl.jar
file.reference.xml-apis.jar=lib/xml-apis.jar
htroot.dir=${file.reference.rc1-htroot}
includes=**
jar.archive.disabled=${jnlp.enabled}
jar.compress=true
jar.index=${jnlp.enabled}
javac.classpath=\
${file.reference.commons-logging-1.1.1.jar}:\
${file.reference.servlet-api.jar}:\
${file.reference.bzip2.jar}:\
${file.reference.J7Zip-modified.jar}:\
${file.reference.webcat-0.1-swf.jar}:\
${file.reference.activation.jar}:\
${file.reference.commons-jxpath-1.3.jar}:\
${file.reference.poi-3.6-20091214.jar}:\
${file.reference.poi-scratchpad-3.6-20091214.jar}:\
${file.reference.bcmail-jdk15-145.jar}:\
${file.reference.bcprov-jdk15-145.jar}:\
${file.reference.jsch-0.1.42.jar}:\
${file.reference.jakarta-oro-2.0.8.jar}:\
${file.reference.commons-codec-1.4.jar}:\
${file.reference.mysql-connector-java-5.1.12-bin.jar}:\
${file.reference.jcifs-1.3.15.jar}:\
${file.reference.metadata-extractor-2.4.0-beta-1.jar}:\
${file.reference.httpclient-4.1.2.jar}:\
${file.reference.httpcore-4.1.3.jar}:\
${file.reference.httpmime-4.1.2.jar}:\
${file.reference.apache-mime4j-0.6.jar}:\
${file.reference.commons-fileupload-1.2.2.jar}:\
${file.reference.log4j-1.2.16.jar}:\
${file.reference.json-simple-1.1.jar}:\
${file.reference.fontbox-1.6.0.jar}:\
${file.reference.jempbox-1.6.0.jar}:\
${file.reference.pdfbox-1.6.0.jar}:\
${file.reference.commons-io-2.0.1.jar}:\
${file.reference.xercesImpl.jar}:\
${file.reference.xml-apis.jar}:\
${file.reference.slf4j-api-1.6.1.jar}:\
${file.reference.slf4j-jdk14-1.6.1.jar}:\
${file.reference.commons-httpclient-3.1.jar}:\
${file.reference.geronimo-stax-api_1.0_spec-1.0.1.jar}:\
${file.reference.jcl-over-slf4j-1.6.1.jar}:\
${file.reference.wstx-asl-3.2.7.jar}:\
${file.reference.apache-solr-solrj-3.4.0.jar}:\
${file.reference.icu4j-core.jar}
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=true
javac.processorpath=\
${javac.classpath}
javac.source=1.5
javac.target=1.5
javac.test.classpath=\
${javac.classpath}:\
${build.classes.dir}
javac.test.processorpath=\
${javac.test.classpath}
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=${source.encoding}
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
javadoc.private=true
javadoc.splitindex=true
javadoc.use=true
javadoc.version=false
javadoc.windowtitle=
jnlp.applet.class=net.yacy.visualization.DemoApplet
jnlp.applet.height=300
jnlp.applet.width=300
jnlp.codebase.type=no.codebase
jnlp.descriptor=application
jnlp.enabled=false
jnlp.mixed.code=default
jnlp.offline-allowed=false
jnlp.signed=false
jnlp.signing=
jnlp.signing.alias=
jnlp.signing.keystore=
meta.inf.dir=${src.dir}/META-INF
mkdist.disabled=false
platform.active=default_platform
posts.dir=${file.reference.bookmarks-posts}
run.classpath=\
${javac.classpath}:\
${build.classes.dir}
# Space-separated list of JVM arguments used when running the project
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
# or test-sys-prop.name=value to set system properties for unit tests):
run.jvmargs=
run.test.classpath=\
${javac.test.classpath}:\
${build.test.classes.dir}
source.encoding=UTF-8
source.reference.commons-fileupload-1.2.2.jar=/Users/admin/.m2/repository/commons-fileupload/commons-fileupload/1.2.2/commons-fileupload-1.2.2-sources.jar
source.reference.poi-3.6-20091214.jar=/Users/admin/.m2/repository/org/apache/poi/poi/3.6/poi-3.6-sources.jar
src.dir=${file.reference.rc1-source}
tags.dir=${file.reference.bookmarks-tags}
xbel.dir=${file.reference.bookmarks-xbel}
yacy.dir=${file.reference.htroot-yacy}
ymarks.dir=${file.reference.api-ymarks}

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.java.j2seproject</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/j2se-project/3">
<name>yacy</name>
<source-roots>
<root id="src.dir" name="source"/>
<root id="htroot.dir"/>
<root id="api.dir"/>
<root id="env.dir"/>
<root id="yacy.dir"/>
<root id="bookmarks.dir"/>
<root id="ymarks.dir"/>
<root id="posts.dir"/>
<root id="tags.dir"/>
<root id="xbel.dir"/>
</source-roots>
<test-roots/>
</data>
</configuration>
</project>

@ -80,7 +80,7 @@ public class Translator {
/**
* Load multiple translationLists from one File. Each List starts with #File: relative/path/to/file
* @param translationFile the File, which contains the Lists
* @return a Hashtable, which contains for each File a Hashtable with translations.
* @return a HashMap, which contains for each File a HashMap with translations.
*/
public static Map<String, Map<String, String>> loadTranslationsLists(final File translationFile){
final Map<String, Map<String, String>> lists = new HashMap<String, Map<String, String>>(); //list of translationLists for different files.

@ -222,7 +222,6 @@ public final class Cache {
* @return the resource content as byte[]. If no data
* is available or the cached file is not readable, <code>null</code>
* is returned.
* @throws IOException
*/
public static byte[] getContent(final byte[] hash) {
// load the url as resource from the cache

@ -87,10 +87,10 @@ import net.yacy.kelondro.util.FileUtils;
* &lt;/body&gt;&lt;/html&gt;
* </pre>
* <p>
* The corresponding Hashtable to use this Template:<br>
* The corresponding HashMap to use this Template:<br>
* <b>Java Example</b><br>
* <pre>
* Hashtable pattern;
* HashMap pattern;
* pattern.put("times", 10); //10 greetings
* for(int i=0;i<=9;i++){
* pattern.put("times_"+i+"_daytime", 1); //index: 1, second Entry, evening
@ -112,7 +112,7 @@ import net.yacy.kelondro.util.FileUtils;
* <li>Multi templates: multitemplatename_index_</li>
* <li>Alterantives: alternativename_</li>
* </ul>
* So the Names in the Hashtable are:
* So the Names in the HashMap are:
* <ul>
* <li>Multi templates: multitemplatename_index_templatename</li>
* <li>Alterantives: alternativename_templatename</li>

@ -33,6 +33,7 @@
Properties - setProperty would be needed, but only available in 1.2
HashMap, TreeMap - only in 1.2
Hashtable - available in 1.0, but 'put' does not accept null values
//FIXME: it's 2012, do we still need support for Java 1.0?!
So this class was created as a convenience.
It will also contain special methods that read data from internet-resources
@ -418,10 +419,10 @@ public class serverObjects extends HashMap<String, String> implements Cloneable
if (isEmpty()) return "";
final StringBuilder param = new StringBuilder(size() * 40);
for (final Map.Entry<String, String> entry: entrySet()) {
param.append(MultiProtocolURI.escape(entry.getKey()));
param.append('=');
param.append(MultiProtocolURI.escape(entry.getValue()));
param.append('&');
param.append(MultiProtocolURI.escape(entry.getKey()))
.append('=')
.append(MultiProtocolURI.escape(entry.getValue()))
.append('&');
}
param.setLength(param.length() - 1);
return param.toString();

@ -165,18 +165,18 @@ public class serverSwitch
(int) getConfigLong("server.maxTrackingHostCount", 100));
}
/**
* get my public IP, either set statically or figure out dynamic
* @return
*/
public String myPublicIP() {
// if a static IP was configured, we have to return it here ...
final String staticIP = getConfig("staticIP", "");
if ( staticIP.length() > 0 ) {
return staticIP;
}
if ( !"".equals(staticIP) ) return staticIP;
// otherwise we return the real IP address of this host
final InetAddress pLIP = Domains.myPublicLocalIP();
if ( pLIP != null ) {
return pLIP.getHostAddress();
}
if ( pLIP != null ) return pLIP.getHostAddress();
return null;
}
@ -189,6 +189,10 @@ public class serverSwitch
return this.log;
}
/**
* add whole map of key-value pairs to config
* @param otherConfigs
*/
public void setConfig(final Map<String, String> otherConfigs) {
final Iterator<Map.Entry<String, String>> i = otherConfigs.entrySet().iterator();
Map.Entry<String, String> entry;
@ -307,25 +311,32 @@ public class serverSwitch
* the relative path setting.
*/
public File getDataPath(final String key, final String dflt) {
File ret;
final String path = getConfig(key, dflt).replace('\\', '/');
final File f = new File(path);
ret = (f.isAbsolute() ? new File(f.getAbsolutePath()) : new File(this.dataPath, path));
return ret;
return getFileByPath(key, dflt, dataPath);
}
/**
* return file at path from config entry "key", or fallback to default dflt
* @param key
* @param dflt
* @return
*/
public File getAppPath(final String key, final String dflt) {
File ret;
return getFileByPath(key, dflt, appPath);
}
private File getFileByPath(String key, String dflt, File prefix) {
final String path = getConfig(key, dflt).replace('\\', '/');
final File f = new File(path);
ret = (f.isAbsolute() ? new File(f.getAbsolutePath()) : new File(this.appPath, path));
return ret;
return (f.isAbsolute() ? new File(f.getAbsolutePath()) : new File(prefix, path));
}
public Iterator<String> configKeys() {
return this.configProps.keySet().iterator();
}
/**
* write the changes to permanent storage (File)
*/
private void saveConfig() {
ConcurrentMap<String, String> configPropsCopy = new ConcurrentHashMap<String, String>();
configPropsCopy.putAll(this.configProps); // avoid concurrency problems

@ -24,7 +24,9 @@
package de.anomic.tools;
import java.util.Hashtable;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import net.yacy.cora.protocol.ClientIdentification;
import net.yacy.cora.protocol.http.ProxySettings;
@ -39,8 +41,8 @@ public class loaderThreads {
protected ProxySettings remoteProxyConfig;
// management objects for collection of threads
Hashtable<String, Thread> threads;
int completed, failed;
private Map<String, Thread> threads;
private int completed, failed;
public loaderThreads() {
this(10000, null, null);
@ -54,7 +56,7 @@ public class loaderThreads {
this.timeout = timeout;
this.user = user;
this.password = password;
this.threads = new Hashtable<String, Thread>();
this.threads = new HashMap<String, Thread>();
this.completed = 0;
this.failed = 0;
}

@ -36,7 +36,7 @@ import java.util.Set;
* @author daniel
* @author sixcooler
*/
public class ConnectionInfo {
public class ConnectionInfo implements Comparable<ConnectionInfo> {
/**
* a list of all current connections to be shown in Connections_p
*/
@ -270,4 +270,11 @@ public class ConnectionInfo {
final ConnectionInfo other = (ConnectionInfo) obj;
return this.id == other.id;
}
public int compareTo(ConnectionInfo o) {
if(o==null) throw new NullPointerException("ConnectionInfo: compare() : passed argument is null \n");
if(this.initTime>o.initTime) return 1;
else if(this.initTime<o.initTime) return -1;
else return 0;
}
}

@ -118,6 +118,7 @@ public class OAIPMHImporter extends Thread implements Importer, Comparable<OAIPM
return (int) (1000L * ((long) count()) / runningTime());
}
@Override
public void run() {
while (runningJobs.size() > 50) {
try {Thread.sleep(10000 + 3000 * (System.currentTimeMillis() % 6));} catch (InterruptedException e) {}

@ -37,6 +37,8 @@ import net.yacy.cora.order.ByteOrder;
* a byte[] in a Hashtable does not work because the hash computation does not
* work for byte[]. This class extends byte[] with a cached hashing function,
* so it can be used in hashtables.
* //FIXME: so does storing byte[] in HashMap help? as I'm moving use of Hashtable to
* //FIXME: HashMap, if so, please remove this class- or notify me
*/
public class ByteArray {

@ -107,11 +107,8 @@ public final class FileUtils
dest.flush();
total += c;
if ( count > 0 ) {
chunkSize = (int) Math.min(count - total, DEFAULT_BUFFER_SIZE);
if ( chunkSize == 0 ) {
break;
}
if ( count > 0 && count == total) {
break;
}
}
@ -130,7 +127,7 @@ public final class FileUtils
if ( fis != null ) {
try {
fis.close();
} catch ( final Exception e ) {
} catch (Exception e ) {
}
}
}

@ -27,7 +27,6 @@ import java.io.IOException;
import java.io.InputStreamReader;
import java.lang.management.ManagementFactory;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import java.util.Properties;
import java.util.Vector;
@ -35,6 +34,7 @@ import java.util.Vector;
import net.yacy.cora.document.UTF8;
import net.yacy.kelondro.logging.Log;
import de.anomic.server.serverCore;
import java.util.*;
public final class OS {
@ -63,8 +63,8 @@ public final class OS {
public static int maxPathLength = 65535;
// Macintosh-specific statics
public static final Hashtable<String, String> macFSTypeCache = new Hashtable<String, String>();
public static final Hashtable<String, String> macFSCreatorCache = new Hashtable<String, String>();
public static final Map<String, String> macFSTypeCache = new HashMap<String, String>();
public static final Map<String, String> macFSCreatorCache = new HashMap<String, String>();
// static initialization
static {

@ -33,7 +33,7 @@ import java.lang.ref.SoftReference;
import java.net.InetAddress;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Hashtable;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
@ -98,8 +98,8 @@ public final class SeedDB implements AlternativeDomainNames {
private Seed mySeed; // my own seed
private final Set<String> myBotIDs; // list of id's that this bot accepts as robots.txt identification
private final Hashtable<String, String> nameLookupCache; // a name-to-hash relation
private final Hashtable<InetAddress, SoftReference<Seed>> ipLookupCache;
private final Map<String, String> nameLookupCache; // a name-to-hash relation
private final Map<InetAddress, SoftReference<Seed>> ipLookupCache;
public SeedDB(
final File networkRoot,
@ -129,10 +129,10 @@ public final class SeedDB implements AlternativeDomainNames {
this.seedPotentialDB = openSeedTable(this.seedPotentialDBFile);
// start our virtual DNS service for yacy peers with empty cache
this.nameLookupCache = new Hashtable<String, String>();
this.nameLookupCache = new HashMap<String, String>();
// cache for reverse name lookup
this.ipLookupCache = new Hashtable<InetAddress, SoftReference<Seed>>();
this.ipLookupCache = new HashMap<InetAddress, SoftReference<Seed>>();
// check if we are in the seedCaches: this can happen if someone else published our seed
removeMySeed();

@ -181,6 +181,12 @@ public class Blacklist {
}
}
/**
* create a blacklist from file, entries separated by 'sep'
* duplicit entries are removed
* @param blFile
* @param sep
*/
private void loadList(final BlacklistFile blFile, final String sep) {
final Map<String, List<String>> blacklistMapMatch = getBlacklistMap(blFile.getType(), true);
final Map<String, List<String>> blacklistMapNotMatch = getBlacklistMap(blFile.getType(), false);
@ -213,8 +219,8 @@ public class Blacklist {
blacklistMapNotMatch.put(loadedEntry.getKey(), loadedPaths);
}
} else {
// TODO check for duplicates? (refactor List -> Set)
paths.addAll(loadedPaths);
// check for duplicates? (refactor List -> Set)
paths.addAll(new HashSet<String>(loadedPaths));
}
}
}

@ -56,7 +56,6 @@ import java.security.spec.InvalidKeySpecException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
@ -260,7 +259,7 @@ public final class Switchboard extends serverSwitch
//private Object crawlingPausedSync = new Object();
//private boolean crawlingIsPaused = false;
public Hashtable<String, Object[]> crawlJobsStatus = new Hashtable<String, Object[]>();
public HashMap<String, Object[]> crawlJobsStatus = new HashMap<String, Object[]>();
private static Switchboard sb = null;

@ -77,9 +77,9 @@ public class Segment {
public static final int writeBufferSize = 4 * 1024 * 1024;
// the reference factory
public static final ReferenceFactory<WordReference> wordReferenceFactory = new WordReferenceFactory();
public static final ReferenceFactory<WordReference> wordReferenceFactory = new WordReferenceFactory();
public static final ReferenceFactory<NavigationReference> navigationReferenceFactory = new NavigationReferenceFactory();
public static final ByteOrder wordOrder = Base64Order.enhancedCoder;
public static final ByteOrder wordOrder = Base64Order.enhancedCoder;
private final Log log;
protected final IndexCell<WordReference> termIndex;

@ -0,0 +1,55 @@
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.yacy.utils;
import java.util.Scanner;
import java.util.logging.Level;
import java.util.logging.Logger;
import net.yacy.gui.framework.Browser;
/**
* Allow running the aplication yacy from java, useful from running from IDE etc
*
* @author marek
*/
public class StartFromJava {
private String cmdStart = "./startYACY.sh";
private String cmdStop = "./stopYACY.sh";
public StartFromJava() {
//FIXME: rewrite browser to general use utility UtilExecuteFile
if(Browser.systemOS != Browser.systemUnix) {
throw new UnsupportedOperationException("RUN for other os than Linux not done yet.");
}
}
public void start() throws Exception {
Browser.openBrowser(cmdStart);
}
public void stop() throws Exception {
Browser.openBrowser(cmdStop);
}
public static void main(String[] args) {
try {
StartFromJava run = new StartFromJava();
run.start();
System.out.println("run ./stopYACY.sh to stop it or type STOP here");
Scanner sc = new Scanner(System.in);
String s = "aaa";
do {
System.out.println("type STOP to stop YACY");
s = sc.nextLine();
} while(!"STOP".equals(s));
run.stop();
} catch(Exception ex) {
Logger.getLogger(StartFromJava.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
Loading…
Cancel
Save