diff --git a/htroot/ViewFile.soap b/htroot/ViewFile.soap
deleted file mode 100644
index 56789fc57..000000000
--- a/htroot/ViewFile.soap
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
- #(error)##[url]#::#(/error)#
- #(error)##[hash]#::#(/error)#
- #(error)##[wordCount]#::#(/error)#
- #(error)##[desc]#::#(/error)#
- #(error)##[size]#::#(/error)#
- #(error)##[mimeType]#::#(/error)#
- #(error)#0::1::2::3::4::5::6#(/error)#
-
- #(error)#OK
- ::No URL hash submitted
- ::Unable to find URL Entry in DB
- ::Invalid URL
- ::Unable to download resource content: #[errorText]#
- ::Unable to parse resource content: #[errorText]#
- ::Unsupported protocol
- #(/error)#
-
-
-
-
- #(viewMode)#
- ::
-
- ::
-
- ::
- #{sentences}#
-
- #{/sentences}#
- #(/viewMode)#
-
-
\ No newline at end of file
diff --git a/htroot/js/yacysearch.js b/htroot/js/yacysearch.js
index b55c951a2..ce23eb5d4 100644
--- a/htroot/js/yacysearch.js
+++ b/htroot/js/yacysearch.js
@@ -51,165 +51,6 @@ function Progressbar(length, parent) {
parent.appendChild(this.element);
}
-function handleTextState(req) {
- if(req.readyState != 4){
- return;
- }
-
- var response = req.responseXML;
-
- var snippetText = response.getElementsByTagName("text")[0].firstChild.data;
- var urlHash = response.getElementsByTagName("urlHash")[0].firstChild.data;
- var status = response.getElementsByTagName("status")[0].firstChild.data;
-
-
- var span = document.getElementById("h" + urlHash);
- removeAllChildren(span);
- //span.removeChild(span.firstChild);
-
- if (status < 11) {
- span.className = "snippetLoaded";
- } else {
- span.className = "snippetError";
- span.parentNode.parentNode.className = "searchresults hidden";
- document.getElementById("hidden_results").innerHTML='Some results were hidden, because they do not contain your searchwords anymore, or because they are not accessible. Click here to show them';
- }
-
- // set URL to favicon (if a link-tag was found in the document)
- if (response.getElementsByTagName("favicon")[0].firstChild != null) {
- var img = document.getElementById("f" + urlHash);
- img.src = "ViewImage.png?width=16&height=16&url=" + response.getElementsByTagName("favicon")[0].firstChild.data;
- }
-
- // replace "" text by node
- var pos1=snippetText.indexOf("");
- var pos2=snippetText.indexOf("");
- while (pos1 >= 0 && pos2 > pos1) {
- leftString = document.createTextNode(snippetText.substring(0, pos1)); //other text
- if (leftString != "") span.appendChild(leftString);
-
- //add the bold text
- strongNode=document.createElement("strong");
- middleString=document.createTextNode(snippetText.substring(pos1 + 3, pos2));
- strongNode.appendChild(middleString);
- span.appendChild(strongNode);
-
- // cut out left and middle and go on with remaining text
- snippetText=snippetText.substring(pos2 + 4);
- pos1=snippetText.indexOf("");
- pos2=snippetText.indexOf("");
- }
-
- // add remaining string
- if (snippetText != "") {
- span.appendChild(document.createTextNode(snippetText));
- }
-}
-
-function handleMediaState(req, progressbar) {
- if(req.readyState != 4){
- return;
- }
-
- var response = req.responseXML;
- // On errors, the result might not contain what we look for...
- if (response.getElementsByTagName("urlHash")) {
- var urlHash = response.getElementsByTagName("urlHash")[0].firstChild.data;
- var links = response.getElementsByTagName("links")[0].firstChild.data;
- var container = document.getElementById("results");
-
- if (links > 0) {
- for (i = 0; i < links; i++) {
- var type = response.getElementsByTagName("type")[i].firstChild.data;
- var href = response.getElementsByTagName("href")[i].firstChild.data;
- var name = response.getElementsByTagName("name")[i].firstChild.data;
- var attr = response.getElementsByTagName("attr")[i].firstChild.data;
-
- var link = document.createElement("a");
- link.setAttribute("href", href);
- link.setAttribute("target", "_parent");
- link.appendChild(document.createTextNode(name));
-
- var title = document.createElement("h4");
- title.className = "linktitle";
- title.appendChild(link);
-
- var urllink = document.createElement("a");
- urllink.setAttribute("href", href);
- urllink.setAttribute("target", "_parent");
- urllink.appendChild(document.createTextNode(href));
-
- var url = document.createElement("p");
- url.className = "url";
- url.appendChild(urllink);
-
- var searchresultcontainer = document.createElement("div");
- searchresultcontainer.className = "searchresults";
- searchresultcontainer.appendChild(title);
- searchresultcontainer.appendChild(url);
-
- container.appendChild(searchresultcontainer);
-
- document.getElementById("linkcount").innerHTML++;
- }
- }
- }
- progressbar.step(1);
-}
-
-function handleImageState(req, progressbar) {
- if(req.readyState != 4)
- return;
-
- var response = req.responseXML;
- // on errors, the result might not contain the expected elements and would throw an error, so we check for it here
- if (response.getElementsByTagName("urlHash")) {
- // the urlHash is not needed anymore at the moment
- //var urlHash = response.getElementsByTagName("urlHash")[0].firstChild.data;
- var links = response.getElementsByTagName("links")[0].firstChild.data;
- var div = document.getElementById("results")
-
- if (links > 0) {
- for (i = 0; i < links; i++) {
- var type = response.getElementsByTagName("type")[i].firstChild.data;
- var href = response.getElementsByTagName("href")[i].firstChild.data;
- var code = response.getElementsByTagName("code")[i].firstChild.data;
- var name = response.getElementsByTagName("name")[i].firstChild.data;
- var attr = response.getElementsByTagName("attr")[i].firstChild.data;
-
- var img = document.createElement("img");
- img.setAttribute("src", "/ViewImage.png?maxwidth=96&maxheight=96&code=" + code);
- img.setAttribute("alt", name);
-
- var imganchor = document.createElement("a");
- imganchor.setAttribute("href", href);
- imganchor.className = "thumblink";
- imganchor.appendChild(img);
-
- var nameanchor = document.createElement("a");
- nameanchor.setAttribute("href", href);
- nameanchor.appendChild(document.createTextNode(name));
-
-
- var textcontainer = document.createElement("div");
- textcontainer.className = "TableCellDark";
- textcontainer.appendChild(nameanchor);
-
- var thumbcontainer = document.createElement("div");
- thumbcontainer.className = "thumbcontainer";
- thumbcontainer.appendChild(imganchor);
- thumbcontainer.appendChild(textcontainer);
- div.appendChild(thumbcontainer);
- //span.appendChild(imganchor);
-
- document.getElementById("linkcount").innerHTML++;
- }
- }
- }
- progressbar.step(1);
-}
-
-
function addHover() {
if (document.all&&document.getElementById) {
var divs = document.getElementsByTagName("div");
diff --git a/htroot/yacysearch.html b/htroot/yacysearch.html
index 2ebd6fb15..cac09fb49 100644
--- a/htroot/yacysearch.html
+++ b/htroot/yacysearch.html
@@ -103,100 +103,27 @@ document.getElementById("Enter").value = "search again - catch up more links";
::
No Results. "#[wrong_regex]#" is no valid regular expression. Please go back to the previous page and make sure to enter a valid regular expressions for URL mask and Prefer mask.
::
-
#[offset]#-#[linkcount]# results from a total number of #[totalcount]# known#(globalresults)#.::, #[globalcount]# links from other YaCy peers.#(/globalresults)#
+
#[offset]#-#[linkcount]# results from a total number of #[totalcount]# known#(globalresults)#.::, #[globalcount]# links from other YaCy peers.#(/globalresults)#
Search Result Pages: #[pagenav]#
::
Searching the web with this peer is disabled for unauthorized users. Please log in as administrator to use the search function