Merge remote-tracking branch 'origin/master' into heroku_experiments

pull/61/head
luccioman 9 years ago
commit 480027ec98

@ -24,7 +24,7 @@
<classpathentry kind="lib" path="lib/json-simple-1.1.1.jar"/>
<classpathentry kind="lib" path="lib/xercesImpl.jar"/>
<classpathentry kind="lib" path="lib/xml-apis.jar"/>
<classpathentry kind="lib" path="lib/commons-compress-1.11.jar"/>
<classpathentry kind="lib" path="lib/commons-compress-1.12.jar"/>
<classpathentry kind="lib" path="lib/commons-lang-2.6.jar"/>
<classpathentry kind="lib" path="lib/jaudiotagger-2.0.4-20111207.115108-15.jar"/>
<classpathentry kind="lib" path="lib/commons-codec-1.10.jar"/>

@ -167,7 +167,7 @@
<pathelement location="${lib}/common-io-3.2.1.jar" />
<pathelement location="${lib}/common-lang-3.2.1.jar" />
<pathelement location="${lib}/commons-codec-1.10.jar" />
<pathelement location="${lib}/commons-compress-1.11.jar" />
<pathelement location="${lib}/commons-compress-1.12.jar" />
<pathelement location="${lib}/commons-fileupload-1.3.2.jar" />
<pathelement location="${lib}/commons-io-2.5.jar" />
<pathelement location="${lib}/commons-jxpath-1.3.jar" />

@ -35,7 +35,7 @@
that you fully re-index after changing this setting as it can
affect both how text is indexed and queried.
-->
<luceneMatchVersion>5.2.0</luceneMatchVersion>
<luceneMatchVersion>5.5.0</luceneMatchVersion>
<!-- <lib/> directives can be used to instruct Solr to load any Jars
identified and use them to resolve any "plugins" specified in

@ -1130,10 +1130,6 @@ memory.disabledDHT = false
# wether using standard memory strategy - or try generation memory strategy
memory.standardStrategy = true
# setting if execution of CGI files is allowed or not
cgi.allow = false
cgi.suffixes = cgi,pl
# content integration settings
content.phpbb3.urlstub = http://<mydomain>/
content.phpbb3.dbtype = mysql

