*) yacyWiki: more versatile distinction between real external links/links that point to DATA/HTDOC

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1232 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
low012 2005-12-18 21:24:55 +00:00
parent b7f9adc2c9
commit 6c91921e9b

View File

@ -353,7 +353,7 @@ public class wikiCode {
// using the wikicode [[Image:share/yacy.gif]]
// or an image DATA/HTDOCS/grafics/kaskelix.jpg with [[Image:grafics/kaskelix.jpg]]
// you are free to use other sub-paths of DATA/HTDOCS
if (!((kl.startsWith("http://"))||(kl.startsWith("ftp://")))) {
if (!((kl.indexOf("://"))>=0)) {
kl = "http://" + yacyCore.seedDB.mySeed.getAddress().trim() + "/" + kl;
}
@ -395,7 +395,7 @@ public class wikiCode {
// using the wikicode [share/page.html]
// or a file DATA/HTDOCS/www/page.html with [www/page.html]
// you are free to use other sub-paths of DATA/HTDOCS
if (!((kl.startsWith("http://"))||(kl.startsWith("ftp://")))) {
if (!((kl.indexOf("://"))>=0)) {
kl = "http://" + yacyCore.seedDB.mySeed.getAddress().trim() + "/" + kl;
}
result = result.substring(0, p0) + "<a class=\"extern\" href=\"" + kl + "\">" + kv + "</a>" + result.substring(p1 + 1);