See: http://www.yacy-forum.de/viewtopic.php?t=516
- removing NIO from server/serverCore.java because of massive problems
with socket close issues
*) Adding support for remote port forwarding via sch
@Orbiter: Please take a look into
- hello.java
- server/serverCore.java.publicIP()
- yacy/yacyClient.java.publishMySeed(...)
*) Making startup loading of additional content parsers more failsafe
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@281 6c8d7289-2bf4-0310-a012-ef5d649a1542
<targetname="dist"depends="all,parsers,seedUploaders,yacySOAP,singleExtensionFile" description="Compiling sources and make a release file ...">
<targetname="dist"depends="all,parsers,seedUploaders,yacySOAP,portForwarding,singleExtensionFile" description="Compiling sources and make a release file ...">
@ -37,8 +37,9 @@ Your settings are protected by a password.
#[version]##(versioncomment)#:: - the latest public version is #[latestVersion]#. Click here to <ahref="http://www.yacy.net/yacy/Download.html">download</a> it.#(/versioncomment)#
Virgin - You have not yet published your peer, because you have not yet used the proxy. If you configured your proxy setting (see online: <ahref="http://www.yacy.net/yacy/Installation.html#wininst">configure your browser's proxy settings</a> and go online by browsing the internet) you must first load any page through the proxy to prove that this works. With this status you are not allowed to search other peers.
::
@ -71,15 +72,15 @@ Senior - You are running a server and you support the global internet index, whi
Principal - You are senior and you publish your seed-list to a ftp account which can be retrieved at #[seedURL]#. You can of course <ahref="index.html">search the internet</a> using the other peers' global index on your own search page.
#(/peerStatus)#
</td></tr>
<trclass="TableCellDark"><td>Other peers</td><td>#(otherPeers)#not online.::#[num]# other peers online.#(/otherPeers)#</td></tr>
<trclass="TableCellLight"><td>Other peers</td><td>#(otherPeers)#not online.::#[num]# other peers online.#(/otherPeers)#</td></tr>
<trclass="TableCellDark"><td>Seed server</td><td>
#(seedServer)#
Disabled. To enable this you need a ftp account where you can upload files to a web space. If you do that, you become a YaCy root server. You can configure your account details on the <ahref="Settings_p.html">Settings page</a>.
::
Enabled: Updating periodically to server #[seedFTPServer]#
#(/seedServer)#
</td></tr>
<trclass="TableCellDark"><td>Auto-popup on start-up</td><td>
<trclass="TableCellLight"><td>Auto-popup on start-up</td><td>
#(popup)#
Disabled. To enable this again please use the <ahref="Settings_p.html">Settings</a> page
seedDB.mySeed.put("Uptime",""+uptime);// the number of minutes that the peer is up in minutes/day (moving average MA30)
seedDB.mySeed.put("LCount",""+sb.lUrlSize());// the number of links that the peer has stored (LURL's)
seedDB.mySeed.put("ICount",""+sb.cacheSizeMin());// the minimum number of words that the peer has indexed (as it says)
seedDB.mySeed.put("SCount",""+seedDB.sizeConnected());// the number of seeds that the peer has stored
seedDB.mySeed.put("CCount",""+(((int)((seedDB.sizeConnected()+seedDB.sizeDisconnected()+seedDB.sizePotential())*60.0/(uptime+1.01))*100)/100.0));// the number of clients that the peer connects (as connects/hour)
seedDB.mySeed.put("Uptime",""+uptime);// the number of minutes that the peer is up in minutes/day (moving average MA30)
seedDB.mySeed.put("LCount",""+sb.lUrlSize());// the number of links that the peer has stored (LURL's)
seedDB.mySeed.put("ICount",""+sb.cacheSizeMin());// the minimum number of words that the peer has indexed (as it says)
seedDB.mySeed.put("SCount",""+seedDB.sizeConnected());// the number of seeds that the peer has stored
seedDB.mySeed.put("CCount",""+(((int)((seedDB.sizeConnected()+seedDB.sizeDisconnected()+seedDB.sizePotential())*60.0/(uptime+1.01))*100)/100.0));// the number of clients that the peer connects (as connects/hour)