From 116762ebcee335ba44236f31653836ce5cc229d2 Mon Sep 17 00:00:00 2001 From: zzz Date: Wed, 7 Oct 2009 17:12:00 +0000 Subject: [PATCH] doc and eepsite index updates --- INSTALL-headless.txt | 5 +++-- checklist.txt | 1 + history.txt | 4 ++++ installer/resources/eepsite_index.html | 6 ++++-- installer/resources/eepsite_index_de.html | 6 ++++-- router/java/src/net/i2p/router/RouterVersion.java | 2 +- 6 files changed, 17 insertions(+), 7 deletions(-) diff --git a/INSTALL-headless.txt b/INSTALL-headless.txt index d4b066d73..cd9b44a1a 100644 --- a/INSTALL-headless.txt +++ b/INSTALL-headless.txt @@ -3,9 +3,10 @@ Headless I2P installation instructions 1) java -jar i2pinstall.exe -console (you've already done this) This will run the installer in text mode, including running the postinstall.sh -script, which will start the router and launch a browser. +script. After that, you may run 'sh i2prouter start' +which will start the router and attempt to launch a browser. -If you do not have an X server running, the browser launch will fail, and +If you do not have an X server running, the browser launch will probably fail, and you may use: lynx http://localhost:7657/index.jsp to configure the router. diff --git a/checklist.txt b/checklist.txt index 3feaf2a4f..dd97e29df 100644 --- a/checklist.txt +++ b/checklist.txt @@ -27,6 +27,7 @@ Build and tag: ant pkg mtn ci mtn tag h: i2p-0.7.xx + mtn cert t:i2p-0.7.xx branch i2p.i2p.release Sync with mtn.i2p2.i2p Create a signed update file with: diff --git a/history.txt b/history.txt index 524b521ea..051a75341 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,7 @@ +2009-10-07 zzz + * Doc and eepsite_index updates + * UDP: Remove port number from thread names + 2009-10-04 zzz * i2psnark: Fix NPE caused by last checkin (thanks wuxia!) diff --git a/installer/resources/eepsite_index.html b/installer/resources/eepsite_index.html index 3c6252ed5..83f1612c6 100644 --- a/installer/resources/eepsite_index.html +++ b/installer/resources/eepsite_index.html @@ -7,7 +7,8 @@

Welcome to your eepsite

(Deutsch)

-

This is your eepsite - simply edit the files under ./eepsite/docroot/ +

This is your eepsite - simply edit the files under + ~/.i2p/eepsite/docroot/ (Linux) or %APPDATA%\I2P\eepsite\docroot\ (Windows) and they'll be reachable by others once you follow the instructions below. In I2P, eepsites are addressed using a 'key', which is represented as a really long Base64 string. (The 'key' is somewhat analogous to an IP address, and @@ -50,7 +51,8 @@

  • In your browser, enter in your eepsite name (something.i2p) and you should be right back here. Hopefully it worked.
  • Before you tell the world about your new eepsite, you should add some content. - Go to i2p/eepsite/docroot and copy this document (index.html) to help.html so you can refer to it later. + Go to ~/.i2p/eepsite/docroot/ (Linux) or %APPDATA%\I2P\eepsite\docroot\ (Windows) + and copy this document (index.html) to help.html so you can refer to it later. Now edit index.html and add content, pictures, and whatever you would like to share.
  • Now it's time to add your eepsite to an I2P address book hosted by a site such as stats.i2p. diff --git a/installer/resources/eepsite_index_de.html b/installer/resources/eepsite_index_de.html index 36b991052..0c3489cde 100644 --- a/installer/resources/eepsite_index_de.html +++ b/installer/resources/eepsite_index_de.html @@ -8,7 +8,8 @@

    Willkommen zu Ihrer Eepsite!

    -

    Diese ist Ihre Eepsite, Ihre Web-Präsens über I2P. Editieren Sie einfach die Dateien unter i2p/eepsite/docroot/ +

    Diese ist Ihre Eepsite, Ihre Web-Präsens über I2P. Editieren Sie einfach die Dateien unter +~/.i2p/eepsite/docroot/ (Linux) oder %APPDATA%\I2P\eepsite\docroot\ (Windows) und nachdem Sie den Anweisungen weiter unten gefolgt sind, werden Sie – vertreten durch Ihre Eepsite – von anderen im I2P-Netz und, soweit verfügbar, über private „Out-Proxys“ weltweit erreichbar sein.

    @@ -93,7 +94,8 @@ Adresse hat sich geändert.
  • Bevor Sie der Welt von Ihrer neuen Eepsite berichten sollte sie auch über ein wenig Inhalt verfügen. Begeben Sie sich in das -Verzeichnis „i2p/Eepsite/docroot“ und benennen Sie dieses Dokument von „index.html“ nach „hilfe.html“ um, so können Sie später darauf zurück greifen. Erstellen Sie Ihre eigene „index.html“ und füllen diese mit Inhalten, Bildern oder was auch immer Sie anderen hierüber mitteilen wollen.
  • +Verzeichnis „~/.i2p/eepsite/docroot/“ (Linux) oder „%APPDATA%\I2P\eepsite\docroot\“ (Windows) +und benennen Sie dieses Dokument von „index.html“ nach „hilfe.html“ um, so können Sie später darauf zurück greifen. Erstellen Sie Ihre eigene „index.html“ und füllen diese mit Inhalten, Bildern oder was auch immer Sie anderen hierüber mitteilen wollen.

    Die Eepsite öffentlich ankündigen

    diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index b9e65a109..1b7510860 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -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 = 22; + public final static long BUILD = 23; /** for example "-test" */ public final static String EXTRA = "-rc"; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;