Sidepanel space efficiencies; "paperclips" for index.jsp links; fix news.xml link.
This commit is contained in:
@ -357,7 +357,7 @@ public class SummaryHelper extends HelperBase {
|
||||
Collections.sort(clients, new AlphaComparator());
|
||||
|
||||
StringBuilder buf = new StringBuilder(512);
|
||||
buf.append("<h3><a href=\"i2ptunnel/index.jsp\" target=\"_blank\" title=\"Add/remove/edit & control your client and server tunnels (local destinations).\" title=\"View existing tunnels and tunnel build status.\">Local destinations</a></h3><hr><table class=\"tunnels\">");
|
||||
buf.append("<h3><a href=\"i2ptunnel/index.jsp\" target=\"_blank\" title=\"Add/remove/edit & control your client and server tunnels (local destinations).\" title=\"View existing tunnels and tunnel build status.\">Local destinations</a></h3><hr><div class=\"tunnels\"><table>");
|
||||
|
||||
for (Iterator iter = clients.iterator(); iter.hasNext(); ) {
|
||||
Destination client = (Destination)iter.next();
|
||||
@ -392,7 +392,7 @@ public class SummaryHelper extends HelperBase {
|
||||
buf.append("<td><img src=\"/themes/console/images/local_inprogress.png\" alt=\"Building…\" title=\"Tunnel building in progress…\"></td></tr>\n");
|
||||
}
|
||||
}
|
||||
buf.append("</table><hr>\n");
|
||||
buf.append("</table></div><hr>\n");
|
||||
return buf.toString();
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
2009-10-21 dr|z3d
|
||||
* Enhance index.jsp with "paperclips" for the main links
|
||||
* Tighten sidepanel layout to gain us some vertical screen real estate
|
||||
* Update news.xml with the correct link for Chinese translation page
|
||||
|
||||
2009-10-20 zzz
|
||||
* I2NP: Remove old TunnelCreateMessage and TunnelCreateStatusMessage
|
||||
* Logger: Don't kill the whole JVM if we can't open the log file
|
||||
|
@ -154,7 +154,7 @@ div.routersummary h4 {
|
||||
div.routersummary table {
|
||||
border: 0;
|
||||
text-align: center !important;
|
||||
margin: -5px -4px -4px -4px;
|
||||
margin: -4px -4px -4px -5px !important;
|
||||
width: 185px !important;
|
||||
overflow: hidden;
|
||||
font-size: 8pt;
|
||||
@ -169,18 +169,19 @@ div.routersummary tr {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.tunnels {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
.tunnels tr {
|
||||
padding: 4px 0 !important;
|
||||
margin-left: -6px !important;
|
||||
}
|
||||
|
||||
/*
|
||||
div.routersummary form {
|
||||
margin-top: 8px;
|
||||
}
|
||||
*/
|
||||
|
||||
div.routersummary form {
|
||||
margin: -6px 0 -7px;
|
||||
}
|
||||
|
||||
div.routersummary form:first-child {
|
||||
margin: 6px 0 -4px 0 !important;
|
||||
}
|
||||
|
||||
div.routersummary p {
|
||||
padding: 0;
|
||||
@ -202,20 +203,19 @@ div.routersummary a:hover {
|
||||
}
|
||||
|
||||
div.routersummary td {
|
||||
padding: 2px 4px;
|
||||
padding: 2px 2px 1px 2px;
|
||||
background-image: none !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
div.routersummary tr:nth-child(even) {
|
||||
background-color: #f60;
|
||||
background-image: none !important;
|
||||
div routersummary hr:last-child {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 0px !important;
|
||||
}
|
||||
|
||||
div.routersummarytr:nth-child(odd) {
|
||||
background-color: #f00;
|
||||
background-image: none !important;
|
||||
div.tunnels {
|
||||
padding-top: 2px !important;
|
||||
margin-left: -2px;
|
||||
}
|
||||
|
||||
div.warning {
|
||||
@ -730,7 +730,6 @@ hr:last-child {
|
||||
margin-bottom: 20px !important;
|
||||
}
|
||||
|
||||
|
||||
sidebarlogo {
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -146,7 +146,7 @@ div.routersummary h4 {
|
||||
div.routersummary table {
|
||||
border: 0;
|
||||
text-align: center !important;
|
||||
margin: -4px -4px;
|
||||
margin: -5px -5px;
|
||||
width: 185px !important;
|
||||
overflow: hidden;
|
||||
font-size: 8pt;
|
||||
@ -161,9 +161,11 @@ div.routersummary tr {
|
||||
border: 0 !important;
|
||||
}
|
||||
|
||||
.tunnels {
|
||||
margin-top: -2px !important;
|
||||
margin-left: -7px !important;
|
||||
div.tunnels {
|
||||
margin-top: 5px !important;
|
||||
margin-left: -2px !important;
|
||||
margin-bottom: 3px !important;
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
.tunnels tr {
|
||||
@ -171,7 +173,12 @@ div.routersummary tr {
|
||||
}
|
||||
|
||||
div.routersummary form {
|
||||
margin-top: 8px;
|
||||
margin: -6px 0 -5px 0;
|
||||
}
|
||||
|
||||
div.routersummary form:last-child {
|
||||
margin: 4px 0 -12px 0 !important;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
div.routersummary p {
|
||||
@ -180,7 +187,7 @@ div.routersummary p {
|
||||
|
||||
div.refresh {
|
||||
margin-top: -6px !important;
|
||||
margin-bottom: -8px !important;
|
||||
margin-bottom: 0px !important;
|
||||
padding: 2px 0 0px 0 !important;
|
||||
}
|
||||
|
||||
@ -194,7 +201,7 @@ div.routersummary a:hover {
|
||||
}
|
||||
|
||||
div.routersummary td {
|
||||
padding: 2px 4px;
|
||||
padding: 1px 3px;
|
||||
background-image: none !important;
|
||||
border: 0 !important;
|
||||
}
|
||||
@ -595,6 +602,7 @@ a:active{
|
||||
list-style: url(../images/link.png) !important;
|
||||
padding-bottom: -2px;
|
||||
text-align: justify;
|
||||
line-height: 120% !important;
|
||||
}
|
||||
|
||||
.links li:first-child {
|
||||
|
@ -4,19 +4,19 @@
|
||||
<div class="welcome"><h2>Willkommen zu I2P!</h2></div>
|
||||
<p>Wenn Du gerade I2P gestartet hast, sollten die "Active:" Zahlen links in den nächsten paar Minuten anwachsen und Du siehst dann dort ein "shared clients" lokales Ziel gelistet (falls nicht, <a href="#trouble">siehe Unten</a>). Sobald das erscheint, kannst Du:</p>
|
||||
<ul>
|
||||
<li class="tidylist"><b>"Eepsites" besuchen</b> - In I2P sind anonym gehostete Websites -
|
||||
<li><b>"Eepsites" besuchen</b> - In I2P sind anonym gehostete Websites -
|
||||
Stelle Deinen Browser so ein, über den <b>HTTP proxy: 127.0.0.1 port 4444</b> zu surfen, dann besuche eine Eepsite:<br>
|
||||
<ul class="links">
|
||||
<li class="tidylist"><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> und
|
||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> und
|
||||
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: Webseiten, die aktive Eepsites beobachten</li>
|
||||
<li class="tidylist"><a href="http://forum.i2p/">forum.i2p</a>: Eine sichere und anonyme Verbindung zu <a href="http://forum.i2p2.de/">forum.i2p2.de</a></li>
|
||||
<li class="tidylist"><a href="http://www.i2p2.i2p/index_de.html">www.i2p2.i2p</a> und der Spiegel <a href="http://i2p-projekt.i2p/index_de.html">i2p-projekt.i2p</a>:
|
||||
<li><a href="http://forum.i2p/">forum.i2p</a>: Eine sichere und anonyme Verbindung zu <a href="http://forum.i2p2.de/">forum.i2p2.de</a></li>
|
||||
<li><a href="http://www.i2p2.i2p/index_de.html">www.i2p2.i2p</a> und der Spiegel <a href="http://i2p-projekt.i2p/index_de.html">i2p-projekt.i2p</a>:
|
||||
Sichere und anonyme Verbindung zu <a href="http://www.i2p2.de/index_de.html">www.i2p2.de</a></li>
|
||||
<li class="tidylist"><a href="http://eepsites.i2p/">eepsites.i2p</a>: Eine anonym gehostete Suchseite für Eepsites</li>
|
||||
<li class="tidylist"><a href="http://ugha.i2p/">ugha.i2p</a>: Ugha's Eepsite, ein öffentliches Wiki mit vielen Links</li>
|
||||
<li class="tidylist"><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: Freenet proxy</li>
|
||||
<li class="tidylist"><a href="http://echelon.i2p">echelon.i2p</a>: Software Archive und Informationen zu I2P</li>
|
||||
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: Anonymer Pastebin</li>
|
||||
<li><a href="http://eepsites.i2p/">eepsites.i2p</a>: Eine anonym gehostete Suchseite für Eepsites</li>
|
||||
<li><a href="http://ugha.i2p/">ugha.i2p</a>: Ugha's Eepsite, ein öffentliches Wiki mit vielen Links</li>
|
||||
<li><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: Freenet proxy</li>
|
||||
<li><a href="http://echelon.i2p">echelon.i2p</a>: Software Archive und Informationen zu I2P</li>
|
||||
<li><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: Anonymer Pastebin</li>
|
||||
</ul><br />
|
||||
Es gibt viel mehr Eepsites - folge einfach den Links die du findest,
|
||||
bookmarke Deine Favoriten und besuche sie oft!</li><br />
|
||||
|
@ -4,18 +4,18 @@
|
||||
<div class="welcome"><h2>Bienvenu a I2P!</h2></div>
|
||||
<p>Si vous venez juste de lancer I2P, les chiffres sur la gauche à coté de Active devraient commencer à augmenter dans les prochaines minutes et vous verrez un "Shared client" en destination locale listés sur la gauche (si non, <a href=#trouble>voir plus bas</a>). Une fois qu'ils apparaissent, vous pouvez:</p>
|
||||
<ul>
|
||||
<li class="tidylist"><b>parcourir les "eepsites"</b> - sur I2P il y a des sites web anonymes hébergés - dites à votre navigateur d'utiliser <b>le HTTP proxy a l'adresse 127.0.0.1 port 4444</b>, ensuite vous pouvez naviguer sur les eepsites:<br>
|
||||
<li><b>parcourir les "eepsites"</b> - sur I2P il y a des sites web anonymes hébergés - dites à votre navigateur d'utiliser <b>le HTTP proxy a l'adresse 127.0.0.1 port 4444</b>, ensuite vous pouvez naviguer sur les eepsites:<br>
|
||||
<ul class="links">
|
||||
<li class="tidylist"><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> et
|
||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> et
|
||||
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: listent les eepsites actifs</li>
|
||||
<li class="tidylist"><a href="http://forum.i2p/">forum.i2p</a>: une connection sécurisée et anonyme vers <a href="http://forum.i2p2.de/">forum.i2p2.de</a></li>
|
||||
<li class="tidylist"><a href="http://www.i2p2.i2p/">www.i2p2.i2p</a> et le miroir <a href="http://i2p-projekt.i2p">i2p-projekt.i2p</a>:
|
||||
<li><a href="http://forum.i2p/">forum.i2p</a>: une connection sécurisée et anonyme vers <a href="http://forum.i2p2.de/">forum.i2p2.de</a></li>
|
||||
<li><a href="http://www.i2p2.i2p/">www.i2p2.i2p</a> et le miroir <a href="http://i2p-projekt.i2p">i2p-projekt.i2p</a>:
|
||||
connections sécurisées et anonyme vers <a href="http://www.i2p2.de/">www.i2p2.de</a></li>
|
||||
<li class="tidylist"><a href="http://eepsites.i2p/">eepsites.i2p</a>: un moteur de recherche d'eepsites</li>
|
||||
<li class="tidylist"><a href="http://ugha.i2p/">ugha.i2p</a>: l'eepsite d'ugha, un wiki que chaucun peut éditer ainsi que</li>
|
||||
<li class="tidylist"><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: un proxy Freenet 0.5</li>
|
||||
<li class="tidylist"><a href="http://echelon.i2p">echelon.i2p</a>: archive</li>
|
||||
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: Pastebin anonyme</li>
|
||||
<li><a href="http://eepsites.i2p/">eepsites.i2p</a>: un moteur de recherche d'eepsites</li>
|
||||
<li><a href="http://ugha.i2p/">ugha.i2p</a>: l'eepsite d'ugha, un wiki que chaucun peut éditer ainsi que</li>
|
||||
<li><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: un proxy Freenet 0.5</li>
|
||||
<li><a href="http://echelon.i2p">echelon.i2p</a>: archive</li>
|
||||
<li><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: Pastebin anonyme</li>
|
||||
<br>
|
||||
</ul>
|
||||
Il y a bien plus d'eepsites - suivez juste les liens au départ de ceux sur lesquels vous êtes, mettez-les dans vos favoris et visitez-les souvent!</li><br>
|
||||
|
@ -5,7 +5,7 @@
|
||||
<p>Als je net I2P opgestart hebt, zullen de 'Active:' (Actieve) getallen aan de linkerkant in de komende minuten stijgen, en je zal een "Shared clients" (Gedeelde clients) lokale bestemming zien staan aan de linkerkant (indien niet, <a href=#trouble>zie hieronder</a>). Eenmaal je deze bestemming ziet, kan je:</p>
|
||||
<ul>
|
||||
<li><b>surfen naar "eepsites"</b> - op I2P zijn er anonieme websites - stel je browser in om de <b>HTTP proxy op 127.0.0.1, poort 4444</b> te gebruiken, en surf vervolgens naar een eepsite:<br>
|
||||
<ul>
|
||||
<ul class="links">
|
||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> en
|
||||
<a href="http://perv.i2p/stats.cgi">perv.i2p</a>: sites die lijsten bijhouden van actieve eepsites</li>
|
||||
<li><a href="http://forum.i2p/">forum.i2p</a>: een beveiligde en anonieme verbinding naar <a href="http://forum.i2p2.de/">forum.i2p2.de</a></li>
|
||||
@ -16,23 +16,23 @@
|
||||
<li><a href="http://fproxy.tino.i2p">fproxy.tino.i2p</a>: proxy naar het Freenet-netwerk</li>
|
||||
<li><a href="http://echelon.i2p">echelon.i2p</a>: software
|
||||
archive and information for I2P</li>
|
||||
<li class="tidylist"><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: anonieme Pastebin</li>
|
||||
<li><a href="http://paste.i2p2.i2p">paste.i2p2.i2p</a>: anonieme Pastebin</li>
|
||||
</ul><br>
|
||||
Er zijn nog veel meer eepsites - volg gewoon de links vanaf diegene die je ziet. Voeg de beste toe aan je favorieten, en bezoek ze regelmatig!</li><br>
|
||||
<li><b>surfen op het web</b> - er is momenteel een HTTP "outproxy" in I2P, vastgehaakt aan je eigen HTTP proxy op poort 4444 - stel eenvoudigweg de proxy van je browser in om deze te gebruiken (zoals hierboven voor eepsites) en ga naar een willekeurige normale URL - je verzoeken voor websites worden rondgestuurd via het I2P-network.</li>
|
||||
<li><b>bestanden versturen</b> - er is een geintegreerde <a href="i2psnark/">aangepaste versie</a> van de
|
||||
Er zijn nog veel meer eepsites - volg gewoon de links vanaf diegene die je ziet. Voeg de beste toe aan je favorieten, en bezoek ze regelmatig!</li>
|
||||
<ul><li class="tidylist"><b>surfen op het web</b> - er is momenteel een HTTP "outproxy" in I2P, vastgehaakt aan je eigen HTTP proxy op poort 4444 - stel eenvoudigweg de proxy van je browser in om deze te gebruiken (zoals hierboven voor eepsites) en ga naar een willekeurige normale URL - je verzoeken voor websites worden rondgestuurd via het I2P-network.</li>
|
||||
<li class="tidylist"><b>bestanden versturen</b> - er is een geintegreerde <a href="i2psnark/">aangepaste versie</a> van de
|
||||
<a href="http://www.klomp.org/snark/">Snark</a> <a href="http://www.bittorrent.com/">BitTorrent</a>
|
||||
client.</li>
|
||||
<li><b>anonieme e-mail gebruiken</b> - postman heeft een e-mailsysteem gecreerd, compatibel met normale e-mail
|
||||
<li class="tidylist"><b>anonieme e-mail gebruiken</b> - postman heeft een e-mailsysteem gecreerd, compatibel met normale e-mail
|
||||
clients (POP3 / SMTP) dat toelaat e-mail binnen I2P evenals e-mail van en naar het gewone internet te versturen.
|
||||
Maak je eigen account op <a href="http://hq.postman.i2p/">hq.postman.i2p</a>.
|
||||
In i2p zit een gebundelde <a href="/susimail/susimail">susimail</a>,
|
||||
een webgebaseerde anonimiteits-georienteerde pop3/smtp-client ingesteld om postman zijn e-mailservices te gebruiken.</li>
|
||||
<li><b>anoniem chatten</b> - start je eigen IRC-client op en verbind met
|
||||
<li class="tidylist"><b>anoniem chatten</b> - start je eigen IRC-client op en verbind met
|
||||
de server op <b>127.0.0.1 poort 6668</b>. Dit wijst naar een of twee anoniem gehoste
|
||||
IRC servers, maar zowel jij als zei weten niet waar de andere is.</li>
|
||||
<li><b>anoniem bloggen</b> - neem een kijkje bij <a href="http://syndie.i2p2.de/">Syndie</a></li>
|
||||
<li>en veel meer</li>
|
||||
<li class="tidylist"><b>anoniem bloggen</b> - neem een kijkje bij <a href="http://syndie.i2p2.de/">Syndie</a></li>
|
||||
<li class="tidylist">en veel meer</li>
|
||||
</ul>
|
||||
|
||||
<h2>Wil je je eigen eepsite?</h2>
|
||||
|
@ -9,7 +9,7 @@
|
||||
<div class="welcome"><h2>欢迎使用 I2P!</h2></div>
|
||||
<p>如果 I2P 已经运行,未来的几分钟里控制台左侧的活动节点(Active)数量将会增加,并会出现名为共享客户端("shared clients") 的本地目标。(如果没有,请见 <a href="#trouble">疑难解答</a>)。待出现以上消息后,您可以:</p>
|
||||
<ul>
|
||||
<li><B>浏览 I2P 站点 "eepsites"</B> - I2P 网络内匿名运行的小站 - 您要首先设置浏览器的 <b>HTTP 代理</b> 为 127.0.0.1:4444 然后才能浏览 I2P 站点 - <ul><br>
|
||||
<li><B>浏览 I2P 站点 "eepsites"</B> - I2P 网络内匿名运行的小站 - 您要首先设置浏览器的 <b>HTTP 代理</b> 为 127.0.0.1:4444 然后才能浏览 I2P 站点 - <ul class="links">
|
||||
<li><a href="http://inproxy.tino.i2p/status.php">inproxy.tino.i2p</a> 和 <a href="http://perv.i2p/stats.cgi">perv.i2p</a>: 这两个站点用于跟踪哪些 I2P 站点在线。</li>
|
||||
<li><a href="http://forum.i2p/">forum.i2p</a>:I2P官方论坛 <a href="http://forum.i2p2.de/">forum.i2p2.de</a> 的匿名入口 (个人的I2P站点会在论坛的EEPSITE讨论区发布)</li>
|
||||
<li><a href="http://www.i2p2.i2p/">www.i2p2.i2p</a> 与镜像 <a href="http://i2p-projekt.i2p/">i2p-projekt.i2p</a>: 可以安全匿名的访问I2P官网 <a href="http://www.i2p2.de/">www.i2p2.de</a></li>
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 4;
|
||||
public final static long BUILD = 5;
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||
|
Reference in New Issue
Block a user