OLD | NEW |
(Empty) | |
| 1 <div id=sdch-view-tab-content class=content-box> |
| 2 <ul style="margin-top:0"> |
| 3 <li>SDCH Enabled: |
| 4 <span jscontent="!!sdch_enabled" id=sdch-view-sdch-enabled></span> |
| 5 </li> |
| 6 </ul> |
| 7 |
| 8 <p>SDCH Errors: |
| 9 <a href="#events&q=type:URL_REQUEST%20SDCH_DECODING_ERROR" |
| 10 style="padding-right:2em">Decoding</a> |
| 11 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_ERROR">Dictionary</a> |
| 12 </p> |
| 13 |
| 14 <p> |
| 15 <a href="#events&q=type:URL_REQUEST%20SDCH_DICTIONARY_FETCH"> |
| 16 SDCH Dictionary Fetches |
| 17 </a> |
| 18 </p> |
| 19 |
| 20 <p> |
| 21 <a href="#events&q=type:URL_REQUEST%20Avail-Dictionary"> |
| 22 SDCH Requests |
| 23 </a> |
| 24 </p> |
| 25 |
| 26 <h4> |
| 27 Dictionaries loaded: <span jscontent="dictionaries.length"></span> |
| 28 </h4> |
| 29 <table class="styled-table"> |
| 30 <thead> |
| 31 <tr> |
| 32 <th>Domain</th> |
| 33 <th>Path</th> |
| 34 <th>Ports</th> |
| 35 <th>Server Hash</th> |
| 36 <th>Client Hash</th> |
| 37 <th>Url</th> |
| 38 </tr> |
| 39 </thead> |
| 40 <tbody id=sdch-view-dictionaries-body> |
| 41 <tr jsselect="dictionaries"> |
| 42 <td jscontent="domain"></td> |
| 43 <td jscontent="path"></td> |
| 44 <td jscontent="$this.ports ? $this.ports.join(', ') : ''"></td> |
| 45 <td jscontent="server_hash"></td> |
| 46 <td jscontent="client_hash"></td> |
| 47 <td jscontent="url"></td> |
| 48 </tr> |
| 49 </tbody> |
| 50 </table> |
| 51 |
| 52 <h4>Blacklisted domains</h4> |
| 53 <table class="styled-table"> |
| 54 <thead> |
| 55 <tr> |
| 56 <th>Domain</th> |
| 57 <th>Reason</th> |
| 58 <th>Tries to back off</th> |
| 59 </tr> |
| 60 </thead> |
| 61 <tbody id=sdch-view-blacklist-body> |
| 62 <tr jsselect="blacklisted"> |
| 63 <td jscontent="domain"></td> |
| 64 <td jscontent="sdchProblemCodeToString(reason)"></td> |
| 65 <td jscontent="tries"></td> |
| 66 </tr> |
| 67 </tbody> |
| 68 </table> |
| 69 </div> |
| 70 |
OLD | NEW |