Author: nextgens
Date: 2006-07-29 22:30:49 +0000 (Sat, 29 Jul 2006)
New Revision: 9817
Added:
trunk/apps/new_installer/res/welcome.html
Modified:
trunk/apps/new_installer/TODO
trunk/apps/new_installer/install.xml
trunk/apps/new_installer/res/unix/bin/1run.sh
trunk/apps/new_installer/res/windows/bin/1run.cmd
Log:
installer:
* fixes the wording
* adds a welcome page
* remove the 1run.sh file on *NIX
Modified: trunk/apps/new_installer/TODO
===================================================================
--- trunk/apps/new_installer/TODO 2006-07-29 20:20:37 UTC (rev 9816)
+++ trunk/apps/new_installer/TODO 2006-07-29 22:30:49 UTC (rev 9817)
@@ -2,6 +2,5 @@
* l10n
* x86_64 support
* more support for unix
- * Welcome page
* Fix uninstallation hooks
* New packs:
Modified: trunk/apps/new_installer/install.xml
===================================================================
--- trunk/apps/new_installer/install.xml 2006-07-29 20:20:37 UTC (rev
9816)
+++ trunk/apps/new_installer/install.xml 2006-07-29 22:30:49 UTC (rev
9817)
@@ -116,6 +116,7 @@
<include name="wrapper.conf"/>
<include name="freenet.ini"/>
<include name="update.cmd"/>
+ <include name="welcome.html"/>
</fileset>
<parsable targetfile="$INSTALL_PATH/freenet.ini"/>
</pack>
@@ -159,7 +160,7 @@
<executable targetfile="$INSTALL_PATH/bin/update.sh"
type="bin" stage="never" keep="true"/>
<executable
targetfile="$INSTALL_PATH/bin/wrapper-linux-x86-32" type="bin" stage="never"
keep="true"/>
<executable targetfile="$INSTALL_PATH/run.sh"
type="bin" stage="never" keep="true"/>
- <executable targetfile="$INSTALL_PATH/bin/1run.sh"
type="bin" stage="never" keep="true"/>
+ <executable targetfile="$INSTALL_PATH/bin/1run.sh"
type="bin" stage="never"/>
<parsable targetfile="$INSTALL_PATH/bin/1run.sh"/>
<parsable
targetfile="$INSTALL_PATH/bin/install_jSite.sh"/>
<parsable
targetfile="$INSTALL_PATH/bin/install_frost.sh"/>
@@ -174,7 +175,7 @@
</pack>
<pack name="AutoUpdater" required="no">
- <description>A plugin enabling the node to auto-update
over freenet securely. It's advised that you enable it to keep your node
up-to-date.</description>
+ <description>Allow the node to auto-update over freenet
securely. It's advised that you enable it to keep your node
up-to-date.</description>
<singlefile src="res/license/LICENSE.Freenet"
target="$INSTALL_PATH/update"/>
</pack>
<pack name="STUN" required="no">
Modified: trunk/apps/new_installer/res/unix/bin/1run.sh
===================================================================
--- trunk/apps/new_installer/res/unix/bin/1run.sh 2006-07-29 20:20:37 UTC
(rev 9816)
+++ trunk/apps/new_installer/res/unix/bin/1run.sh 2006-07-29 22:30:49 UTC
(rev 9817)
@@ -25,6 +25,7 @@
sleep 10
echo "Starting up a browser"
java -cp bin/browser.jar BareBonesBrowserLaunch "http://127.0.0.1:8888/"
+java -cp bin/browser.jar BareBonesBrowserLaunch
"http://$INSTALL_PATH/welcome.html"
echo "Finished"
Added: trunk/apps/new_installer/res/welcome.html
===================================================================
--- trunk/apps/new_installer/res/welcome.html 2006-07-29 20:20:37 UTC (rev
9816)
+++ trunk/apps/new_installer/res/welcome.html 2006-07-29 22:30:49 UTC (rev
9817)
@@ -0,0 +1,59 @@
+<html>
+ <head>
+ <title>Successful installation of Freenet 0.7!</title>
+ <style type="text/css">
+ p, span, div, td, th, li, h1, h2, h3, h4, h5 {
+ font-family: Arial;
+ font-weight: normal;
+ font-size: 11pt;
+ }
+
+ h2 {
+ text-align: center;
+ font-weight: bold;
+ font-size: 16pt;
+ }
+
+ pre, textarea {
+ font-family: Courier;
+ font-weight: normal;
+ font-size: 8pt;
+ }
+
+ table, pre {
+ margin: 0 0 5px 0;
+ padding: 0;
+ }
+
+ body {
+ margin: 0;
+ padding: 0;
+ background-color: #f0f0f0;
+ }
+
+ a {
+ color: #000000;
+ }
+
+ a:hover {
+ color: #ff0000;
+ }
+
+ </style>
+ </head>
+ <body>
+ <div name="title">
+ <h2>Successful installation of Freenet 0.7!</h2>
+ </div>
+ <p>Congratulations, you have successfully installed a Freenet
0.7 alpha-test node.</p>
+ <p>You can access it <a
href="http://127.0.0.1:8888/">here</a>.</p>
+ <p>These links will take you to FProxy, the web interface to
Freenet. You can also run Frost, a message boards program, which may have been
installed; there may be an icon on your desktop, otherwise have a look at the
directory the node was installed to.</p>
+ <p>You will need to get some darknet (or testnet) connections.
If you know people using Freenet, ask them for their noderefs (this is ideal),
otherwise please join us on IRC on #freenet-refs (or #freenet) on
irc.freenode.net, and we will get you wired in to the network. Note that you
are especially vulnerable to your peers, so if you are paranoid you should only
connect to people you trust.</p>
+ <p>Connecting to a node means you send them your <a
href="http://127.0.0.1:8888/darknet/myref.txt">noderef</a> and they send you
theirs, for you to add on the <a
href="http://127.0.0.1:8888/darknet/">darknet</a> page, when <b>both ends</b>
have added the other they should connect.</p>
+ <br>
+ <div name="greetings">
+ <p>Once again thanks for using Freenet!</p>
+ </div>
+ <p>If you can we would really appreciate it if you could <a
href="http://freenetproject.org/index.php?page=donate">donate here</a> so that
we can continue to employ a full time coder.</p>
+ </body>
+</html>
Modified: trunk/apps/new_installer/res/windows/bin/1run.cmd
===================================================================
--- trunk/apps/new_installer/res/windows/bin/1run.cmd 2006-07-29 20:20:37 UTC
(rev 9816)
+++ trunk/apps/new_installer/res/windows/bin/1run.cmd 2006-07-29 22:30:49 UTC
(rev 9817)
@@ -16,4 +16,5 @@
@ping -n 5 127.0.0.1 >nul
@echo "Spawing up a browser"
@start http://127.0.0.1:8888
+ at start file:///$INSTALL_PATH/welcome.html
@echo "Finished"