Skip to content

Commit

Permalink
fix for crawl start check
Browse files Browse the repository at this point in the history
  • Loading branch information
Orbiter committed Jun 15, 2014
1 parent 515e63c commit 4177c9c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions htroot/CrawlStartSite.html
Expand Up @@ -20,6 +20,7 @@

#%env/templates/header.template%#
#%env/templates/submenuCrawler.template%#
<div id="api"></div>
<h2>Site Crawling</h2>

<p id="startCrawling">
Expand Down
1 change: 0 additions & 1 deletion htroot/api/getpageinfo.java
Expand Up @@ -65,7 +65,6 @@ public static serverObjects respond(@SuppressWarnings("unused") final RequestHea
prop.put("lang", "");
prop.put("robots-allowed", "3"); //unknown
prop.put("robotsInfo", ""); //unknown
prop.put("sitemap", "");
prop.put("favicon","");
prop.put("sitelist", "");
prop.put("filter", ".*");
Expand Down
16 changes: 9 additions & 7 deletions htroot/js/IndexCreate.js
Expand Up @@ -45,12 +45,15 @@ function handleResponse(){

// get the sitemap URL contained in the robots.txt
if (document.getElementsByName("sitemapURL").length > 0) {
sitemap="";
if (response.getElementsByTagName("sitemap")[0].firstChild!=null){
sitemap=response.getElementsByTagName("sitemap")[0].firstChild.nodeValue;
}
document.getElementsByName("sitemapURL")[0].value=sitemap;
if (sitemap) document.getElementById("sitemap").disabled=false;
sitemap="";
// there can be zero, one or many sitemaps
sitemapElement = response.getElementsByTagName("sitemap");
if (sitemapElement != null && sitemapElement.length > 0 && sitemapElement[0].firstChild != null) {
// if there are several, we take only the first
sitemap = sitemapElement[0].firstChild.nodeValue;
}
document.getElementsByName("sitemapURL")[0].value = sitemap;
if (sitemap) document.getElementById("sitemap").disabled = false;
}
sitelist="";
if (response.getElementsByTagName("sitelist")[0].firstChild!=null){
Expand All @@ -77,5 +80,4 @@ function loadInfos() {
if (url.indexOf("ftp") == 0 || url.indexOf("smb") == 0) document.getElementById("crawlingQ").disabled=true; else document.getElementById("crawlingQ").disabled=false;
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 4177c9c

Please sign in to comment.