diff options
| author | luccioman <luccioman@users.noreply.github.com> | 2018-07-06 11:30:30 +0200 |
|---|---|---|
| committer | luccioman <luccioman@users.noreply.github.com> | 2018-07-06 11:30:30 +0200 |
| commit | 534f09e92b2ae7984c401f4f8d8b2921dd97b6cd (patch) | |
| tree | cf1c427136b73b8f8f9e47b329ca501a11742e5b /htroot/CrawlStartExpert.html | |
| parent | c726154a59994137053d3c557a73e18315dcbbfc (diff) | |
Added and updated hint messages about remote crawler status
To help identify why remote crawl results may not be received.
Diffstat (limited to 'htroot/CrawlStartExpert.html')
| -rw-r--r-- | htroot/CrawlStartExpert.html | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/htroot/CrawlStartExpert.html b/htroot/CrawlStartExpert.html index 66be62a9f..57ca869d2 100644 --- a/htroot/CrawlStartExpert.html +++ b/htroot/CrawlStartExpert.html @@ -98,10 +98,17 @@ } // Remote crawl + var remoteCrawlerDisabledInfo = document.getElementById('remoteCrawlerDisabledInfo'); if ($('#crawlOrder').isChecked()) { + if(remoteCrawlerDisabledInfo != null) { + remoteCrawlerDisabledInfo.className = ''; + } $('#intention').enable(); if (cId === "crawlOrder") { $('#intention').focus(); } } else { + if(remoteCrawlerDisabledInfo != null) { + remoteCrawlerDisabledInfo.className = 'hidden'; + } $('#intention').disable(); } } @@ -623,9 +630,16 @@ so they can omit starting a crawl with the same start point. </span></span> <table style="border-width: 0px"> + #(remoteCrawlerDisabled)#:: + <tr #(crawlOrderChecked)#class="hidden"::#(/crawlOrderChecked)# id="remoteCrawlerDisabledInfo"> + <td colspan="2"><div class="info"><p>Remote crawl results won't be added to the local index as the remote crawler is disabled on this peer.</p> + <p>You can activate it in the <a href="RemoteCrawl_p.html">Remote Crawl Configuration</a> page.</p></div> + </td> + </tr> + #(/remoteCrawlerDisabled)# <tr> <td> - <input type="checkbox" name="crawlOrder" id="crawlOrder" #(crawlOrderChecked)#::checked="checked"#(/crawlOrderChecked)# /> + <input type="checkbox" name="crawlOrder" id="crawlOrder" #(crawlOrderChecked)#::checked="checked"#(/crawlOrderChecked)#/> </td> <td> <label for="intention">Describe your intention to start this global crawl (optional)</label>:<br /> |
