tor-browser

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

applicationManager.xhtml (1960B)


      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:; img-src chrome: moz-icon: moz-remote-image:;
      7 style-src chrome: 'unsafe-inline'; ?>
      8 
      9 <window
     10  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     11  xmlns:html="http://www.w3.org/1999/xhtml"
     12  data-l10n-id="app-manager-window2"
     13  data-l10n-attrs="title, style"
     14 >
     15  <dialog id="appManager" buttons="accept,cancel">
     16    <linkset>
     17      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     18      <html:link
     19        rel="stylesheet"
     20        href="chrome://browser/skin/preferences/applications.css"
     21      />
     22 
     23      <html:link
     24        rel="localization"
     25        href="browser/preferences/applicationManager.ftl"
     26      />
     27    </linkset>
     28 
     29    <script src="chrome://browser/content/utilityOverlay.js" />
     30    <script src="chrome://global/content/preferencesBindings.js" />
     31    <script src="chrome://browser/content/preferences/dialogs/applicationManager.js" />
     32 
     33    <commandset id="appManagerCommandSet">
     34      <command id="cmd_remove" disabled="true" />
     35    </commandset>
     36 
     37    <keyset id="appManagerKeyset">
     38      <key id="delete" keycode="VK_DELETE" command="cmd_remove" />
     39    </keyset>
     40 
     41    <description id="appDescription" />
     42    <separator class="thin" />
     43    <hbox flex="1">
     44      <richlistbox id="appList" flex="1" />
     45      <vbox>
     46        <button
     47          id="remove"
     48          data-l10n-id="app-manager-remove"
     49          command="cmd_remove"
     50        />
     51        <spacer flex="1" />
     52      </vbox>
     53    </hbox>
     54    <vbox id="appDetails">
     55      <separator class="thin" />
     56      <label id="appType" />
     57      <html:input
     58        type="text"
     59        id="appLocation"
     60        readonly="readonly"
     61        style="margin-inline: 0"
     62      />
     63    </vbox>
     64  </dialog>
     65 </window>