Usage

A panel for showing HTML-formatted content.

This can be used for instance to show a 'README' content. It presents text of any length. The text is specified by the HTMLInfoPanel.info resource.

To add an image to the HTMLInfoPanel you simply need to add a ressource to your install.xml with an ID decided by you, then you can call this image by refering it by this same ID.

In install.xml:

<resources>
  <res src="logo.jpg" id="GHGHGH"/>
  .....

and in file.html:

<img src="GHGHGH"/>

Note that variables are being substituted in HtmlInfoPanel (e.g., $INSTALL_PATH will be replaced with the installation path).

You can define multiple HTMLInfoPanel with individual HTML texts by giving them a specific id. The resources must be named HTMLInfoPanel.<panelid> :

<resources>
  <res id="HTMLInfoPanel.readme" src="readme.html"/>
  <res id="HTMLInfoPanel.disclaimer" src="disclaimer.html"/>
  ...
</resources>
...
<panels>
  <panel classname="HTMLInfoPanel" id="readme" />
  <panel classname="HTMLInfoPanel" id="disclaimer" />
  ...
</panels>

Since 5.0.7:

For the console installation mode, the info text can be preformatted for displaying using the following features:  

Configuration 

The word wrap and paging feature described above must be activated depending on the format of the info text, they are deactivated by default. 

Panel configuration parameterPossible valuesDefaultDescription
console-text-wordwrap
true | false
false

Set "true" in order to activate word wrapping for the displayed text in console installation mode.

Since: 5.0.7

console-text-paging
true | false
false

Set "true" in order to activate paging for the displayed text in console installation mode.

Since: 5.0.7

Example:

<panels>
    <panel classname="HTMLInfoPanel" id="panel.info">
      <configuration>
        <param name="console-text-paging" value="true" />
        <param name="console-text-wordwrap" value="false" />
      </configuration>
    </panel>
    ...
</panels> 

The two options work independently on each other. If there are both activated, word wrapping is done before calculating the page size for paging.

Labels/Messages

idDescription
InfoPanel.infoThe label text to be shown as panel label above the contents

Resources

idDescription
HTMLInfoPanel.<panel id>HTML file resource - the HTML-formatted text to be shown as panel content. If you don't specify the panel id then pane id is assumed to be info (i.e. the resource id will be HTMLInfoPanel.info).

Limitations

The panel id is not taken into account for the panel label, they key is always taken as InfoPanel.info. The label InfoPanel.info is shared with InfoPanel as well.