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.8
Committed: Fri Mar 23 18:19:55 2001 UTC (23 years, 2 months ago) by pjm2
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.7: +7 -0 lines
Log Message:
Page has a description of what it is used for (i.e. setting up
non-interactive public displays of i-scream alerts).

File Contents

# Content
1 <? include("public_config.inc.php"); ?>
2
3 <? include($titleHTML); ?>
4
5 <p>&nbsp;</p>
6
7 <p>
8 This page lets you set up a non-interactive public display terminal
9 for showing alerts from the i-scream monitoring system.
10 </p>
11
12 <p>&nbsp;</p>
13
14 <form method="<?=$formMethod?>" action="<?=$destination?>">
15 <table border="1" align="center" style="border: 1;">
16 <tr>
17 <td valign="top" align="right">Machine name:</td>
18 <td valign="top"><input type="text" name="machine" value="ALL"></td>
19 <td valign="top"><font size="2">The machine to produce a report for (or 'ALL' for all machines)</font></td>
20 </tr>
21 <tr>
22 <td valign="top" align="right">Base font size:</td>
23 <td valign="top">
24 <select name="fontsize">
25 <option value="2">2</option>
26 <option value="3">3</option>
27 <option value="4">4</option>
28 <option value="5">5</option>
29 <option value="6" selected>6</option>
30 <option value="7">7</option>
31 </select>
32 </td>
33 <td valign="top"><font size="2">Only affects reports formatted with the 'small' option set</font></td>
34 </tr>
35 <tr>
36 <td valign="top" align="right">Auto scroll speed:</td>
37 <td valign="top">
38 <select name="scroll">
39 <option value="0">OFF</option>
40 <option value="1">1</option>
41 <option value="2">2</option>
42 <option value="3">3</option>
43 <option value="4">4</option>
44 <option value="5">5</option>
45 <option value="6">6</option>
46 <option value="7">7</option>
47 <option value="8">8</option>
48 <option value="9">9</option>
49 </select>
50 </td>
51 <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>
52 </tr>
53 <tr>
54 <td valign="top" align="right">Page update interval:</td>
55 <td valign="top">
56 <select name="refresh">
57 <option value="">NEVER</option>
58 <option value="10">10 seconds</option>
59 <option value="20">20 seconds</option>
60 <option value="30">30 seconds</option>
61 <option value="60">1 minute</option>
62 <option value="300">5 minutes</option>
63 </select>
64 </td>
65 <td valign="top"><font size="2">Set the meta refresh tag to refresh the page periodically.</font></td>
66 </tr>
67 <tr>
68 <td valign="top" align="right">Hide user input form:</td>
69 <td valign="top"><input type="checkbox" name="hideform" checked></td>
70 <td valign="top"><font size="2">Hide the input box that is used to select other machines</font></td>
71 </tr>
72 <tr>
73 <td valign="top" align="right">Page width:</td>
74 <td valign="top"><input type="text" name="pagewidth" value="600"></td>
75 <td valign="top">&nbsp;</td>
76 </tr>
77 <tr>
78 <td valign="top" align="right">Small mode:</td>
79 <td valign="top"><input type="checkbox" name="small" checked></td>
80 <td valign="top"><font size="2">Set this to show only the most important information about each alert</font></td>
81 </tr>
82 <tr>
83 <td valign="top">&nbsp;</td>
84 <td valign="top">
85 <input type="submit">
86 </td>
87 <td valign="top">&nbsp;</td>
88 </tr>
89 </table>
90 </form>
91
92 <? include($bottomHTML); ?>