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

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

added german language to intallers

File size: 2.9 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="de" text="Deutsch (German)"/>
22 <option value="ru" text="русскОй язык (Russian)"/>
23 <option value="zh" text="äž­æ–‡ (Chinese)"/>
24 </select>
25 </page>
26
27 <!-- start binary release -->
28 <page type="input" name="intro" displayText="">
29 <comment name="welcome-message"/>
30 </page>
31 <!-- end binary release -->
32
33 <!-- start source release -->
34 <page type="input" name="intro" displayText="" target="Source Release">
35 <comment name="welcome-message"/>
36 </page>
37 <!-- end source release -->
38
39 <!-- type="license" shows a license page to click through -->
40 <page type="license" name="license" resource="/LICENSE.txt" displayText="" />
41
42 <!-- install destination page -->
43 <page type="input" name="destination" displayText="">
44
45 <directory property="installDir"
46 defaultValue="${env.ProgramFiles}\Greenstone2"
47 create="true"
48 displayText="" />
49
50 </page>
51
52 <!-- start binary release -->
53 <page type="input" name="selector" displayText="">
54 <comment name="choose-components"/>
55
56 <target
57 target="Looking For Previous Installation"
58 diskRequirement="x"
59 defaultValue="true"
60 displayText="x"
61 force="true"
62 hidden="true"/>
63
64 <target
65 target="Installing Core System"
66 diskRequirement="@component.size.core@"
67 displayText=""
68 defaultValue="true"
69 force="true"/>
70
71 <target
72 target="Installing Start Menu Shortcuts"
73 diskRequirement="~10 KB"
74 defaultValue="true"
75 displayText=""/>
76
77 <!-- start bundled components -->
78 <target
79 target="Installing ImageMagick"
80 diskRequirement="@component.size.imagemagick@"
81 defaultValue="true"
82 displayText=""/>
83
84 <target
85 target="Installing Ghostscript"
86 diskRequirement="@component.size.ghostscript@"
87 defaultValue="true"
88 displayText=""/>
89 <!-- end bundled components -->
90
91 </page>
92
93 <page type="input" name="admin-password" displayText="">
94 <comment name="admin-password-expl"/>
95 <validated property="admin.password" defaultValue="" displayText="" regex="^.{3,20}$"/>
96 </page>
97 <!-- end binary release -->
98
99 <page type="progress" name="progress" showTargets="true" displayText=""/>
100
101</installer>
Note: See TracBrowser for help on using the repository browser.