OLD | NEW |
1 <!-- Bandwidth info --> | 1 <!-- Bandwidth info --> |
| 2 <style> |
| 3 .data-reduction-proxy-view-events-details { |
| 4 background-color: rgb(220,220,220); |
| 5 } |
| 6 </style> |
2 <div id=bandwidth-view-tab-content class=content-box> | 7 <div id=bandwidth-view-tab-content class=content-box> |
3 <table class="styled-table"> | 8 <h2>Data Reduction Proxy Status</h2> |
| 9 <ul id=data-reduction-proxy-view-status> |
| 10 <li>Status: <span id="data-reduction-proxy-enabled"></span></li> |
| 11 <li>Primary proxy: <span id="data-reduction-proxy-primary"></span></li> |
| 12 <li>Secondary proxy: <span id="data-reduction-proxy-secondary"></span></li> |
| 13 <li>Probe status: <span id="data-reduction-proxy-probe-status"></span></li> |
| 14 <li id="data-reduction-proxy-bypass-state-container">Bypass details: |
| 15 <span jsdisplay="typeof $this == 'undefined'">Unknown</span> |
| 16 <ul jsdisplay="typeof $this != 'undefined'"> |
| 17 <li>Origin URL: <span jscontent="origin_url"></span></li> |
| 18 <li>Duration (seconds): <span jscontent="bypass_duration_seconds"></span
></li> |
| 19 <li>Bypass reason: <span jscontent="bypass_reason"></span></li> |
| 20 </ul> |
| 21 </ul> |
| 22 <a href="#proxy">View current proxy configuration</a> |
| 23 |
| 24 <h4>Recent events</h4> |
| 25 <div id=data-reduction-proxy-view-events-content> |
| 26 <table class="styled-table"> |
| 27 <thead> |
| 28 <tr> |
| 29 <th>Time</th> |
| 30 <th>Action</th> |
| 31 </tr> |
| 32 <tr> |
| 33 <th colspan=2>Details</th> |
| 34 </tr> |
| 35 </thead> |
| 36 <tbody id=data-reduction-proxy-view-events-tbody> |
| 37 </tbody> |
| 38 </table> |
| 39 </div> |
| 40 <h4>Bandwidth Savings</h4> |
| 41 <table class="styled-table" id="bandwidth-stats-table"> |
4 <thead> | 42 <thead> |
5 <tr> | 43 <tr> |
6 <th></th> | 44 <th></th> |
7 <th>Session</th> | 45 <th>Session</th> |
8 <th>Total</th> | 46 <th>Total</th> |
9 </tr> | 47 </tr> |
10 </thead> | 48 </thead> |
11 <tbody> | 49 <tbody> |
12 <tr jsselect="rows"> | 50 <tr jsselect="rows"> |
13 <td jscontent="title"></td> | 51 <td jscontent="title"></td> |
14 <td jscontent="sessionValue"></td> | 52 <td jscontent="sessionValue"></td> |
15 <td jscontent="historicValue"></td> | 53 <td jscontent="historicValue"></td> |
16 </tr> | 54 </tr> |
17 </tbody> | 55 </tbody> |
18 </table> | 56 </table> |
19 </div> | 57 </div> |
OLD | NEW |