Author: nextgens
Date: 2006-03-31 14:46:27 +0000 (Fri, 31 Mar 2006)
New Revision: 8393
Modified:
trunk/apps/installer/antinstall-config.xml
trunk/apps/installer/build.xml
Log:
installer: cosmetic change
Modified: trunk/apps/installer/antinstall-config.xml
===================================================================
--- trunk/apps/installer/antinstall-config.xml 2006-03-31 13:47:12 UTC (rev
8392)
+++ trunk/apps/installer/antinstall-config.xml 2006-03-31 14:46:27 UTC (rev
8393)
@@ -45,11 +45,13 @@
type="input"
name="properties"
displayText="Required install options">
+ <comment
+ displayText="Select an installation directory
(all data in it might be lost!)"/>
<directory
property="installDir"
defaultValue="${env.HOME}/freenet"
defaultValueWin="${env.ProgramFiles}\freenet"
- displayText="Select an installation directory
(all data in it will be lost!)"
+ displayText="directory :"
checkExists="true"
create="true"/>
<comment
Modified: trunk/apps/installer/build.xml
===================================================================
--- trunk/apps/installer/build.xml 2006-03-31 13:47:12 UTC (rev 8392)
+++ trunk/apps/installer/build.xml 2006-03-31 14:46:27 UTC (rev 8393)
@@ -48,7 +48,7 @@
<condition property="Name" else="${nodeName}"
value="MyFirstFreenetNode">
<equals arg1="${nodeName}" arg2="MyFirstFreenetNode" />
</condition>
- <condition property="bandwidth" value="${bw}" else="15">
+ <condition property="Bandwidth" value="${bw}" else="15">
<isset property="bw" />
</condition>
<condition property="DataStoreSize" value="${dsSize}" else="1">
@@ -76,7 +76,7 @@
<isset property="enableConsole" />
</condition>
<echo message="Name: ${Name}"/>
- <echo message="Bandwidth: ${bandwidth}K"/>
+ <echo message="Bandwidth: ${Bandwidth}K"/>
<echo message="Port: ${Port}"/>
<echo message="myHostName: ${myHostName}"/>
<echo message="DataStoreSize: ${DataStoreSize}G"/>
@@ -95,7 +95,7 @@
<replace file="${installDir}/freenet.ini">
<replacefilter token="@hostname@"
value="${myHostName}"/>
- <replacefilter token="@bandwidth@"
value="${bandwidth}"/>
+ <replacefilter token="@bandwidth@"
value="${Bandwidth}"/>
<replacefilter token="@dsSize@"
value="${DataStoreSize}"/>
<replacefilter token="@portnumber@" value="${Port}"/>
<replacefilter token="@nodename@" value="${Name}"/>