ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/public/public.php
Revision: 1.4
Committed: Thu Mar 22 18:11:32 2001 UTC (23 years, 6 months ago) by pjm2
Branch: MAIN
Changes since 1.3: +24 -15 lines
Log Message:
The form now allows users to submit their preferences.  Descriptions of
each field can be found to the right of the input areas.

File Contents

# Content
1 <? include("public_config.inc.php"); ?>
2
3 <? include($titleHTML); ?>
4
5 <p>&nbsp;</p>
6
7 <form method="<?=$formMethod?>" action="<?=$destination?>">
8 <table border="1" align="center" style="border: 1;">
9 <tr>
10 <td valign="top" align="right">Machine name:</td>
11 <td valign="top"><input type="text" name="machine"></td>
12 <td valign="top"><font size="2">The machine to produce a report for (or 'ALL' for all machines)</font></td>
13 </tr>
14 <tr>
15 <td valign="top" align="right">Base font size:</td>
16 <td valign="top">
17 <select name="fontsize">
18 <option value="2">2</option>
19 <option value="3">3</option>
20 <option value="4">4</option>
21 <option value="5">5</option>
22 <option value="6">6</option>
23 <option value="7">7</option>
24 </select>
25 </td>
26 <td valign="top"><font size="2">Only affects reports formatted with the 'small' option set</font></td>
27 </tr>
28 <tr>
29 <td valign="top" align="right">Auto scroll window:</td>
30 <td valign="top"><input type="checkbox" name="scroll"></td>
31 <td valign="top"><font size="2">Cause the report to automatically scroll down slowly - only for Internet Explorer 4.0+ browsers</font></td>
32 </tr>
33 <tr>
34 <td valign="top" align="right">Hide user input form:</td>
35 <td valign="top"><input type="checkbox" name="hideform"></td>
36 <td valign="top"><font size="2">Hide the input box that is used to select other machines</font></td>
37 </tr>
38 <tr>
39 <td valign="top" align="right">Page width:</td>
40 <td valign="top"><input type="text" name="pagewidth" value="600"></td>
41 <td valign="top">&nbsp;</td>
42 </tr>
43 <tr>
44 <td valign="top" align="right">Small mode:</td>
45 <td valign="top"><input type="checkbox" name="small"></td>
46 <td valign="top"><font size="2">Set this to show only the most important information about each alert</font></td>
47 </tr>
48 <tr>
49 <td valign="top">&nbsp;</td>
50 <td valign="top">
51 <input type="submit">
52 </td>
53 <td valign="top">&nbsp;</td>
54 </tr>
55 </table>
56 </form>
57
58 <? include($bottomHTML); ?>