Skip to content

Commit

Permalink
Merge pull request #588 from okybaca/crawlurl
Browse files Browse the repository at this point in the history
modified crawl list so the URL links to external URL
  • Loading branch information
Orbiter authored Aug 28, 2023
2 parents d353202 + 08b769f commit 376bcfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htroot/js/Crawler.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ function showRSS(RSS) {
if (doc != null) {
if (crawllist_body.length > 100000) crawllist_body = "";
for (var i=0; i<RSS.items.length; i++) {
crawllist_body = "<tr class='TableCellLight'><td><a href='ViewFile.html?action=info&urlHash=" + RSS.items[i].guid.value + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].description + "</a></td><td><a href='ViewFile.html?action=info&urlHash=" + RSS.items[i].guid.value + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].link + "</a></td></tr>" + crawllist_body;
crawllist_body = "<tr class='TableCellLight'><td><a href='ViewFile.html?action=info&urlHash=" + RSS.items[i].guid.value + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].description + "</a></td><td><a href='" + RSS.items[i].link + "' class='small' target='_blank' title='" + RSS.items[i].link + "'>" + RSS.items[i].link + "</a></td></tr>" + crawllist_body;
}
doc.innerHTML = crawllist_head + crawllist_body + crawllist_tail;
}
Expand Down

0 comments on commit 376bcfd

Please sign in to comment.