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.7
Committed: Fri Mar 23 17:28:06 2001 UTC (23 years, 2 months ago) by pjm2
Branch: MAIN
Changes since 1.6: +2 -2 lines
Log Message:
Altered the captions by the refresh options

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" value="ALL"></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" selected>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 speed:</td>
30 <td valign="top">
31 <select name="scroll">
32 <option value="0">OFF</option>
33 <option value="1">1</option>
34 <option value="2">2</option>
35 <option value="3">3</option>
36 <option value="4">4</option>
37 <option value="5">5</option>
38 <option value="6">6</option>
39 <option value="7">7</option>
40 <option value="8">8</option>
41 <option value="9">9</option>
42 </select>
43 </td>
44 <td valign="top"><font size="2">Cause the report to automatically scroll down slowly, then reload itself - only for Internet Explorer 4.0+ browsers</font></td>
45 </tr>
46 <tr>
47 <td valign="top" align="right">Page update interval:</td>
48 <td valign="top">
49 <select name="refresh">
50 <option value="">NEVER</option>
51 <option value="10">10 seconds</option>
52 <option value="20">20 seconds</option>
53 <option value="30">30 seconds</option>
54 <option value="60">1 minute</option>
55 <option value="300">5 minutes</option>
56 </select>
57 </td>
58 <td valign="top"><font size="2">Set the meta refresh tag to refresh the page periodically.</font></td>
59 </tr>
60 <tr>
61 <td valign="top" align="right">Hide user input form:</td>
62 <td valign="top"><input type="checkbox" name="hideform" checked></td>
63 <td valign="top"><font size="2">Hide the input box that is used to select other machines</font></td>
64 </tr>
65 <tr>
66 <td valign="top" align="right">Page width:</td>
67 <td valign="top"><input type="text" name="pagewidth" value="600"></td>
68 <td valign="top">&nbsp;</td>
69 </tr>
70 <tr>
71 <td valign="top" align="right">Small mode:</td>
72 <td valign="top"><input type="checkbox" name="small" checked></td>
73 <td valign="top"><font size="2">Set this to show only the most important information about each alert</font></td>
74 </tr>
75 <tr>
76 <td valign="top">&nbsp;</td>
77 <td valign="top">
78 <input type="submit">
79 </td>
80 <td valign="top">&nbsp;</td>
81 </tr>
82 </table>
83 </form>
84
85 <? include($bottomHTML); ?>