mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-01-22 05:08:42 -05:00
89b9b2b02a
- instead of pushing urls to other peers, the urls are actively pulled by the peer that wants to do a remote crawl - the remote crawl push process had been removed - a process that adds urls from remote peers had been added - the server-side interface for providing 'limit'-urls exists since 0.55 and works with this version - the list-interface had been removed - servlets using the list-interface had been removed (this implementation did not properly manage double-check) - changes in configuration file to support new pull-process - fixed a bug in crawl balancer (status was not saved/closed properly) - the yacy/urls-protocol was extended to support different networks/clusters - many interface-adoptions to new stack counters git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4232 6c8d7289-2bf4-0310-a012-ef5d649a1542
30 lines
1001 B
HTML
30 lines
1001 B
HTML
<!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]#': Index Control</title>
|
|
#%env/templates/metas.template%#
|
|
</head>
|
|
<body id="IndexControl">
|
|
#%env/templates/header.template%#
|
|
<h2>remote crawl fetch test</h2>
|
|
|
|
<form name="selection" action="rct_p.html" method="post" enctype="multipart/form-data">
|
|
<fieldset><legend>Retrieve remote crawl url list</legend>
|
|
<dl>
|
|
<dt class="TableCellDark">Target Peer:</dt>
|
|
<dd>select <select name="peer">
|
|
#{hosts}#
|
|
<option value="#[hosthash]#">#[hostname]#</option>
|
|
#{/hosts}#
|
|
</select>
|
|
</dd>
|
|
<dt class="TableCellLight"></dt>
|
|
<dd><input type="submit" name="retrieve" value="retrieve" />
|
|
</dd>
|
|
</dl>
|
|
</fieldset>
|
|
</form>
|
|
|
|
#%env/templates/footer.template%#
|
|
</body>
|
|
</html> |