- Code: Select all
table { border: 1px solid #c0c0c0; }
td, th { border: 1px solid #c0c0c0; text-align: center; vertical-align: middle; }
To the existing <table> tag, the following could be added:
- Code: Select all
cellpadding="5px" cellspacing="0px"
Then a row of <th>s could be added, describing the columns:
- Code: Select all
<tr>
<th>Timestamp</th>
<th>Server Address</th>
<th>Server Name</th>
<th>Server Admin</th>
<th>Associated Client</th>
<th>Server Status</th>
<th>Server Accept Status</th>
<th>Server CPU Load</th>
<th>Server Net Load</th>
<th>Server Fin Wait</th>
<th>Days of Remaining Disk Space</th>
<th>Diff Time</th>
<th>WUs Available</th>
<th>WUs Remaining</th>
<th>WUs Assigned</th>
etc... (I don't know the rest of the columns)
</tr>
And then (assuming it's as easy as I think) they have better-looking log file pages, rather than HTML-formatted CSV files


Anyway, just a suggestion
