<?xml version="1.0" encoding="UTF-8"?>

<ruleset>

  <rule name=".">
    <requires name="initialize"/>
    <requires name="license"/>
    <requires condition="license_choice=reject" name="terminate"/>
    <requires condition="license_choice=accept" name="install"/>
  </rule>

  <rule name="initialize">
    <step type="dialog">
      <in>
Welcome to the DeployTool test installation script.
Copyright (c) 2000, Todd Sundsted.
      </in>
      <in>Next &gt;</in>
    </step>
  </rule>

  <rule name="license">
    <step type="license">
      <in>
This software is Copyright (c) 2000, Todd Sundsted.
Use of this software implies agreement with the terms
of this license.  Yada, yada, yada...
      </in>
      <out name="license_choice"/>
    </step>
  </rule>

  <rule name="terminate">
    <step type="dialog">
      <in>Goodbye.</in>
      <in>OK</in>
    </step>
  </rule>

  <rule name="install">
    <step type="locate">
      <in>Locate Directory</in>
      <inout name="path"></inout>
    </step>
    <step type="unjar">
      <in>file:///mnt/zip/cvs/java1/work/deploytool/applet.jar</in>
      <in name="path"/>
    </step>
    <step type="prompt">
      <in>Type text here (1):</in>
      <inout name="result1"></inout>
    </step>
  </rule>

</ruleset>

