The different PAGE blocks each describe one dialog page for the WarpIN installation process. The user switches between the pages by using the buttons on the bottom of the WarpIN window. WarpIN uses decimal indices to identify the different pages and to switch between them.

This can only be specified at the root level in the script, i.e. in the WARPIN block. See the "Installation Scripts" page for an overview where this element should be placed.

Syntax:

<PAGE
    INDEX="i"
    TYPE="{TEXT|README|CONTAINER|CONFIGURE}"
>
    <TEXT> ... </TEXT>
    [<README ...> ... </README>]
        <!-- if TYPE=README -->
    [<NEXTBUTTON ...> ... </NEXTBUTTON>]
        <!-- if non-standard or last button  -->
</PAGE>

In between the <PAGE> and </PAGE> tags, you must specifiy the text which is to be displayed, using the <TEXT> ... </TEXT> elements. Note that regardless of the TYPE attribute, all pages allow you to specify text in addition to the controls which are displayed by WarpIN.

Attributes:


INDEX="i"
Required. This specifies the index of the page, which must be a decimal number >= 1. Using this index, WarpIN will identify pages when the "Next" button is pressed (see the NEXTBUTTON element description).
TYPE="{TEXT|README|CONTAINER|CONFIGURE}"
Required. This specifies what the page will do. type must be one of the following:

A typical order of pages in an installation script would be (see Minimium Script for a sample):
  1. An introductory TEXT page saying hello;
  2. maybe a README page displaying the license agreement for your product;
  3. then the CONTAINER page with the packages;
  4. then the CONFIGURE page.