diff options
author | Dustin Dauncey <dustin@ddtechsolutions.com> | 2014-09-07 21:27:28 -0700 |
---|---|---|
committer | Dustin Dauncey <dustin@ddtechsolutions.com> | 2014-09-07 21:27:28 -0700 |
commit | 58025a24515cd466187051c118cf640dcc28083f (patch) | |
tree | ee7a05b47395ea47925b6903ef669d3bafd2c434 /index.php | |
parent | ba7510e77e8240c545b9999cc69c721197031153 (diff) |
Update index.php
Added more uniformity with regards to uppercase and lowercase. Shortened some names for easier read. I.e.: "CPU Speed" -> "Speed" because it is in the CPU column and so having "CPU" in their seems very redundant.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -97,7 +97,7 @@ $update = $Config->checkUpdate(); <td id="system-current_users"></td> </tr> <tr> - <td>Server datetime</td> + <td>Server date & time</td> <td id="system-server_date"></td> </tr> </tbody> @@ -149,15 +149,15 @@ $update = $Config->checkUpdate(); <td id="cpu-model"></td> </tr> <tr> - <td>Cores #</td> + <td>Cores</td> <td id="cpu-num_cores"></td> </tr> <tr> - <td>CPU Speed</td> + <td>Speed</td> <td id="cpu-frequency"></td> </tr> <tr> - <td>Cache L2</td> + <td>Cache</td> <td id="cpu-cache"></td> </tr> <tr> @@ -240,19 +240,19 @@ $update = $Config->checkUpdate(); <table class="firstBold"> <tbody> <tr> - <td class="w20p">Used RAM</td> + <td class="w20p">Used</td> <td><div class="progressbar-wrap"><div class="progressbar" style="width: 0%;">0%</div></div></td> </tr> <tr> - <td class="w20p">Used RAM</td> + <td class="w20p">Used</td> <td id="memory-used"></td> </tr> <tr> - <td class="w20p">Free RAM</td> + <td class="w20p">Free</td> <td id="memory-free"></td> </tr> <tr> - <td class="w20p">Total RAM</td> + <td class="w20p">Total</td> <td id="memory-total"></td> </tr> </tbody> @@ -272,19 +272,19 @@ $update = $Config->checkUpdate(); <table class="firstBold"> <tbody> <tr> - <td class="w20p">Used Swap</td> + <td class="w20p">Used</td> <td><div class="progressbar-wrap"><div class="progressbar" style="width: 0%;">0%</div></div></td> </tr> <tr> - <td class="w20p">Used Swap</td> + <td class="w20p">Used</td> <td id="swap-used"></td> </tr> <tr> - <td class="w20p">Free Swap</td> + <td class="w20p">Free</td> <td id="swap-free"></td> </tr> <tr> - <td class="w20p">Total Swap</td> + <td class="w20p">Total</td> <td id="swap-total"></td> </tr> </tbody> @@ -358,4 +358,4 @@ $update = $Config->checkUpdate(); </body> -</html>
\ No newline at end of file +</html> |