summaryrefslogtreecommitdiff
path: root/htroot/rssTerminal.html
diff options
context:
space:
mode:
authorluccioman <luccioman@users.noreply.github.com>2016-11-08 03:05:51 +0100
committerluccioman <luccioman@users.noreply.github.com>2016-11-08 03:05:51 +0100
commit84b81c1af0e3a5f0fc15047074601398d3ff5b0d (patch)
tree3624634334481a173fc47ba46ba20f2aa992f4a7 /htroot/rssTerminal.html
parent731684105abfdf866a38e51b3e55a31778900759 (diff)
Switched more URLs to relative ones when possible.
This permits an easier and more flexible reverse proxy configuration. Some related mantis issues : http://mantis.tokeek.de/view.php?id=106 and http://mantis.tokeek.de/view.php?id=701
Diffstat (limited to 'htroot/rssTerminal.html')
-rw-r--r--htroot/rssTerminal.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/htroot/rssTerminal.html b/htroot/rssTerminal.html
index 7054ab286..a073e8a51 100644
--- a/htroot/rssTerminal.html
+++ b/htroot/rssTerminal.html
@@ -136,9 +136,9 @@ function load() {
/* Problem is described in the forums and should be fixed by changing the MIME-Type for .rss files in the YaCy HTTPd */
if (navigator.appName=="Microsoft Internet Explorer")
{
- getRSS("/api/feed.xml?count=80&set=" + set + "&requestCount=" + requestCount + "&time=" + (new Date()).getTime());
+ getRSS("api/feed.xml?count=80&set=" + set + "&requestCount=" + requestCount + "&time=" + (new Date()).getTime());
} else {
- getRSS("/api/feed.rss?count=80&set=" + set + "&requestCount=" + requestCount + "&time=" + (new Date()).getTime());
+ getRSS("api/feed.rss?count=80&set=" + set + "&requestCount=" + requestCount + "&time=" + (new Date()).getTime());
}
requestCount++;
}