...
If multiple packsLang-files were defined, all files will be merged into a single temporary file. This allows refpack files to provide their own internationalization-information.
The following sample shows a <resources> element in an installation file. It specifies resources required for 2 of the panels.
| Code Block | ||||
|---|---|---|---|---|
| ||||
<installation version="5.0"
xmlns:izpack="http://izpack.org/schema/installation"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://izpack.org/schema/installation http://izpack.org/schema/5.0/izpack-installation-5.0.xsd">
<info>
<appname>Test</appname>
<appversion>0.0</appversion>
<appsubpath>myapp</appsubpath>
<javaversion>1.6</javaversion>
</info>
<guiprefs width="800" height="600" resizable="no">
<splash>images/peas_load.gif</splash>
</guiprefs>
<resources>
<res id="InfoPanel.info" src="doc/readme.txt" parse="yes"/>
<res id="LicencePanel.licence" src="legal/License.txt"/>
</resources>
<panels>
<panel classname="HelloPanel"/>
<panel classname="InfoPanel"/>
<panel classname="LicencePanel"/>
<panel classname="TargetPanel"/>
<panel classname="InstallPanel"/>
<panel classname="FinishPanel"/>
</panels>
<packs>
<pack name="Core" required="yes">
<description>The Sample core files.</description>
<file targetdir="$INSTALL_PATH" src="doc/readme.txt"/>
<file targetdir="$INSTALL_PATH" src="legal/License.txt"/>
</pack>
</packs>
</installation> |