source: release-kits/mark2/installer/antinstall-config.xml@ 17576

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

more HCI changes to the installer: an animated activity indicator during install, better target names for the greenstone2 installers

File size: 2.0 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"/>
20 <option value="es" text="Español"/>
21 <option value="ru" text="русскОй язык"/>
22 <option value="zh" text="äž­æ–‡"/>
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="/usr/local/Greenstone2"
39 create="true"
40 displayText="" />
41
42 </page>
43
44 <page type="input" name="selector" displayText="">
45 <comment name="choose-components"/>
46
47 <target
48 target="Installing Core System"
49 diskRequirement="@component.size.core@"
50 defaultValue="true"
51 force="true"
52 displayText=""/>
53
54 <target
55 target="Installing Source Code"
56 diskRequirement="@component.size.sourcecode@"
57 defaultValue="false"
58 displayText=""/>
59
60 </page>
61
62 <page type="input" name="admin-password" displayText="">
63 <comment name="admin-password-expl"/>
64 <text property="admin.password" defaultValue="" displayText=""/>
65 </page>
66
67 <page type="progress" name="progress" showTargets="false" displayText=""></page>
68
69</installer>
Note: See TracBrowser for help on using the repository browser.