<?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="ContinueDialog" title="Continue Execution" description="Specify how you want to continue the execution">

    <InfoText name="Info"><![CDATA[<html>
    The execution is about to continue with the <i>$(ACTION)</i> phase. You may now do one of the following:
    <ul>
      <li><i>Repeat phase from the point it stopped.</i> Repeat the phase from the exact point where it stopped.]]>
      <if test="'$(INIT_ALLOWED)' == 'true'">
      <![CDATA[      
        <li><i>Repeat phase.</i> In some cases, you may want to repeat the whole phase.
      ]]>
      </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="ContinueDialogOption">
      <INPUT>
        <LABEL>Repeat phase from the point it stopped</LABEL>
        <VARIABLE>repeat</VARIABLE>
      </INPUT>
      <if test="'$(INIT_ALLOWED)' == 'true'">
        <INPUT>
          <LABEL>Repeat phase</LABEL>
          <VARIABLE>init</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>
