Revision: | 1.2 |
Committed: | Thu Mar 8 21:40:45 2001 UTC (23 years, 8 months ago) by pjm2 |
Branch: | MAIN |
Changes since 1.1: | +3 -2 lines |
Log Message: | Modified the config so that the report data comes from the group file space. The latest.php file now also allows the report file name to be configured... this is because Tim wrote the first lot with the wrong filename ;) |
# | Content |
---|---|
1 | <?php |
2 | |
3 | # The report directory, and the data file name. |
4 | $latestDirectory = "/usr/local/proj/co600_10/webroot/latest"; |
5 | $latestData = "latest_dir"; |
6 | |
7 | # Page appearance. |
8 | $lineColor = "#9999ff"; |
9 | |
10 | # Files to include |
11 | $titleHTML = "title.inc"; |
12 | $bottomHTML = "bottom.inc"; |
13 | |
14 | # Submission details. |
15 | $formMethod = "GET"; |
16 | $thisPage = "latest.php"; |
17 | |
18 | # Images |
19 | $barImage = "bar.gif"; |
20 | $scaleImage = "scale.gif"; |
21 | $max_width = 300; |
22 | |
23 | ?> |