<?xml version="1.0" ?> 
<!-- <!DOCTYPE jump-container SYSTEM "Dialog.dtd"> removed because there is no choose and when etc. thing declared there -->
<!-- In prepare unit when you sent exit to the server the modules dialog is shown 
     In the upgrade unit when you sent exit to the server the program is exiting because there are no modules there
     That is why the when tags are added and different composites are shown
-->
<jump-container type="dialog">
  <Composite name="ActionErrorDialog" title="Continue Upgrade After an Error" description="Specify how you want to continue the upgrade after an error">

    <InfoText name="Info"><![CDATA[<html>
    An error has occurred during the execution of the <i>$(ACTION)</i> phase.<br> 

    <div style="background-color: #dde8ef"><font face="Helvetica, Arial">
    $(ERROR_TEXT)<br>
    </font></div>

    <p>You may now do one of the following:
    <ul>
      <li><i>Repeat phase from point of failure.</i> After you have corrected the error, you can repeat the phase from the exact point where the error occurred.]]>
      <if test="'$(INIT_ALLOWED)' == 'true'">
      <![CDATA[      
        <li><i>Repeat phase.</i> After you have corrected the error, you may want to repeat the whole phase.
      ]]>
      </if>
      <if test="'$(IGNORE_ALLOWED)' == 'true'">
      <![CDATA[      
      <li><i>Ignore error and go to next phase.</i> You must obtain a password from SAP Support to use this option.
      ]]>
      </if>
      <if test="'$(JUMP_ALLOWED)' == 'true'">
      <![CDATA[      
      <li><i>Jump to another phase.</i> You can choose the phase you want to jump to from a list of all phases that belong to the current module. You must obtain a password from SAP Support to use this option.  
      ]]> 
      </if> 
      <![CDATA[
      <li><i>Exit program.</i>
    </ul>
    </html>]]></InfoText>
    <InfoText name="Info">What do you want to do?</InfoText>
    <ExclusiveSelection name="ActionErrorOption">
      <INPUT>
        <LABEL>Repeat phase from point of failure</LABEL>
        <VARIABLE>repeat</VARIABLE>
      </INPUT>
      <if test="'$(INIT_ALLOWED)' == 'true'">
        <INPUT>
          <LABEL>Repeat phase</LABEL>
          <VARIABLE>init</VARIABLE>
        </INPUT>
      </if>
      <if test="'$(IGNORE_ALLOWED)' == 'true'">
        <INPUT>
          <LABEL>Ignore error and go to next phase (requires password)</LABEL>
          <VARIABLE>ignore</VARIABLE>
        </INPUT>
      </if>
      <if test="'$(JUMP_ALLOWED)' == 'true'">
        <INPUT>
          <LABEL>Jump to another phase (requires password)</LABEL>
          <VARIABLE>jump</VARIABLE>
        </INPUT>
      </if>
      <INPUT>
        <LABEL>Exit program</LABEL>
        <VARIABLE>exit</VARIABLE>
      </INPUT>
    </ExclusiveSelection>

    <NavigationButtonGroup name="Buttons" default="Continue"> 
      <BUTTON name="Continue" enabled="true">#Continue</BUTTON>
      <VARIABLE>BUTTON</VARIABLE>
    </NavigationButtonGroup>

  </Composite>
</jump-container>
