toolkit/content/aboutNetworking.xhtml

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 <?xml version="1.0" encoding="UTF-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6
michael@0 7 <!DOCTYPE html [
michael@0 8 <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> %htmlDTD;
michael@0 9 <!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd"> %globalDTD;
michael@0 10 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> %brandDTD;
michael@0 11 <!ENTITY % networkingDTD SYSTEM "chrome://global/locale/aboutNetworking.dtd"> %networkingDTD;
michael@0 12 ]>
michael@0 13
michael@0 14 <html xmlns="http://www.w3.org/1999/xhtml">
michael@0 15 <head>
michael@0 16 <title>&aboutNetworking.title;</title>
michael@0 17 <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css" />
michael@0 18 <link rel="stylesheet" href="chrome://mozapps/skin/aboutNetworking.css" type="text/css" />
michael@0 19 <script type="application/javascript;version=1.7" src="chrome://global/content/aboutNetworking.js" />
michael@0 20 </head>
michael@0 21 <body id="body">
michael@0 22 <div id="warning_message" class="warningBackground">
michael@0 23 <div class="warningMessage">
michael@0 24 &aboutNetworking.warning; <br/> <br/>
michael@0 25 <label><input id="warncheck" type="checkbox" checked="yes" />&aboutNetworking.showNextTime;</label> <br/> <br/>
michael@0 26 <button id="confpref">&aboutNetworking.ok;</button>
michael@0 27 </div>
michael@0 28 </div>
michael@0 29 <div id="menu">
michael@0 30 <button class="selected" value="http">&aboutNetworking.http;</button>
michael@0 31 <button value="sockets">&aboutNetworking.sockets;</button>
michael@0 32 <button value="dns">&aboutNetworking.dns;</button>
michael@0 33 <button value="websockets">&aboutNetworking.websockets;</button>
michael@0 34 </div>
michael@0 35 <div id="refreshdiv">
michael@0 36 <button id="refreshButton">&aboutNetworking.refresh;</button>
michael@0 37 <input id="autorefcheck" type="checkbox" name="Autorefresh" />&aboutNetworking.autoRefresh;
michael@0 38 </div>
michael@0 39
michael@0 40 <div id="http" class="tab active">
michael@0 41 <table border="1" width="100%">
michael@0 42 <thead>
michael@0 43 <tr>
michael@0 44 <th>&aboutNetworking.hostname;</th>
michael@0 45 <th>&aboutNetworking.port;</th>
michael@0 46 <th>&aboutNetworking.spdy;</th>
michael@0 47 <th>&aboutNetworking.ssl;</th>
michael@0 48 <th>&aboutNetworking.active;</th>
michael@0 49 <th>&aboutNetworking.idle;</th>
michael@0 50 </tr>
michael@0 51 </thead>
michael@0 52 <tbody id="http_content" />
michael@0 53 </table>
michael@0 54 </div>
michael@0 55
michael@0 56 <div id="sockets" class="tab">
michael@0 57 <table border="1" width="100%">
michael@0 58 <thead>
michael@0 59 <tr>
michael@0 60 <th>&aboutNetworking.host;</th>
michael@0 61 <th>&aboutNetworking.port;</th>
michael@0 62 <th>&aboutNetworking.tcp;</th>
michael@0 63 <th>&aboutNetworking.active;</th>
michael@0 64 <th>&aboutNetworking.sent;</th>
michael@0 65 <th>&aboutNetworking.received;</th>
michael@0 66 </tr>
michael@0 67 </thead>
michael@0 68 <tbody id="sockets_content" />
michael@0 69 </table>
michael@0 70 </div>
michael@0 71
michael@0 72 <div id="dns" class="tab">
michael@0 73 <table border="1" width="100%">
michael@0 74 <thead>
michael@0 75 <tr>
michael@0 76 <th>&aboutNetworking.hostname;</th>
michael@0 77 <th>&aboutNetworking.family;</th>
michael@0 78 <th>&aboutNetworking.addresses;</th>
michael@0 79 <th>&aboutNetworking.expires;</th>
michael@0 80 </tr>
michael@0 81 </thead>
michael@0 82 <tbody id="dns_content" />
michael@0 83 </table>
michael@0 84 </div>
michael@0 85
michael@0 86 <div id="websockets" class="tab">
michael@0 87 <table border="1" width="100%">
michael@0 88 <thead>
michael@0 89 <tr>
michael@0 90 <th>&aboutNetworking.hostname;</th>
michael@0 91 <th>&aboutNetworking.ssl;</th>
michael@0 92 <th>&aboutNetworking.messagesSent;</th>
michael@0 93 <th>&aboutNetworking.messagesReceived;</th>
michael@0 94 <th>&aboutNetworking.bytesSent;</th>
michael@0 95 <th>&aboutNetworking.bytesReceived;</th>
michael@0 96 </tr>
michael@0 97 </thead>
michael@0 98 <tbody id="websockets_content" />
michael@0 99 </table>
michael@0 100 </div>
michael@0 101 </body>
michael@0 102 </html>

mercurial