mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
70f1b9a2e8
--HG-- rename : toolkit/content/aboutNetworking.css => toolkit/themes/shared/aboutNetworking.css
103 lines
4.3 KiB
HTML
103 lines
4.3 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
|
|
<!DOCTYPE html [
|
|
<!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> %htmlDTD;
|
|
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd"> %globalDTD;
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> %brandDTD;
|
|
<!ENTITY % networkingDTD SYSTEM "chrome://global/locale/aboutNetworking.dtd"> %networkingDTD;
|
|
]>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>&aboutNetworking.title;</title>
|
|
<link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css" />
|
|
<link rel="stylesheet" href="chrome://mozapps/skin/aboutNetworking.css" type="text/css" />
|
|
<script type="application/javascript;version=1.7" src="chrome://global/content/aboutNetworking.js" />
|
|
</head>
|
|
<body id="body">
|
|
<div id="warning_message" class="warningBackground">
|
|
<div class="warningMessage">
|
|
&aboutNetworking.warning; <br/> <br/>
|
|
<label><input id="warncheck" type="checkbox" checked="yes" />&aboutNetworking.showNextTime;</label> <br/> <br/>
|
|
<button id="confpref">&aboutNetworking.ok;</button>
|
|
</div>
|
|
</div>
|
|
<div id="menu">
|
|
<button class="selected" value="http">&aboutNetworking.http;</button>
|
|
<button value="sockets">&aboutNetworking.sockets;</button>
|
|
<button value="dns">&aboutNetworking.dns;</button>
|
|
<button value="websockets">&aboutNetworking.websockets;</button>
|
|
</div>
|
|
<div id="refreshdiv">
|
|
<button id="refreshButton">&aboutNetworking.refresh;</button>
|
|
<input id="autorefcheck" type="checkbox" name="Autorefresh" />&aboutNetworking.autoRefresh;
|
|
</div>
|
|
|
|
<div id="http" class="tab active">
|
|
<table border="1" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>&aboutNetworking.hostname;</th>
|
|
<th>&aboutNetworking.port;</th>
|
|
<th>&aboutNetworking.spdy;</th>
|
|
<th>&aboutNetworking.ssl;</th>
|
|
<th>&aboutNetworking.active;</th>
|
|
<th>&aboutNetworking.idle;</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="http_content" />
|
|
</table>
|
|
</div>
|
|
|
|
<div id="sockets" class="tab">
|
|
<table border="1" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>&aboutNetworking.host;</th>
|
|
<th>&aboutNetworking.port;</th>
|
|
<th>&aboutNetworking.tcp;</th>
|
|
<th>&aboutNetworking.active;</th>
|
|
<th>&aboutNetworking.sent;</th>
|
|
<th>&aboutNetworking.received;</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="sockets_content" />
|
|
</table>
|
|
</div>
|
|
|
|
<div id="dns" class="tab">
|
|
<table border="1" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>&aboutNetworking.hostname;</th>
|
|
<th>&aboutNetworking.family;</th>
|
|
<th>&aboutNetworking.addresses;</th>
|
|
<th>&aboutNetworking.expires;</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="dns_content" />
|
|
</table>
|
|
</div>
|
|
|
|
<div id="websockets" class="tab">
|
|
<table border="1" width="100%">
|
|
<thead>
|
|
<tr>
|
|
<th>&aboutNetworking.hostname;</th>
|
|
<th>&aboutNetworking.ssl;</th>
|
|
<th>&aboutNetworking.messagesSent;</th>
|
|
<th>&aboutNetworking.messagesReceived;</th>
|
|
<th>&aboutNetworking.bytesSent;</th>
|
|
<th>&aboutNetworking.bytesReceived;</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="websockets_content" />
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|