| Revision: | 1.10 | 
| Committed: | Fri Mar 16 22:37:41 2001 UTC (24 years, 7 months ago) by pjm2 | 
| Branch: | MAIN | 
| Changes since 1.9: | +3 -3 lines | 
| Log Message: | It wasn't just me that thought the green "Okay" was a bit too bright, then! It's now darker, so more easily read on the white background. Now also reads "Now okay" instead of just "Okay".  | 
| # | Content | 
|---|---|
| 1 | <? | 
| 2 | |
| 3 | # Settings for the 'realtime' alert webpages | 
| 4 | |
| 5 | $alertDirectory = "/home/proj/co600_10/webroot/alert"; | 
| 6 | $formMethod = "GET"; | 
| 7 | $thisPage = "alerts.php"; | 
| 8 | |
| 9 | $titleHTML = "title.inc"; | 
| 10 | $bottomHTML = "bottom.inc"; | 
| 11 | |
| 12 | $alertLevelNames = Array ( | 
| 13 | "Now okay", | 
| 14 | "Notice", | 
| 15 | "Warning", | 
| 16 | "Caution", | 
| 17 | "Critical!" | 
| 18 | ); | 
| 19 | |
| 20 | $alertLevelColours = Array ( | 
| 21 | "#009900", | 
| 22 | "#990000", | 
| 23 | "#ff6666", | 
| 24 | "#ff6600", | 
| 25 | "#ff0000" | 
| 26 | ); | 
| 27 | ?> |