@ -57,7 +57,7 @@ public class IndexShare_p {
if (post.containsKey("indexsharesetting")) {
sb.setConfig(SwitchboardConstants.INDEX_DIST_ALLOW, post.containsKey("distribute"));
sb.setConfig("allowReceiveIndex", post.containsKey("receive"));
sb.setConfig(SwitchboardConstants.INDEX_RECEIVE_ALLOW, post.containsKey("receive"));
sb.setConfig("defaultLinkReceiveFrequency", post.getInt("linkfreq", 30));
sb.setConfig("defaultWordReceiveFrequency", post.getInt("wordfreq", 10));
}

@ -116,7 +116,7 @@ public final class transferRWI {
final int wordc = post.getInt("wordc", 0); // number of different words
final int entryc = post.getInt("entryc", 0); // number of entries in indexes
byte[] indexes = post.get("indexes", "").getBytes(); // the indexes, as list of word entries
boolean granted = sb.getConfigBool("allowReceiveIndex", false);
boolean granted = sb.getConfigBool(SwitchboardConstants.INDEX_RECEIVE_ALLOW, false);
final boolean blockBlacklist = sb.getConfigBool(SwitchboardConstants.INDEX_RECEIVE_BLOCK_BLACKLIST, false);
final long cachelimit = sb.getConfigLong(SwitchboardConstants.WORDCACHE_MAX_COUNT, 100000);
final Seed otherPeer = sb.peers.get(iam);

@ -68,7 +68,7 @@ public final class transferURL {
final String youare = post.get("youare", ""); // seed hash of the target peer, needed for network stability
// final String key = post.get("key", ""); // transmission key
final int urlc = post.getInt("urlc", 0); // number of transported urls
final boolean granted = sb.getConfigBool("allowReceiveIndex", false);
final boolean granted = sb.getConfigBool(SwitchboardConstants.INDEX_RECEIVE_ALLOW, false);
final boolean blockBlacklist = sb.getConfigBool(SwitchboardConstants.INDEX_RECEIVE_BLOCK_BLACKLIST, false);
// response values

Binary file not shown.

Binary file not shown.

@ -363,7 +363,8 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.11</version>
<version>1.12</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>

@ -137,7 +137,7 @@ public class MultiProtocolURL implements Serializable, Comparable<MultiProtocolU
/**
* initialization of a MultiProtocolURI to produce poison pills for concurrent blocking queues
*/
public MultiProtocolURL() {
protected MultiProtocolURL() {
this.protocol = null;
this.host = null;
this.hostAddress = null;
@ -356,8 +356,12 @@ public class MultiProtocolURL implements Serializable, Comparable<MultiProtocolU
return this.contentDomain;
}
/**
* @deprecated not used (2016-07-20), doesn't handle all protocol cases. Use MultiprotocolURL(MultiProtocolURL, String) instead
*/
@Deprecated // not used 2016-07-20
public static MultiProtocolURL newURL(final String baseURL, String relPath) throws MalformedURLException {
if (relPath.startsWith("//")) {
if (relPath.startsWith("//")) {
// patch for urls starting with "//" which can be found in the wild
relPath = "http:" + relPath;
}
@ -373,6 +377,10 @@ public class MultiProtocolURL implements Serializable, Comparable<MultiProtocolU
return new MultiProtocolURL(new MultiProtocolURL(baseURL), relPath);
}
/**
* @deprecated not used (2016-07-20), doesn't handle all protocol cases. Use MultiprotocolURL(MultiProtocolURL, String) instead
*/
@Deprecated // not used 2016-07-20
public static MultiProtocolURL newURL(final MultiProtocolURL baseURL, String relPath) throws MalformedURLException {
if (relPath.startsWith("//")) {
// patch for urls starting with "//" which can be found in the wild
@ -831,11 +839,11 @@ public class MultiProtocolURL implements Serializable, Comparable<MultiProtocolU
public String getFileName() {
// this is a method not defined in any sun api
// it returns the last portion of a path without any reference
final int p = this.path.lastIndexOf('/');
if (p < 0) return this.path;
if (p == this.path.length() - 1) return ""; // no file name, this is a path to a directory
return this.path.substring(p + 1); // the 'real' file name
}
final int p = this.path.lastIndexOf('/');
if (p < 0) return this.path;
if (p == this.path.length() - 1) return ""; // no file name, this is a path to a directory
return this.path.substring(p + 1); // the 'real' file name
}
/**
* Get extension out of a filename in lowercase
@ -858,12 +866,22 @@ public class MultiProtocolURL implements Serializable, Comparable<MultiProtocolU
return fileName.substring(p + 1, q).toLowerCase();
}
/**
* Get the path (including filename)
* Path is never null
* returns may range from empty string, just "/" to a full path
* @return
*/
public String getPath() {
return this.path;
}
/**
* Get path elements (directories) as array
* @return array with directory names or empty array
*/
public String[] getPaths() {
String s = this.path == null ? "" : this.path.charAt(0) == '/' ? this.path.substring(1) : this.path;
String s = (this.path == null || this.path.length() < 1) ? "" : this.path.charAt(0) == '/' ? this.path.substring(1) : this.path;
int p = s.lastIndexOf('/');
if (p < 0) return new String[0];
s = s.substring(0, p); // the paths do not contain the last part, which is considered as the getFileName() part.
@ -2438,10 +2456,10 @@ public class MultiProtocolURL implements Serializable, Comparable<MultiProtocolU
System.out.println((jURL == null) ? "jURL rejected input" : "jURL=" + jURL.toString());
System.out.println((aURL == null) ? "aURL rejected input" : "aURL=" + aURL.toNormalform(false) + "; host=" + aURL.getHost() + "; path=" + aURL.getPath() + "; file=" + aURL.getFile());
}
if (aURL != null && jURL != null && jURL.toString().equals(aURL.toNormalform(false))) {
System.out.println("jURL == aURL=" + aURL.toNormalform(false) + "; host=" + aURL.getHost() + "; path=" + aURL.getPath() + "; file=" + aURL.getFile());
}
}
// check stability: the normalform of the normalform must be equal to the normalform
if (aURL != null) try {

@ -112,9 +112,7 @@ import net.yacy.cora.order.NaturalOrder;
import net.yacy.cora.protocol.ClientIdentification;
import net.yacy.cora.protocol.ConnectionInfo;
import net.yacy.cora.protocol.Domains;
import net.yacy.cora.protocol.HeaderFramework;
import net.yacy.cora.protocol.RequestHeader;
import net.yacy.cora.protocol.ResponseHeader;
import net.yacy.cora.protocol.TimeoutRequest;
import net.yacy.cora.protocol.ftp.FTPClient;
import net.yacy.cora.protocol.http.HTTPClient;
@ -3901,7 +3899,7 @@ public final class Switchboard extends serverSwitch {
mySeed.setLastSeenUTC();
mySeed.put(Seed.UTC, GenericFormatter.UTCDiffString());
mySeed.setFlagAcceptRemoteCrawl(getConfigBool(SwitchboardConstants.CRAWLJOB_REMOTE, false));
mySeed.setFlagAcceptRemoteIndex(getConfigBool("allowReceiveIndex", true));
mySeed.setFlagAcceptRemoteIndex(getConfigBool(SwitchboardConstants.INDEX_RECEIVE_ALLOW, true));
mySeed.setFlagSSLAvailable(this.getHttpServer() != null && this.getHttpServer().withSSL() && getConfigBool("server.https", false));
if (mySeed.getFlagSSLAvailable()) mySeed.put(Seed.PORTSSL, Integer.toString(getPublicPort("port.ssl", 8443)));

@ -86,8 +86,8 @@ import org.apache.lucene.util.Version;
public final class Fulltext {
private static final String SOLR_PATH = "solr_5_2"; // the number should be identical to the number in the property luceneMatchVersion in solrconfig.xml
private static final String SOLR_OLD_PATH[] = new String[]{"solr_36", "solr_40", "solr_44", "solr_45", "solr_46", "solr_47", "solr_4_9", "solr_4_10"};
private static final String SOLR_PATH = "solr_5_5"; // the number should be identical to the number in the property luceneMatchVersion in solrconfig.xml
private static final String SOLR_OLD_PATH[] = new String[]{"solr_36", "solr_40", "solr_44", "solr_45", "solr_46", "solr_47", "solr_4_9", "solr_4_10", "solr_5_2"};
// class objects
private final File segmentPath;

Loading…
Cancel
Save