summaryrefslogtreecommitdiff
path: root/htroot/js/yacyinteractive.js
diff options
context:
space:
mode:
authororbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2010-12-16 23:37:21 +0000
committerorbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2010-12-16 23:37:21 +0000
commit58b59f9bc8bf03ecd4272032a4708f88e687565e (patch)
tree0955fe8ebae2c72845e953fab44e19142417ea10 /htroot/js/yacyinteractive.js
parent4d5bb4c4ca6b7efb8f49d8bf39da8d696d3cb067 (diff)
- a collection of bug fixes and some redesign of the Scanner class
- fixed smb crawling - added smbget to download script generation git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7381 6c8d7289-2bf4-0310-a012-ef5d649a1542
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 af0f35efc..5c09002e7 100644
--- a/htroot/js/yacyinteractive.js
+++ b/htroot/js/yacyinteractive.js
@@ -185,7 +185,7 @@ function resultLine(type, item, linenumber) {
}
// update download script
- script += "curl -OL \"" + item.link + "\"\n";
+ if (item.link.indexOf("smb://") >= 0) script += "smbget -n -a -r \"" + item.link + "\"\n"; else script += "curl -OL \"" + item.link + "\"\n";
// make table row
var html = "";