Add multilanguage support for index.jsp
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
package net.i2p.router.web;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Locale;
|
||||
|
||||
import net.i2p.router.RouterContext;
|
||||
import net.i2p.util.FileUtil;
|
||||
|
||||
@ -7,6 +10,7 @@ public class ContentHelper {
|
||||
private String _page;
|
||||
private int _maxLines;
|
||||
private boolean _startAtBeginning;
|
||||
private String _lang;
|
||||
private RouterContext _context;
|
||||
/**
|
||||
* Configure this bean to query a particular router context
|
||||
@ -28,6 +32,7 @@ public class ContentHelper {
|
||||
public void setStartAtBeginning(String moo) {
|
||||
_startAtBeginning = Boolean.valueOf(""+moo).booleanValue();
|
||||
}
|
||||
public void setLang(String l) { _lang = l; }
|
||||
|
||||
public void setMaxLines(String lines) {
|
||||
if (lines != null) {
|
||||
@ -41,14 +46,14 @@ public class ContentHelper {
|
||||
}
|
||||
}
|
||||
public String getContent() {
|
||||
String str = FileUtil.readTextFile(_page, _maxLines, _startAtBeginning);
|
||||
String str = FileUtil.readTextFile(filename(), _maxLines, _startAtBeginning);
|
||||
if (str == null)
|
||||
return "";
|
||||
else
|
||||
return str;
|
||||
}
|
||||
public String getTextContent() {
|
||||
String str = FileUtil.readTextFile(_page, _maxLines, _startAtBeginning);
|
||||
String str = FileUtil.readTextFile(filename(), _maxLines, _startAtBeginning);
|
||||
if (str == null)
|
||||
return "";
|
||||
else {
|
||||
@ -66,4 +71,27 @@ public class ContentHelper {
|
||||
return sb.append("</pre>").toString();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert file.ext to file_lang.ext if it exists.
|
||||
* Get lang from either the cgi lang param or from the default locale.
|
||||
*/
|
||||
private String filename() {
|
||||
int lastdot = _page.lastIndexOf('.');
|
||||
if (lastdot <= 0)
|
||||
return _page;
|
||||
String lang = _lang;
|
||||
if (lang == null || lang.length() <= 0) {
|
||||
lang = Locale.getDefault().getLanguage();
|
||||
if (lang == null || lang.length() <= 0)
|
||||
return _page;
|
||||
}
|
||||
if (lang.equals("en"))
|
||||
return _page;
|
||||
String newname = _page.substring(0, lastdot) + '_' + lang + _page.substring(lastdot);
|
||||
File newfile = new File(newname);
|
||||
if (newfile.exists())
|
||||
return newname;
|
||||
return _page;
|
||||
}
|
||||
}
|
||||
|
@ -31,6 +31,7 @@ if (System.getProperty("router.consoleNonce") == null) {
|
||||
<jsp:useBean class="net.i2p.router.web.ContentHelper" id="contenthelper" scope="request" />
|
||||
<jsp:setProperty name="contenthelper" property="page" value="docs/readme.html" />
|
||||
<jsp:setProperty name="contenthelper" property="maxLines" value="300" />
|
||||
<jsp:setProperty name="contenthelper" property="lang" value="<%=request.getParameter("lang")%>" />
|
||||
<jsp:getProperty name="contenthelper" property="content" />
|
||||
</div>
|
||||
|
||||
|
@ -268,6 +268,7 @@
|
||||
<copy file="core/perl/i2ptest.sh" todir="pkg-temp/scripts/" />
|
||||
<mkdir dir="pkg-temp/docs" />
|
||||
<copy file="readme.html" todir="pkg-temp/docs/" />
|
||||
<copy file="readme_de.html" todir="pkg-temp/docs/" />
|
||||
<!-- polecat: please put your modified toolbar.html in installer/resources/toolbar.html
|
||||
and uncomment the following -->
|
||||
<!-- <copy file="installer/resources/toolbar.html" todir="pkg-temp/docs/" /> -->
|
||||
@ -345,6 +346,9 @@
|
||||
<copy file="build/i2ptunnel.war" todir="pkg-temp/webapps/" />
|
||||
<copy file="build/routerconsole.war" todir="pkg-temp/webapps/" />
|
||||
<copy file="build/addressbook.war" todir="pkg-temp/webapps/" />
|
||||
<!-- New readme_de.html file - For one release only, remove after 0.6.5 is out -->
|
||||
<mkdir dir="pkg-temp/docs" />
|
||||
<copy file="readme_de.html" todir="pkg-temp/docs/" />
|
||||
</target>
|
||||
<target name="prepupdateRouter" depends="buildrouter">
|
||||
<delete dir="pkg-temp" />
|
||||
|
@ -1,3 +1,11 @@
|
||||
2008-10-14 zzz
|
||||
* index.jsp: Add multilanguage support for readme.html;
|
||||
add readme_de.html (thanks devzero!)
|
||||
* configupdate.jsp, configadvanced.jsp:
|
||||
Disable word wrap in textareas
|
||||
* install*.txt: Update for 1.5
|
||||
* summary.jsp: Remove failing peer count
|
||||
|
||||
2008-10-10 zzz
|
||||
* Profiles: Reduce reject penalty in
|
||||
capacity calculation to avoid a congestion collapse
|
||||
|
@ -1,3 +1,4 @@
|
||||
<p align=right><font size="-1">English | <a href="/index.jsp?lang=de">Deutsch</a></font></p>
|
||||
<p>If you've just started I2P, the Active: numbers on the left should start to
|
||||
grow over the next few minutes and you'll see a "shared clients" local destination listed
|
||||
on the left (if not, <a href="#trouble">see below</a>). Once those show up,
|
||||
|
72
readme_de.html
Normal file
72
readme_de.html
Normal file
@ -0,0 +1,72 @@
|
||||
<p align=right><font size="-1"><a href="/index.jsp?lang=en">English</a> | Deutsch</font></p>
|
||||
<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><b>"Eepsites" besuchen</b> - In I2P sind anonym gehostete Websites -
|
||||
Stelle Deinen Browser so ein, über den <b>HTTP proxy: localhost port 4444</b> zu surfen, dann besuche eine Eepsite -
|
||||
<ul>
|
||||
<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><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/">www.i2p2.i2p</a> und der Spiegel <a href="http://i2p-projekt.i2p">i2p-projekt.i2p</a>:
|
||||
Sichere und anonyme Verbindung zu <a href="http://www.i2p2.de/">www.i2p2.de</a></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>
|
||||
</ul>
|
||||
Es gibt viel mehr Eepsites - folge einfach den Links die du findest,
|
||||
bookmarke Deine Favoriten und besuche sie oft!</li>
|
||||
<li><b>Im Internet surfen</b> - Es gibt einen HTTP "outproxy" in I2P in Deinem
|
||||
HTTP proxy auf Port 4444 - Konfiguriere Deine Browser's Proxy Einstellung
|
||||
darauf (siehe Oben) und besuche jede normale URL - Deine Anfrage wird
|
||||
durch das I2P Netzwerk geroutet.</li>
|
||||
<li><b>Daten austauschen</b> - Es gibt eine <a href="i2psnark/">Portierung</a> des
|
||||
<a href="http://www.klomp.org/snark/">Snark</a> <a href="http://www.bittorrent.com/">BitTorrent</a>
|
||||
Clients.</li>
|
||||
<li><b>Anonyme Email</b> - Postman hat ein Email System aufgebaut, das
|
||||
kompatibel mit normalen Email-Clients (POP3 / SMTP) ist, welches erlaubt,
|
||||
Email innerhalb von I2P sowie Email von und zum normalen Internet zu
|
||||
schicken! Hole Dir Dein Emailkonto auf <a href="http://hq.postman.i2p/">hq.postman.i2p</a>.
|
||||
Im Verbund dazu haben wir <a href="/susimail/susimail">susimail</a>, ein
|
||||
Internet-Browser basierter, anonymer pop3/smtp Client, fertig eingerichtet
|
||||
für Postman's Email Service.</li>
|
||||
<li><b>Anonymer Chat</b> - Starte Deinen Lieblings IRC Client und verbinde ihn
|
||||
mit dem Server <b>localhost Port 6668</b>. Das richtet Dich auf auf einen
|
||||
von zwei anonym gehosteten IRC Servern, aber weder Du noch die wissen wer
|
||||
der Andere ist.</li>
|
||||
<li><b>Anonymer Blog</b> - Probiere <a href="http://syndie.i2p2.de/">Syndie</a> aus</li>
|
||||
<li>und Vieles mehr</li>
|
||||
</ul>
|
||||
|
||||
<h2>Willst Du Deine eigene Epsite?</h2>
|
||||
|
||||
<p>Wir bringen Software mit, damit Du Deine eigene Eepsite laufen lassen kannst
|
||||
- Eine
|
||||
<a href="http://jetty.mortbay.org/">Jetty</a> Instanz horcht auf
|
||||
<a href="http://localhost:7658/">http://localhost:7658/</a>. Platziere einfach
|
||||
Deine Dateien in das <code>eepsite/docroot/</code> Verzeichnis (oder jedes
|
||||
standart JSP/Servlet <code>.war</code> unter <code>eepsite/webapps</code>,
|
||||
oder CGI Scripte unter <code>eepsite/cgi-bin</code>) und schon sind sie
|
||||
verfügbar. Nach dem Start des <a href="/i2ptunnel/">Eepsite tunnels</a>
|
||||
der darauf zeigt ist Deine Eepsite für Andere verfügbar.
|
||||
Detailierte Instruktionen zum Start Deiner eigenen Eepsite sind auf
|
||||
<a href="http://localhost:7658/">Deine temporäre Eepsite</a>.
|
||||
</p>
|
||||
|
||||
<h2><a name="trouble">Troubleshooting</a></h2>
|
||||
|
||||
<p>Sei geduldig - Am Anfang des ersten Starts kann I2P lange brauchen, da es
|
||||
dann Verbindungen sucht. Falls nach 30 Minuten Deine
|
||||
"Active: connected/recent" Zahl noch immer weniger als 10 Verbindungen
|
||||
aufzeigt, solltest Du Port 8887 auf Deiner Firewall öffnen um
|
||||
für bessere Verbindung zu sorgen.
|
||||
Wenn Du gar keine Eepsites bekommst (auch nicht
|
||||
<a href="http://www.i2p2.i2p/">www.i2p2.i2p</a>), stelle sicher, dass Dein
|
||||
Internet Browser auf den Proxy localhost Port 4444 eingestellt ist.
|
||||
Vielleicht möchtest Du auch die Informationen lesen, die auf der
|
||||
<a href="http://www.i2p2.i2p/">I2P website</a> sind, Nachrichten lesen und
|
||||
ins <a href="http://forum.i2p2.de/">I2P discussion forum</a> posten, oder
|
||||
chatten auf #i2p or #i2p-chat beim IRC auf
|
||||
<a href="irc://irc.freenode.net/#i2p">irc.freenode.net</a>, irc.postman.i2p
|
||||
oder irc.freshcoffee.i2p (die verbunden sind).</p>
|
||||
|
||||
<p><b>Übrigens, diese Seite kannst Du ändern indem Du "docs/readme_de.html" editierst</b></p>
|
@ -17,7 +17,7 @@ import net.i2p.CoreVersion;
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.548 $ $Date: 2008-06-07 23:00:00 $";
|
||||
public final static String VERSION = "0.6.4";
|
||||
public final static long BUILD = 4;
|
||||
public final static long BUILD = 5;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
Reference in New Issue
Block a user