Statistics
| Revision:

root / import / ext3D / trunk / install-extension3d / IzPack / sample / listener / install.xml @ 15280

History | View | Annotate | Download (2.15 KB)

1
<?xml version="1.0" encoding="iso-8859-1"  ?>
2
<!DOCTYPE installation PUBLIC "" "file:///P:/IzPack_HEAD/izpack-src/src/dtd/installation.dtd" >
3

    
4
<!-- 
5
        @author  Klaus Bartz
6
-->
7

    
8
<installation version="1.0">
9

    
10
    <!-- 
11
        The info section.
12
        The meaning of the tags should be natural ...
13
    -->
14
    <info>
15
        <appname>CustomActionDemo</appname>
16
        <appversion>1.47</appversion>
17
        <authors>
18
            <author name="Klaus Bartz" email="info@myCompany.de"/>
19
        </authors>
20
        <url>http://www.myCompany.com/</url>
21
    </info>
22
    
23
    <!-- 
24
        The gui preferences indication.
25
        Sets the installer window to 640x480. It will not be able to change the size.
26
    -->
27
    <guiprefs width="640" height="480" resizable="no"/>
28
    
29
    <!-- 
30
        The locale section.
31
        Asks here to include the English and German langpacks.
32
    -->
33
    <locale>
34
        <langpack iso3="eng"/>
35
        <langpack iso3="deu"/>
36
    </locale>
37
    
38
    <!-- 
39
        The panels section.
40
        We indicate here which panels we want to use. The order will be respected.
41
    -->
42
    <panels>
43
        <panel classname="HelloPanel"/>
44
        <panel classname="TargetPanel"/> 
45
        <panel classname="InstallPanel"/>
46
        <panel classname="FinishPanel"/>
47
    </panels>
48
    
49
    <listeners>
50
            <listener compiler="ChmodCompilerListener" installer="ChmodInstallerListener"  >
51
            </listener>
52
    </listeners>
53
    <!-- 
54
        The packs section.
55
        We specify here our packs.
56
    -->
57
    <packs>
58
        <pack name="Unix core" required="yes">
59
            <description>Required pack for Unix</description>
60
            <fileset dir="test1" targetdir="$INSTALL_PATH/test1" >
61
                    <additionaldata key="permission.file" value="0666"/>
62
                    <additionaldata key="permission.dir" value="0711"/>
63
            </fileset>
64
            <fileset dir="test2" targetdir="$INSTALL_PATH/test2" >
65
                    <additionaldata key="permission.file" value="0444"/>
66
                    <additionaldata key="permission.dir" value="0777"/>
67
            </fileset>
68
        </pack>
69
    </packs>
70
    
71
   
72
</installation>