source: release-kits/lirk3/bin/ant-installer/examples/buildtypes/script-post-display/installer/antinstall-config.xml@ 14982

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

initial import of LiRK3

File size: 5.5 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<installer
6 ui="swing,text"
7 verbose="true"
8 debug="true"
9 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
10 antialiased="true"
11 name="Test Installer"
12 windowIcon="/resources/gkmain_inv.png"
13 defaultImageResource="/resources/makewavesdawn.png"
14 minJavaVersion="1.4"
15 finishButtonText="Build">
16 <page
17 type="input"
18 name="intro"
19 displayText="Overflow=&quot;true&quot; test"
20 imageResource="/resources/rockstiles.png"
21 overflow="true"
22 postDisplayTarget="antinstaller-intro">
23 <comment
24 displayText="This is a title comment"
25 title="true"/>
26 <comment
27 displayText="This is just a bold comment"
28 bold="true"/>
29 <comment
30 displayText="This is just a comment"/>
31 <comment
32 explanatoryText="This is aload of text that has tabs in it
33and should eventually overflow the page.
34so here is some more waffle and perhaps it is time to download lorum ipsum eh!!
35Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exercitation ulliam corper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem veleum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel willum lunombro dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
36Li Europan lingues es membres del sam familie. Lor separat existentie es un myth. Por scientie, musica, sport etc., li tot Europa usa li sam vocabularium. Li lingues differe solmen in li grammatica, li pronunciation e li plu commun vocabules. Omnicos directe al desirabilitá de un nov lingua franca: on refusa continuar payar custosi traductores. It solmen va esser necessi far uniform grammatica, pronunciation e plu sommun paroles.
37Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental: in fact, it va esser Occidental. A un Angleso it va semblar un simplificat Angles, quam un skeptic Cambridge amico dit me que Occidental es. "
38 displayText=""/>
39 </page>
40 <page
41 type="splash"
42 name="splash"
43 displayText="Splash Pages dont support overflow"
44 imageResource="/resources/antbar.png"
45 splashResource="/resources/example-ai-splash.png"
46 altText="example text splash"
47 postDisplayTarget="antinstaller-splash"/>
48
49 <page
50 type="license"
51 name="license"
52 displayText="License don't need overflow"
53 resource="/LICENSE-ant-install.txt"
54 usePaging="true"
55 imageResource="/resources/antbar.png"
56 postDisplayTarget="antinstaller-license">
57 </page>
58 <page
59 type="input"
60 name="properties.1"
61 displayText="Some pages can be normal"
62 postDisplayTarget="antinstaller-properties.1">
63 <text property="myProperty" defaultValue="blah blah" displayText="Enter a value"/>
64 <text property="myPropertyDefault" defaultValue="${myPropertyDefault}" displayText="Enter a value"/>
65 <checkbox
66 property="isvalue"
67 displayText="Do you want to do this"
68 defaultValue="true"
69 force="false"/>
70 <select
71 property="colour"
72 defaultValue="#FF0000"
73 displayText="Select your favorite colour">
74 <option text="Red" value="#FF0000"/>
75 <option text="Green" value="#00FF00"/>
76 <option text="Blue" value="#0000FF"/>
77 </select>
78 <directory
79 property="installDir"
80 defaultValue="/usr/local/demoapp"
81 defaultValueWin="${env.ProgramFiles}\demoapp"
82 displayText="Select an installation directory"
83 create="true"
84 checkExists="true"/>
85 <file
86 property="webxml"
87 defaultValue="/usr/tomcat/webapps/default/WEB-INF/web.xml"
88 defaultValueWin="C:\tomcat\webapps\default\WEB-INF\web.xml"
89 displayText="Select the web.xml file"
90 checkExists="false"/>
91 <comment
92 displayText="from my.props = ${loaded.prop1}"
93 explanatoryText="this gets expanded too = ${loaded.prop1}"
94 bold="true"/>
95 </page>
96 <page
97 type="input"
98 name="selector"
99 displayText="Overflow page"
100 imageResource="/resources/antbar.png"
101 overflow="true">
102 <select
103 property="lang"
104 defaultValue="uk"
105 displayText="Select your favorite language"
106 explanatoryText="a large-select would work here too">
107 <option text="Spanish" value="es"/>
108 <option text="Catalan" value="ca"/>
109 <option text="English" value="uk"/>
110 <option text="Euskera" value="ek"/>
111 <option text="Mockney" value="??"/>
112 <option text="Giberish" value="¿¿"/>
113 <option text="Love" value="lv"/>
114 <option text="American" value="us"/>
115 </select>
116 </page>
117 <page
118 ifProperty="${lang}=lv"
119 type="input"
120 name="LanguageLove"
121 displayText="Language of Love"
122 postDisplayTarget="antinstaller-LanguageLove">
123 <comment
124 displayText="Aaaarrr, how sweet"
125 bold="true"/>
126 </page>
127 <page
128 ifProperty="${lang}=us"
129 type="input"
130 name="American"
131 displayText="Hey Yankiee"
132 postDisplayTarget="antinstaller-American">
133 <comment
134 displayText="It totaliser and initialise, with Ss you know, but never mind"
135 bold="true"/>
136 </page>
137 <page
138 type="progress"
139 name="progress"
140 displayText="Progress dont need a past"
141 imageResource="/resources/antbar.png"
142 showTargets="false"
143 target="cleanuptarget">
144 </page>
145</installer>
146
147
Note: See TracBrowser for help on using the repository browser.