source: release-kits/wirk2/installer/antinstall-config.xml@ 17824

Last change on this file since 17824 was 17824, checked in by oranfry, 15 years ago

validate the password in installer

File size: 2.6 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
4<installer
5 ui="swing,text"
6 verbose="true"
7 debug="false"
8 lookAndFeel="org.tp23.jgoodies.plaf.plastic.PlasticXPLookAndFeel"
9 name="Greenstone@version@ Installer"
10 windowIcon="/resources/icon.png"
11 defaultImageResource="/resources/header.png"
12 minJavaVersion="1.4">
13
14 <!-- select language page -->
15 <page type="input" name="language-selector" displayText="">
16 <comment name="language-selector-explanation"/>
17 <select property="language" defaultValue="en" displayText="" useAsLocale="true">
18 <option value="en" text="English"/>
19 <option value="fr" text="Français (French)"/>
20 <option value="es" text="Español (Spanish)"/>
21 <option value="ru" text="русскОй язык (Russian)"/>
22 <option value="zh" text="äž­æ–‡ (Chinese)"/>
23 </select>
24 </page>
25
26 <!-- simple intro page -->
27 <page type="input" name="intro" displayText="">
28 <comment name="welcome-message"/>
29 </page>
30
31 <!-- type="license" shows a license page to click through -->
32 <page type="license" name="license" resource="/LICENSE.txt" displayText="" />
33
34 <!-- install destination page -->
35 <page type="input" name="destination" displayText="">
36
37 <directory property="installDir"
38 defaultValue="${env.ProgramFiles}\Greenstone2"
39 create="true"
40 displayText="" />
41
42 </page>
43
44 <!-- start binary release -->
45 <page type="input" name="selector" displayText="">
46 <comment name="choose-components"/>
47
48 <target
49 target="Looking For Previous Installation"
50 diskRequirement="x"
51 defaultValue="true"
52 displayText="x"
53 force="true"
54 hidden="true"/>
55
56 <target
57 target="Installing Core System"
58 diskRequirement="@component.size.core@"
59 displayText=""
60 defaultValue="true"
61 force="true"/>
62
63 <target
64 target="Installing Start Menu Shortcuts"
65 diskRequirement="~10 KB"
66 defaultValue="true"
67 displayText=""/>
68
69 <!-- start bundled components -->
70 <target
71 target="Installing ImageMagick"
72 diskRequirement="@component.size.imagemagick@"
73 defaultValue="true"
74 displayText=""/>
75
76 <target
77 target="Installing Ghostscript"
78 diskRequirement="@component.size.ghostscript@"
79 defaultValue="true"
80 displayText=""/>
81 <!-- end bundled components -->
82
83 </page>
84
85 <page type="input" name="admin-password" displayText="">
86 <comment name="admin-password-expl"/>
87 <validated property="admin.password" defaultValue="" displayText="" regex="^.{3,20}$"/>
88 </page>
89 <!-- end binary release -->
90
91 <page type="progress" name="progress" showTargets="true" displayText=""/>
92
93</installer>
Note: See TracBrowser for help on using the repository browser.