Author: nextgens
Date: 2006-03-04 10:21:34 +0000 (Sat, 04 Mar 2006)
New Revision: 8152
Modified:
trunk/apps/installer/antinstall-config.xml
trunk/apps/installer/build-installer.xml
trunk/apps/installer/build.xml
Log:
Corrected a typo and added a howto page
Modified: trunk/apps/installer/antinstall-config.xml
===================================================================
--- trunk/apps/installer/antinstall-config.xml 2006-03-03 23:49:45 UTC (rev
8151)
+++ trunk/apps/installer/antinstall-config.xml 2006-03-04 10:21:34 UTC (rev
8152)
@@ -31,7 +31,6 @@
>
<option value="0" text="beginner"/>
<option value="1" text="power user"/>
- <option value="2" text="expert"/>
</select>
</page>
<!-- type="license" shows a license page to click through -->
@@ -102,7 +101,7 @@
displayText="Initial node configuration (1)">
<comment
displayText="Enter your node portnumber in the
following field"/>
- <!-- TODO: try to bind it to verify it's free -->
+ <!-- TODO: try to bind it to verify it's free WONTFIX: toad
said : "not needed"-->
<validated
property="portNumber"
displayText="Port :"
@@ -199,23 +198,32 @@
defaultValue="true"
force="false"/>
</page>
-<!--
- TODO: do it :p
<page
- ifProperty="${l33t}==2"
type="input"
- name="config"
- displayText="Node configuration">
- <commen
- displayText="Here is the config file:"/>
- <loadfile property="conf.file"
srcFile="${basedir}/config/freenet.ini"/>
- <text property="conf.content" defaultValue="${conf.file}"/>
-
+ name="final"
+ displayText="Welcome on freenet" >
+ <!-- there is a bug : we need to split the text :-S -->
+ <comment
+ displayText="Congratulation !"
+ title="true"/>
+ <comment
+ displayText="You have sucessfully configured
Freenet"
+ title="true"/>
+ <comment
+ displayText="Now you need to startup your node
and to peer it with people."/>
+ <comment
+ displayText="You can find up to date
informations on how to do it,"/>
+ <comment
+ displayText="browsing to
http://wiki.freenetproject.org/FreenetZeroPointSeven"/>
+ <comment
+ displayText="If you need some support, we would be
pleased to answer your questions on" />
+ <comment
+ displayText="the mailling list (support at
freenetproject.org) or on our IRC channel" />
+ <comment
+ displayText="We wish you an happy experience with
freenet" bold="true"/>
</page>
--->
-
<!-- page type="progress" shows a progress page with the install
button
- Its target is set to cleanuptarget since it is
the last page this target will be run last-->
+ Its target is set to cleanuptarget since it is
the last page this target will be run last -->
<page
type="progress"
name="progress"
@@ -224,4 +232,3 @@
target="cleanuptarget"
/>
</installer>
-
Modified: trunk/apps/installer/build-installer.xml
===================================================================
--- trunk/apps/installer/build-installer.xml 2006-03-03 23:49:45 UTC (rev
8151)
+++ trunk/apps/installer/build-installer.xml 2006-03-04 10:21:34 UTC (rev
8152)
@@ -44,6 +44,4 @@
</javac>
<jar jarfile="./installclasspath/sha1test.jar" basedir="./build"/>
</target>
-
-
</project>
Modified: trunk/apps/installer/build.xml
===================================================================
--- trunk/apps/installer/build.xml 2006-03-03 23:49:45 UTC (rev 8151)
+++ trunk/apps/installer/build.xml 2006-03-04 10:21:34 UTC (rev 8152)
@@ -58,7 +58,7 @@
</target>
<target name="tgext" >
- <echo message="Downloading additionnal components"/>
+ <echo message="Downloading additional components"/>
<java classpath="${basedir}/sha1test.jar" classname="Sha1Test"
failonerror="true" fork="true" resultproperty="freenet-ext.verified"
logError="true">
<arg value="freenet-ext.jar"/>
</java>
@@ -73,7 +73,6 @@
</target>
<target name="cleanuptarget" depends="default">
- <delete dir="${basedir}/temp">
- </delete>
+ <delete dir="${basedir}/temp"/>
</target>
</project>