1 |
tdb |
1.4 |
<?php |
2 |
pjm2 |
1.1 |
|
3 |
|
|
# The report directory, and the number of days to display. |
4 |
|
|
$reportDirectory = "/home/cut/pjm2/webpages/reports/historical"; |
5 |
pjm2 |
1.2 |
$webRoot = "/~pjm2/reports/historical"; |
6 |
pjm2 |
1.1 |
$maxDaysShown = 7; |
7 |
|
|
|
8 |
|
|
# Page appearance. |
9 |
|
|
$scaleImage = "24hour.gif"; |
10 |
|
|
$lineColor = "#9999ff"; |
11 |
|
|
|
12 |
|
|
# Files to include |
13 |
pjm2 |
1.3 |
$titleHTML = "title.inc.php"; |
14 |
pjm2 |
1.1 |
$bottomHTML = "bottom.inc"; |
15 |
|
|
$machineNameHTML = "machine_name.inc"; |
16 |
|
|
$reportHTML = "report.inc"; |
17 |
|
|
|
18 |
|
|
# What are the names of the report files? |
19 |
|
|
$reportLimitsFile = "i-maxmin.txt"; |
20 |
|
|
$reportChartFile = "i-chart.gif"; |
21 |
|
|
$reportChartDataFile = "i-data.txt"; |
22 |
|
|
|
23 |
|
|
# Submission details. |
24 |
|
|
$formMethod = "GET"; |
25 |
|
|
$thisPage = "browser.php"; |
26 |
|
|
|
27 |
|
|
# Leave this alone unless you know what you're doing ;) |
28 |
|
|
$minFileSize = 33; |
29 |
|
|
|
30 |
pjm2 |
1.2 |
?> |