source: trunk/examples/graph/tool.xml @ 591

Last change on this file since 591 was 555, checked in by dkearney, 17 years ago

updated examples removing output sections from tool.xml files and making the example code generate the output section using the rappture library put command. this change is made in the example files to help curb people from defining output sections in their tool.xml files. the output sections should really be created inside the program when the output data is ready to be entered.

File size: 698 bytes
Line 
1<?xml version="1.0"?>
2<run>
3    <tool>
4        <title>Graphing Calculator</title>
5        <about>Press Simulate to view results.</about>
6        <command>python @tool/graph.py @driver</command>
7    </tool>
8    <input>
9        <string id="formula">
10            <about>
11                <label>Formula</label>
12                <hints>Example: 2*x + 1</hints>
13            </about>
14            <size>30x5</size>
15        </string>
16        <number id="min">
17            <about> <label>From x</label> </about>
18            <default>0</default>
19        </number>
20        <number id="max">
21            <about> <label>To x</label> </about>
22            <default>1</default>
23        </number>
24    </input>
25</run>
Note: See TracBrowser for help on using the repository browser.