diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2007-09-28 01:21:31 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2007-09-28 01:21:31 +0000 |
| commit | 842308ea979f5841e2b5ae65e6fb08d0bea07fc7 (patch) | |
| tree | a898376a5c0df4caf594a96fb997c77103eb6cab /htroot/CrawlProfileEditor_p.html | |
| parent | 341f7cb327899d093986fa7bccff5c051f2d916d (diff) | |
- redesigned crawl start menu, integrated monitoring pages
- removed web structure picture from indexing menu and grouped it together with htcache monitor
- added a database for terminated crawls, when a crawl is finished it is automatically moved to the new database
- extended crawl profile edit servlet, shows now also terminated crawls
- option that was used to delete profiles is now redesigned to a function that moves the current crawl to the terminated crawls and removes all urls from the current queues!
- fixed here and there problems with indexing queues
- enhances indexing speed by changing cache flush sizes.
- changed behaviour of crawl result servlet: the list of crawled urls is shown if there is one, othevise the overview window is shown
attention: the new profile databases are not compatible with the old one. current crawls will be lost! the web index is not touched.
next steps: the database of terminated crawls can be used to start with them a new crawl. This is useful if one wants to re-crawl specific pages and wants to use a old crawl profile.
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4113 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/CrawlProfileEditor_p.html')
| -rw-r--r-- | htroot/CrawlProfileEditor_p.html | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/htroot/CrawlProfileEditor_p.html b/htroot/CrawlProfileEditor_p.html index 1eb02bc80..cef1768de 100644 --- a/htroot/CrawlProfileEditor_p.html +++ b/htroot/CrawlProfileEditor_p.html @@ -29,6 +29,7 @@ </colgroup> <tr class="TableHeader"> <td><strong>Crawl Thread</strong></td> + <td><strong>Status</strong></td> <td><strong>Start URL</strong></td> <td><strong>Depth</strong></td> <td><strong>Filter</strong></td> @@ -46,6 +47,7 @@ #{crawlProfiles}# <tr class="TableCell#(dark)#Light::Dark#(/dark)#"> <td>#[name]#</td> + <td>#(status)#terminated::active#(/status)#</td> <td><a href="#[startURL]#">#[startURL]#</a></td> <td>#[depth]#</td> <td>#[filter]#</td> @@ -58,12 +60,18 @@ <td>#(indexText)#no::yes#(/indexText)#</td> <td>#(indexMedia)#no::yes#(/indexMedia)#</td> <td>#(remoteIndexing)#no::yes#(/remoteIndexing)#</td> - <td>#(deleteButton)#:: - <form action="CrawlProfileEditor_p.html" method="get" enctype="multipart/form-data"> - <pre><input type="hidden" name="handle" value="#[handle]#" /></pre> - <pre><input type="submit" name="deleteprofile" value="Delete" /></pre> - #(/deleteButton)# - </form> + <td>#(terminateButton)#:: + <form action="CrawlProfileEditor_p.html" method="get" enctype="multipart/form-data"> + <input type="hidden" name="handle" value="#[handle]#" /> + <input type="submit" name="terminate" value="Terminate" /> + </form> + #(/terminateButton)# + #(deleteButton)#:: + <form action="CrawlProfileEditor_p.html" method="get" enctype="multipart/form-data"> + <input type="hidden" name="handle" value="#[handle]#" /> + <input type="submit" name="delete" value="Delete" /> + </form> + #(/deleteButton)# </td> </tr> #{/crawlProfiles}# |
