| 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". |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | pjm2 | 1.1 | <? |
| 2 | |||
| 3 | # Settings for the 'realtime' alert webpages | ||
| 4 | |||
| 5 | $alertDirectory = "/home/proj/co600_10/webroot/alert"; | ||
| 6 | pjm2 | 1.3 | $formMethod = "GET"; |
| 7 | pjm2 | 1.4 | $thisPage = "alerts.php"; |
| 8 | pjm2 | 1.1 | |
| 9 | pjm2 | 1.5 | $titleHTML = "title.inc"; |
| 10 | $bottomHTML = "bottom.inc"; | ||
| 11 | |||
| 12 | pjm2 | 1.7 | $alertLevelNames = Array ( |
| 13 | pjm2 | 1.10 | "Now okay", |
| 14 | pjm2 | 1.6 | "Notice", |
| 15 | "Warning", | ||
| 16 | "Caution", | ||
| 17 | pjm2 | 1.10 | "Critical!" |
| 18 | pjm2 | 1.6 | ); |
| 19 | pjm2 | 1.8 | |
| 20 | $alertLevelColours = Array ( | ||
| 21 | pjm2 | 1.10 | "#009900", |
| 22 | pjm2 | 1.9 | "#990000", |
| 23 | "#ff6666", | ||
| 24 | pjm2 | 1.8 | "#ff6600", |
| 25 | "#ff0000" | ||
| 26 | ); | ||
| 27 | pjm2 | 1.1 | ?> |