source: trunk/examples/zoo/sequence/tool2.xml

Last change on this file was 1587, checked in by dkearney, 15 years ago

removing tabs from files and removing output sections from the tool.xml's in zoo examples.
tool.xml's should not include output sections, it is confusing and inefficient for users learning
to use rappture.

File size: 1.1 KB
Line 
1<?xml version="1.0"?>
2<run>
3<tool>
4  <title>sequence</title>
5  <about>Example of a Rappture &lt;sequence&gt; object.
6
7Sequences are used to group together a series of output results.
8
9When you click the Simulate button, the script will generate a sequence of plots.
10  </about>
11  <command>
12    tclsh @tool/sequence2.tcl @driver
13  </command>
14</tool>
15<input>
16  <string id="func">
17    <about>
18      <label>Function</label>
19      <description>Function to plot y=f(x), where x is the range, and A and B are some other parameters, set below.</description>
20    </about>
21    <default>A*x + 2</default>
22  </string>
23  <string id="avals">
24    <about>
25      <label>A values</label>
26      <description>List of values for parameter A in the function above.</description>
27      <diffs>ignore</diffs>
28    </about>
29    <default>0, 1, 2</default>
30  </string>
31  <string id="bvals">
32    <about>
33      <label>B values</label>
34      <description>List of values for parameter B in the function above.</description>
35      <diffs>ignore</diffs>
36    </about>
37    <default></default>
38  </string>
39</input>
40</run>
Note: See TracBrowser for help on using the repository browser.