source: other-projects/trunk/realistic-books/packages/AntInstaller/examples/buildtypes/script-regex/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.4 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<!--
4RegEx test script
5-->
6<!-- defaultImageResource,windowIcon,resource and imageResource load from the classpath
7the installer script should put the locations of these resources no the classpath -->
8<installer
9 ui="swing,text"
10 verbose="true"
11 debug="true"
12 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
13 antialiased="true"
14 name="Test Installer"
15 windowIcon="/resources/gkmain_inv.png"
16 defaultImageResource="/resources/antbar.png"
17 minJavaVersion="1.4"
18 finishButtonText="Build">
19 <page
20 type="input"
21 name="properties"
22 displayText="Regular expression test">
23 <text property="myProperty" defaultValue="blah blah" displayText="unvalidated"/>
24 <validated
25 property="validatedtext.1"
26 displayText="[a-z][a-z].*"
27 defaultValue="ab1"
28 regex="[a-z][a-z].*"/>
29 <validated
30 property="validatedtext.2"
31 displayText="[a-z][a-z]\..*"
32 defaultValue="ab.1"
33 regex="[a-z][a-z]\..*"/>
34 <validated
35 property="validatedtext.3"
36 displayText="Anything but not nothing"
37 defaultValue="anything"
38 regex=".+"/>
39 </page>
40 <page
41 type="progress"
42 name="progress"
43 displayText="Installation progress"
44 showTargets="false"
45 target="cleanuptarget">
46 </page>
47</installer>
48
49
Note: See TracBrowser for help on using the repository browser.