source: release-kits/lirk3/installer/antinstall-config.xml@ 15097

Last change on this file since 15097 was 15097, checked in by oranfry, 16 years ago

a few i18n tests

File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE installer PUBLIC "-//tp23 //DTD Ant Installer Config//EN" "http://antinstaller.sf.net/dtd/antinstall-config-0.8.dtd">
3<installer
4 ui="swing,text"
5 verbose="true"
6 debug="false"
7 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
8 name="Greenstone3Installer"
9 windowIcon="/resources/gkmain_inv.png"
10 defaultImageResource="/resources/makewavesdawn.png"
11 minJavaVersion="1.4">
12
13 <!-- each page element represents a page of the installer -->
14 <page
15 type="input"
16 name="intro"
17 displayText="绿宝石蜯件">
18 </page>
19
20 <!-- type="license" shows a license page to click through -->
21 <page
22 type="license"
23 name="license"
24 displayText="License conditions"
25 resource="/LICENSE.txt">
26 </page>
27
28 <!-- type="input" shows a list of editable options for the installer -->
29 <page
30 type="input"
31 name="destination"
32 displayText="Install Destination">
33
34 <directory
35 property="installDir"
36 defaultValue="/research/oranfry/sandbox/Greenstone3.03a"
37 defaultValueWin="${env.ProgramFiles}\Greenstone3"
38 displayText="Select an installation directory"
39 create="true"/>
40
41 </page>
42
43 <page type="input" name="tomcatports" displayText="Tomcat Ports">
44
45 <comment name="tomcatportsdescription" displayText="Please select the ports which the web server (Apache Tomcat) will use will use. It is usually safe to accept the defaults by just clicking Next. The exception is when you are running other services on these ports - if this is the case, select some free ports and click Next."/>
46
47 <text property="tomcat.port" defaultValue="8080" displayText="Tomcat Port"/>
48 <text property="tomcat.shutdown.port" defaultValue="8005" displayText="Tomcat Shutdown Port"/>
49 </page>
50
51
52 <page
53 type="input"
54 name="selector"
55 displayText="Components to install">
56 <comment
57 name="choosecomponents"
58 displayText="Choose the components you want to install"
59 bold="true"/>
60 <target
61 displayText="Core components"
62 target="default"
63 defaultValue="true"
64 force="true"/>
65
66 <target
67 displayText="Source code"
68 target="tgsrc"
69 defaultValue="false"/>
70
71 </page>
72
73 <page
74 type="progress"
75 name="progress"
76 displayText="Installation progress"
77 showTargets="false"
78 target="cleanuptarget">
79 </page>
80
81</installer>
Note: See TracBrowser for help on using the repository browser.