Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Usage

This panel allows the user to modify the default installation path on the target computer.

Example definition
<panel classname="TargetPanel">
   <validator classname="com.izforge.izpack.installer.validator.ConditionValidator"/>
</panel>

 

Once chosen, the IzPack variable INSTALL_PATH is set to the user's choice.

Configuration

Use the nested <configuration> (see Panels) element to customize the TargetPanel for your purposes:

NameValueDefault ValueDescription
ShowCreateDirectoryMessagetrue|falsetrue

Whether to show the "Target directory will be created" dialog if a directory does not exist.

Since: 5.0 RC5

ShowExistingDirectoryWarningtrue|falsetrue

Whether to show the "The directory already exists! Are you sure you want to install here and possibly overwrite existing files?" warning dialog, if the given directory already exists.

Deactivating this might be convenient for providing update installers.

Since: 5.0 RC5

Example:

Example of customzing TargetPanel
<panel classname="TargetPanel">
	<validator classname="com.izforge.izpack.installer.validator.ConditionValidator"/>
	<configuration>
		<!-- Don't show warning if target directory already exists -->
		<ShowExistingDirectoryWarning>false</ShowExistingDirectoryWarning>
	</configuration>
</panel>

 

IzPack offers the possibility to set a list of default installation directories depending on the target installation platform. When the compiled installer is executed, IzPack chooses the one matching the assigned platform. This can be achieved by explicitly setting variables with the prefix: TargetPanel.dirIzPack recognizes this as a built-in variable which can be user-modified.

 For a more detailed description see Setting Default Installation Directories.

Built-in VariableDescriptionDefault Value

TargetPanel.dir.<platform_or_os>

(see Setting Default Installation Directories)

The platform-specific default installation path, which can be overridden by the user in TargetPanel.

(gathered automatically according to the OS and platform)

ShowCreateDirectoryMessageWhether to show the "Target directory will be created" dialog if a directory does not exist. 
You should not use this variable any longer, use the <configuration> option with the same name see above.
true

Translations

The text for these keys is specified in language resource files as described in the section on Internationalizing resources.

KeyDefault (English)Description
TargetPanel.headlineTarget Path

The headline of the panel (the one with the white background).

GUI only: This is a standard translation for all type of graphical panels, if the <guiprefs> modifier useHeadingForSummary is set "yes".This has no effect on console installations.

TargetPanel.summaryCaptionInstallation Path

The summary caption text of the panel.

GUI only: This is a standard translation for all type of graphical panels, if the <guiprefs> modifier useHeadingForSummary is not set or different to "yes". This has no effect on console installations.

TargetPanel.infoSelect the installation path: The label text above the target directory edit field.
TargetPanel.browseBrowse...The label text of the directory chooser button.
TargetPanel.warnThe directory already exists! Are you sure you want to install here and possibly overwrite existing files?Warning message if the directory specified already exists.
TargetPanel.open??????????????
TargetPanel.incompatibleInstallationIncompatible installation detected. Uninstall it first, or choose another directory to install to.Warning message if the specified location is not suitable for a new installation.
TargetPanel.empty_targetYou have not specified a target location! Is this correct?Warning message given when the user has not selected a target but has pressed OK.
TargetPanel.notwritableThis directory can not be written! Please choose another directory!Warning that IzPack can not create files in the selected location.
TargetPanel.createdirThe target directory will be created: 
TargetPanel.nodirThis file is not a directory! Please choose a directory! 
PathInputPanel.intro Intro text with an explanation, rarely used, is empty by default.
PathInputPanel.extendedIntro Mult-line intro text with an explanation, rarely used, not set by default.
PathInputPanel.requiredThe chosen directory should exist. 
PathInputPanel.required.forModificationInstallationThe chosen directory should exist.The alternative for PathInputPanel.required, if the IzPack variable modify.izpack.install is set "true" and an .installationinformation file exists in the target folder.
See the  InstallationTypePanel for more installation how the modify.izpack.install variable is automatically set.
PathInputPanel.notValidThe chosen directory does not contain the required product. 


To change the text "Select the installation path:  " to "Select the folder where My Application 2.1 should be installed: ",  TargetPanel.info should be specified in a language resource file for each language supported.

 

install.xml
<resources>
    <res id="TargetPanelText.xml" src="TargetPanelText.xml"/>
    <res id="TargetPanelText.xml_fra" src="TargetPanelText.xml_fra"/>
</resources>


The TargetPanelText.xml file which is the default language resource, should look something like this:


CustomLangPack.xml
<langpack>
	<str id="TargetPanel.info" txt="Select the folder where $APP_NAME $APP_VER should be installed."/>
</langpack>

A similar TargetPanelText.xml.fra file needs to be created to specify the French translation.

  • No labels