tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

load_device.xhtml (1602B)


      1 <?xml version="1.0"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 
      6 <?csp default-src chrome:; style-src chrome: 'unsafe-inline'; ?>
      7 
      8 <!DOCTYPE window>
      9 
     10 <window
     11  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     12  xmlns:html="http://www.w3.org/1999/xhtml"
     13  data-l10n-id="load-device"
     14 >
     15  <dialog id="loaddevice" buttons="accept,cancel">
     16    <linkset>
     17      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     18 
     19      <html:link
     20        rel="localization"
     21        href="security/certificates/deviceManager.ftl"
     22      />
     23    </linkset>
     24 
     25    <script src="chrome://global/content/globalOverlay.js" />
     26    <script src="chrome://global/content/editMenuOverlay.js" />
     27 
     28    <script src="chrome://pippki/content/load_device.js" />
     29 
     30    <html:style>
     31      #device_name, #device_path { flex: 1; }
     32    </html:style>
     33 
     34    <description data-l10n-id="load-device-info"></description>
     35    <hbox align="center">
     36      <label data-l10n-id="load-device-modname" control="device_name" />
     37      <html:input
     38        id="device_name"
     39        data-l10n-id="load-device-modname-default"
     40        data-l10n-attrs="value"
     41      />
     42    </hbox>
     43    <hbox align="center">
     44      <label data-l10n-id="load-device-filename" control="device_path" />
     45      <html:input id="device_path" />
     46      <button id="browse" flex="1" data-l10n-id="load-device-browse" />
     47    </hbox>
     48    <label id="helpText" value="" />
     49  </dialog>
     50 </window>