source: other-projects/trunk/realistic-books/packages/AntInstaller/examples/buildtypes/script-graphical-pp/installer/antinstall-config.xml@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

File size: 1.8 KB
Line 
1<?xml version="1.0"?>
2<!DOCTYPE installer PUBLIC "-//tp23 //DTD Ant Installer Config//EN" "http://antinstaller.sf.net/dtd/antinstall-config-0.7.dtd">
3
4
5<!-- defaultImageResource,windowIcon,resource and imageResource load from the classpath
6the installer script should put the locations of these resources no the classpath -->
7<installer
8 ui="swing,text"
9 verbose="true"
10 debug="true"
11 lookAndFeel="greymetal"
12 antialiased="true"
13 name="Test Installer"
14 windowIcon="/resources/gkmain_inv.png"
15 defaultImageResource="/resources/antbar.png"
16 minJavaVersion="1.4"
17 finishButtonText="Build">
18 <page
19 type="input"
20 name="selector"
21 displayText="Select components to install">
22 <comment
23 displayText="Choose the components you want to install"
24 bold="true"/>
25 <target
26 displayText="Core components"
27 target="default"
28 defaultValue="true"
29 force="true"/>
30 <target
31 displayText="Source code"
32 target="tgsrc"
33 defaultValue="true"
34 force="false"/>
35 <target
36 displayText="binary code"
37 target="tgbin"
38 defaultValue="true"
39 force="false"/>
40 <target
41 displayText="OS Specific target"
42 osSpecific="true"
43 target="myOsSpecific"
44 defaultValue="true"
45 force="false"/>
46 </page>
47 <page
48 type="input"
49 name="contrib"
50 displayText="Contributions">
51 <target-select
52 property="colourtarget"
53 defaultValue="tgt1"
54 displayText="Select a target"
55 explanatoryText="only one target available">
56 <option text="target-one" value="tgt1"/>
57 <option text="target-two" value="tgt2"/>
58 <option text="target-three" value="tgt3"/>
59 </target-select>
60 </page>
61 <page
62 type="progress"
63 name="progress"
64 displayText="Installation progress"
65 showTargets="true"
66 target="cleanuptarget">
67 </page>
68</installer>
69
70
Note: See TracBrowser for help on using the repository browser.