browser/devtools/framework/connect/connect.xhtml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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 <!DOCTYPE html [
michael@0 7 <!ENTITY % connectionDTD SYSTEM "chrome://browser/locale/devtools/connection-screen.dtd" >
michael@0 8 %connectionDTD;
michael@0 9 ]>
michael@0 10
michael@0 11 <html xmlns="http://www.w3.org/1999/xhtml"
michael@0 12 xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
michael@0 13 <head>
michael@0 14 <title>&title;</title>
michael@0 15 <link rel="stylesheet" href="chrome://browser/skin/devtools/dark-theme.css" type="text/css"/>
michael@0 16 <link rel="stylesheet" href="chrome://browser/content/devtools/connect.css" type="text/css"/>
michael@0 17 <script type="application/javascript;version=1.8" src="connect.js"></script>
michael@0 18 </head>
michael@0 19 <body>
michael@0 20 <h1>&header;</h1>
michael@0 21 <section id="connection-form">
michael@0 22 <form validate="validate" action="#">
michael@0 23 <label>
michael@0 24 <span>&host;</span>
michael@0 25 <input required="required" class="devtools-textinput" id="host" type="text"></input>
michael@0 26 </label>
michael@0 27 <label>
michael@0 28 <span>&port;</span>
michael@0 29 <input required="required" class="devtools-textinput" id="port" type="number" pattern="\d+"></input>
michael@0 30 </label>
michael@0 31 <label>
michael@0 32 <input class="devtools-toolbarbutton" id="submit" type="submit" value="&connect;"></input>
michael@0 33 </label>
michael@0 34 </form>
michael@0 35 <p class="error-message error-timeout">&errorTimeout;</p>
michael@0 36 <p class="error-message error-refused">&errorRefused;</p>
michael@0 37 <p class="error-message error-unexpected">&errorUnexpected;</p>
michael@0 38 </section>
michael@0 39 <section id="actors-list">
michael@0 40 <p>&availableTabs;</p>
michael@0 41 <ul class="actors" id="tabActors"></ul>
michael@0 42 <p>&availableAddons;</p>
michael@0 43 <ul class="actors" id="addonActors"></ul>
michael@0 44 <p>&availableProcesses;</p>
michael@0 45 <ul class="actors" id="globalActors"></ul>
michael@0 46 </section>
michael@0 47 <section id="connecting">
michael@0 48 <p><img src="chrome://browser/skin/tabbrowser/loading.png"></img> &connecting;</p>
michael@0 49 </section>
michael@0 50 <footer>&remoteHelp;<a target='_' href='https://developer.mozilla.org/docs/Tools/Remote_Debugging'>&remoteDocumentation;</a>&remoteHelpSuffix;</footer>
michael@0 51 </body>
michael@0 52 </html>

mercurial