browser/components/preferences/applications.xul

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 <!-- -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- -->
michael@0 4 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 5 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 6 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 7
michael@0 8 <!DOCTYPE overlay [
michael@0 9 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
michael@0 10 <!ENTITY % applicationsDTD SYSTEM "chrome://browser/locale/preferences/applications.dtd">
michael@0 11 %brandDTD;
michael@0 12 %applicationsDTD;
michael@0 13 ]>
michael@0 14
michael@0 15 <overlay id="ApplicationsPaneOverlay"
michael@0 16 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
michael@0 17
michael@0 18 <prefpane id="paneApplications"
michael@0 19 onpaneload="gApplicationsPane.init();"
michael@0 20 flex="1"
michael@0 21 helpTopic="prefs-applications">
michael@0 22
michael@0 23 <preferences id="feedsPreferences">
michael@0 24 <preference id="browser.feeds.handler"
michael@0 25 name="browser.feeds.handler"
michael@0 26 type="string"/>
michael@0 27 <preference id="browser.feeds.handler.default"
michael@0 28 name="browser.feeds.handler.default"
michael@0 29 type="string"/>
michael@0 30 <preference id="browser.feeds.handlers.application"
michael@0 31 name="browser.feeds.handlers.application"
michael@0 32 type="file"/>
michael@0 33 <preference id="browser.feeds.handlers.webservice"
michael@0 34 name="browser.feeds.handlers.webservice"
michael@0 35 type="string"/>
michael@0 36
michael@0 37 <preference id="browser.videoFeeds.handler"
michael@0 38 name="browser.videoFeeds.handler"
michael@0 39 type="string"/>
michael@0 40 <preference id="browser.videoFeeds.handler.default"
michael@0 41 name="browser.videoFeeds.handler.default"
michael@0 42 type="string"/>
michael@0 43 <preference id="browser.videoFeeds.handlers.application"
michael@0 44 name="browser.videoFeeds.handlers.application"
michael@0 45 type="file"/>
michael@0 46 <preference id="browser.videoFeeds.handlers.webservice"
michael@0 47 name="browser.videoFeeds.handlers.webservice"
michael@0 48 type="string"/>
michael@0 49
michael@0 50 <preference id="browser.audioFeeds.handler"
michael@0 51 name="browser.audioFeeds.handler"
michael@0 52 type="string"/>
michael@0 53 <preference id="browser.audioFeeds.handler.default"
michael@0 54 name="browser.audioFeeds.handler.default"
michael@0 55 type="string"/>
michael@0 56 <preference id="browser.audioFeeds.handlers.application"
michael@0 57 name="browser.audioFeeds.handlers.application"
michael@0 58 type="file"/>
michael@0 59 <preference id="browser.audioFeeds.handlers.webservice"
michael@0 60 name="browser.audioFeeds.handlers.webservice"
michael@0 61 type="string"/>
michael@0 62
michael@0 63 <preference id="pref.downloads.disable_button.edit_actions"
michael@0 64 name="pref.downloads.disable_button.edit_actions"
michael@0 65 type="bool"/>
michael@0 66 </preferences>
michael@0 67
michael@0 68 <script type="application/javascript" src="chrome://browser/content/preferences/applications.js"/>
michael@0 69
michael@0 70 <keyset>
michael@0 71 <key key="&focusSearch1.key;" modifiers="accel" oncommand="gApplicationsPane.focusFilterBox();"/>
michael@0 72 <key key="&focusSearch2.key;" modifiers="accel" oncommand="gApplicationsPane.focusFilterBox();"/>
michael@0 73 </keyset>
michael@0 74
michael@0 75 <hbox>
michael@0 76 <textbox id="filter" flex="1"
michael@0 77 type="search"
michael@0 78 placeholder="&filter.emptytext;"
michael@0 79 aria-controls="handlersView"
michael@0 80 oncommand="gApplicationsPane.filter();"/>
michael@0 81 </hbox>
michael@0 82
michael@0 83 <separator class="thin"/>
michael@0 84
michael@0 85 <richlistbox id="handlersView" orient="vertical" persist="lastSelectedType"
michael@0 86 preference="pref.downloads.disable_button.edit_actions"
michael@0 87 onselect="gApplicationsPane.onSelectionChanged();">
michael@0 88 <listheader equalsize="always" style="border: 0; padding: 0; -moz-appearance: none;">
michael@0 89 <treecol id="typeColumn" label="&typeColumn.label;" value="type"
michael@0 90 accesskey="&typeColumn.accesskey;" persist="sortDirection"
michael@0 91 flex="1" onclick="gApplicationsPane.sort(event);"
michael@0 92 sortDirection="ascending"/>
michael@0 93 <treecol id="actionColumn" label="&actionColumn2.label;" value="action"
michael@0 94 accesskey="&actionColumn2.accesskey;" persist="sortDirection"
michael@0 95 flex="1" onclick="gApplicationsPane.sort(event);"/>
michael@0 96 </listheader>
michael@0 97 </richlistbox>
michael@0 98 </prefpane>
michael@0 99 </overlay>

mercurial