summaryrefslogtreecommitdiff
path: root/htroot/js/yacyinteractive.js
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2012-04-22 02:05:17 +0200
committerMichael Peter Christen <mc@yacy.net>2012-04-22 02:05:17 +0200
commitf8cd57c92f73ea78355c0649a6859ea349a9f40b (patch)
tree8def3777567737e8547766fa4c0e4fddfd7fcabd /htroot/js/yacyinteractive.js
parent14f67f217c204ec76d117050127cb2975e6fb6f7 (diff)
new indexing strategy: ALL links that appear anywhere are indexed, not
only links where the content can be parsed. All non-parseable links are placed into the noload queue. The search process must therefore be able to filter out non-text search results. - This fixes the problem that image search results appeared in the text search. - The interactive search can retrieve now ALL types of links - The p2p interface is now extended to retrieve only certain types of links (text, image, video, apps) - The search process has an extension to filter the right document type according to the search query
Diffstat (limited to 'htroot/js/yacyinteractive.js')
-rw-r--r--htroot/js/yacyinteractive.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/htroot/js/yacyinteractive.js b/htroot/js/yacyinteractive.js
index f7d979175..71bcde91d 100644
--- a/htroot/js/yacyinteractive.js
+++ b/htroot/js/yacyinteractive.js
@@ -36,7 +36,7 @@ function search(search, count, offset) {
} else if (window.ActiveXObject) { // IE
self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}
- self.xmlHttpReq.open('GET', "yacysearch.json?verify=false&resource=local&nav=all&maximumRecords=" + maximumRecords + "&startRecord=" + startRecord + "&query=" + query, true);
+ self.xmlHttpReq.open('GET', "yacysearch.json?verify=false&resource=local&nav=all&contentdom=all&maximumRecords=" + maximumRecords + "&startRecord=" + startRecord + "&query=" + query, true);
self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
self.xmlHttpReq.onreadystatechange = function() {
if (self.xmlHttpReq.readyState == 4) {