browser/devtools/webconsole/NetworkPanel.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
michael@0 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
michael@0 4 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
michael@0 5 <!ENTITY % webConsoleDTD SYSTEM "chrome://browser/locale/devtools/webConsole.dtd" >
michael@0 6 %webConsoleDTD;
michael@0 7 ]>
michael@0 8
michael@0 9 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 10 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 11 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 12
michael@0 13
michael@0 14 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
michael@0 15 <head>
michael@0 16 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
michael@0 17 <link rel="stylesheet" href="chrome://browser/skin/devtools/webconsole_networkpanel.css" type="text/css"/>
michael@0 18 </head>
michael@0 19 <body role="application">
michael@0 20 <table id="header">
michael@0 21 <tr>
michael@0 22 <th class="property-name"
michael@0 23 scope="row">&networkPanel.requestURLColon;</th>
michael@0 24 <td class="property-value"
michael@0 25 id="headUrl"></td>
michael@0 26 </tr>
michael@0 27 <tr>
michael@0 28 <th class="property-name"
michael@0 29 scope="row">&networkPanel.requestMethodColon;</th>
michael@0 30 <td class="property-value"
michael@0 31 id="headMethod"></td>
michael@0 32 </tr>
michael@0 33 <tr>
michael@0 34 <th class="property-name"
michael@0 35 scope="row">&networkPanel.statusCodeColon;</th>
michael@0 36 <td class="property-value"
michael@0 37 id="headStatus"></td>
michael@0 38 </tr>
michael@0 39 </table>
michael@0 40
michael@0 41 <div class="group">
michael@0 42 <h1>
michael@0 43 &networkPanel.requestHeaders;
michael@0 44 <span id="requestHeadersInfo" class="info"></span>
michael@0 45 </h1>
michael@0 46 <table class="property-table" id="requestHeadersContent"></table>
michael@0 47
michael@0 48 <div id="requestCookie" style="display:none">
michael@0 49 <h1>&networkPanel.requestCookie;</h1>
michael@0 50 <table class="property-table" id="requestCookieContent"></table>
michael@0 51 </div>
michael@0 52
michael@0 53 <div id="requestBody" style="display:none">
michael@0 54 <h1>&networkPanel.requestBody;</h1>
michael@0 55 <table class="property-table" id="requestBodyContent"></table>
michael@0 56 </div>
michael@0 57 <div id="requestFormData" style="display:none">
michael@0 58 <h1>&networkPanel.requestFormData;</h1>
michael@0 59 <table class="property-table" id="requestFormDataContent"></table>
michael@0 60 </div>
michael@0 61 <p id="requestBodyFetchLink" style="display:none"></p>
michael@0 62 </div>
michael@0 63
michael@0 64 <div class="group" id="responseContainer" style="display:none">
michael@0 65 <h1>
michael@0 66 &networkPanel.responseHeaders;
michael@0 67 <span id="responseHeadersInfo" class="info">&Delta;</span>
michael@0 68 </h1>
michael@0 69 <table class="property-table" id="responseHeadersContent"></table>
michael@0 70
michael@0 71 <div id="responseCookie" style="display:none">
michael@0 72 <h1>&networkPanel.responseCookie;</h1>
michael@0 73 <table class="property-table" id="responseCookieContent"></table>
michael@0 74 </div>
michael@0 75
michael@0 76 <div id="responseBody" style="display:none">
michael@0 77 <h1>
michael@0 78 &networkPanel.responseBody;
michael@0 79 <span class="info" id="responseBodyInfo">&Delta;</span>
michael@0 80 </h1>
michael@0 81 <table class="property-table" id="responseBodyContent"></table>
michael@0 82 </div>
michael@0 83 <div id="responseBodyCached" style="display:none">
michael@0 84 <h1>
michael@0 85 &networkPanel.responseBodyCached;
michael@0 86 <span class="info" id="responseBodyCachedInfo">&Delta;</span>
michael@0 87 </h1>
michael@0 88 <table class="property-table" id="responseBodyCachedContent"></table>
michael@0 89 </div>
michael@0 90 <div id="responseNoBody" style="display:none">
michael@0 91 <h1>
michael@0 92 &networkPanel.responseNoBody;
michael@0 93 <span id="responseNoBodyInfo" class="info">&Delta;</span>
michael@0 94 </h1>
michael@0 95 </div>
michael@0 96 <div id="responseBodyUnknownType" style="display:none">
michael@0 97 <h1>
michael@0 98 &networkPanel.responseBodyUnknownType;
michael@0 99 <span id="responseBodyUnknownTypeInfo" class="info">&Delta;</span>
michael@0 100 </h1>
michael@0 101 <table class="property-table" id="responseBodyUnknownTypeContent"></table>
michael@0 102 </div>
michael@0 103 <div id="responseImage" style="display:none">
michael@0 104 <h1>
michael@0 105 &networkPanel.responseImage;
michael@0 106 <span id="responseImageInfo" class="info"></span>
michael@0 107 </h1>
michael@0 108 <div id="responseImageNodeDiv">
michael@0 109 <img id="responseImageNode" />
michael@0 110 </div>
michael@0 111 </div>
michael@0 112 <div id="responseImageCached" style="display:none">
michael@0 113 <h1>
michael@0 114 &networkPanel.responseImageCached;
michael@0 115 <span id="responseImageCachedInfo" class="info"></span>
michael@0 116 </h1>
michael@0 117 <div id="responseImageNodeDiv">
michael@0 118 <img id="responseImageCachedNode" />
michael@0 119 </div>
michael@0 120 </div>
michael@0 121 <p id="responseBodyFetchLink" style="display:none"></p>
michael@0 122 </div>
michael@0 123 </body>
michael@0 124 </html>

mercurial