Skip to content

Commit

Permalink
automatically set the Q flag for smb/ftp start urls (split pdf support)
Browse files Browse the repository at this point in the history
  • Loading branch information
Orbiter committed Dec 28, 2014
1 parent 8600ea0 commit d960303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htroot/js/IndexCreate.js
Expand Up @@ -77,7 +77,7 @@ function loadInfos() {
document.getElementById("ajax").setAttribute("src",AJAX_ON);

url=document.getElementById("crawlingURL").value;
//if (url.indexOf("ftp") == 0 || url.indexOf("smb") == 0) document.getElementById("crawlingQ").disabled=true; else document.getElementById("crawlingQ").disabled=false;
if (url.indexOf("ftp") == 0 || url.indexOf("smb") == 0) document.getElementById("crawlingQ").checked = true; // since the pdf parser update for page separation, we need to set this
sndReq('/api/getpageinfo_p.xml?actions=title,robots&url='+url);
document.getElementById("api").innerHTML = "<a href='http://localhost:8090/api/getpageinfo_p.xml?actions=title,robots&url=" + url + "' id='apilink'><img src='/env/grafics/api.png' width='60' height='40' alt='API'/></a><span>See the page info about the start url.</span>";
}

0 comments on commit d960303

Please sign in to comment.