summaryrefslogtreecommitdiff
path: root/htroot/CrawlMonitorRemoteStart.html
diff options
context:
space:
mode:
authororbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2010-01-13 23:19:45 +0000
committerorbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542>2010-01-13 23:19:45 +0000
commit34354cf9b21bf7e08105045bda22c97aa0c62ec4 (patch)
tree9f0fd6eccb0c1da237102532cfda6292cbab8e00 /htroot/CrawlMonitorRemoteStart.html
parent938e8061825e2d080ec579bf29daff404fba5940 (diff)
added a servlet that has been removed in SVN 4881; this servlet is now splitted and will be used for a simple crawl start and a remote crawl monitor (not yet integrated into the interface)
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6582 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/CrawlMonitorRemoteStart.html')
-rw-r--r--htroot/CrawlMonitorRemoteStart.html59
1 files changed, 59 insertions, 0 deletions
diff --git a/htroot/CrawlMonitorRemoteStart.html b/htroot/CrawlMonitorRemoteStart.html
new file mode 100644
index 000000000..6afd5f0a8
--- /dev/null
+++ b/htroot/CrawlMonitorRemoteStart.html
@@ -0,0 +1,59 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>YaCy '#[clientname]#': Monitor for remotely started global crawls</title>
+ #%env/templates/metas.template%#
+ <script type="text/javascript" src="/js/ajax.js"></script>
+ <script type="text/javascript" src="/js/IndexCreate.js"></script>
+ </head>
+ <body id="IndexCreate">
+ #%env/templates/header.template%#
+ #%env/templates/submenuIndexCreate.template%#
+ <h2>Recently started remote crawls in progress</h2>
+
+ <p><strong>Remote crawl start points, crawl is ongoing</strong></p>
+ <table border="0" cellpadding="2" cellspacing="1">
+ <tr class="TableHeader">
+ <td><strong>Start Time</strong></td>
+ <td><strong>Peer Name</strong></td>
+ <td><strong>Start URL</strong></td>
+ <td><strong>Intention/Description</strong></td>
+ <td><strong>Depth</strong></td>
+ <td><strong>Accept '?' URLs</strong></td>
+ </tr>
+ #{otherCrawlStartInProgress}#
+ <tr class="TableCell#(dark)#Light::Dark#(/dark)#" >
+ <td>#[cre]#</td>
+ <td>#[peername]#</td>
+ <td><a href="#[startURL]#">#[startURL]#</a></td>
+ <td>#[intention]#</td>
+ <td>#[generalDepth]#</td>
+ <td>#(crawlingQ)#no::yes#(/crawlingQ)#</td>
+ </tr>
+ #{/otherCrawlStartInProgress}#
+ </table>
+ <p><strong>Remote crawl start points, finished:</strong></p>
+ <table border="0" cellpadding="2" cellspacing="1">
+ <tr class="TableHeader">
+ <td><strong>Start Time</strong></td>
+ <td><strong>Peer Name</strong></td>
+ <td><strong>Start URL</strong></td>
+ <td><strong>Intention/Description</strong></td>
+ <td><strong>Depth</strong></td>
+ <td><strong>Accept '?' URLs</strong></td>
+ </tr>
+ #{otherCrawlStartFinished}#
+ <tr class="TableCell#(dark)#Light::Dark#(/dark)#" >
+ <td>#[cre]#</td>
+ <td>#[peername]#</td>
+ <td><a href="#[startURL]#">#[startURL]#</a></td>
+ <td>#[intention]#</td>
+ <td>#[generalDepth]#</td>
+ <td>#(crawlingQ)#no::yes#(/crawlingQ)#</td>
+ </tr>
+ #{/otherCrawlStartFinished}#
+ </table>
+
+ #%env/templates/footer.template%#
+ </body>
+</html> \ No newline at end of file