browser/components/preferences/in-content/applications.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 - License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 3 - You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 4
michael@0 5 <script type="application/javascript"
michael@0 6 src="chrome://browser/content/preferences/in-content/applications.js"/>
michael@0 7
michael@0 8 <preferences id="feedsPreferences">
michael@0 9 <preference id="browser.feeds.handler"
michael@0 10 name="browser.feeds.handler"
michael@0 11 type="string"/>
michael@0 12 <preference id="browser.feeds.handler.default"
michael@0 13 name="browser.feeds.handler.default"
michael@0 14 type="string"/>
michael@0 15 <preference id="browser.feeds.handlers.application"
michael@0 16 name="browser.feeds.handlers.application"
michael@0 17 type="file"/>
michael@0 18 <preference id="browser.feeds.handlers.webservice"
michael@0 19 name="browser.feeds.handlers.webservice"
michael@0 20 type="string"/>
michael@0 21
michael@0 22 <preference id="browser.videoFeeds.handler"
michael@0 23 name="browser.videoFeeds.handler"
michael@0 24 type="string"/>
michael@0 25 <preference id="browser.videoFeeds.handler.default"
michael@0 26 name="browser.videoFeeds.handler.default"
michael@0 27 type="string"/>
michael@0 28 <preference id="browser.videoFeeds.handlers.application"
michael@0 29 name="browser.videoFeeds.handlers.application"
michael@0 30 type="file"/>
michael@0 31 <preference id="browser.videoFeeds.handlers.webservice"
michael@0 32 name="browser.videoFeeds.handlers.webservice"
michael@0 33 type="string"/>
michael@0 34
michael@0 35 <preference id="browser.audioFeeds.handler"
michael@0 36 name="browser.audioFeeds.handler"
michael@0 37 type="string"/>
michael@0 38 <preference id="browser.audioFeeds.handler.default"
michael@0 39 name="browser.audioFeeds.handler.default"
michael@0 40 type="string"/>
michael@0 41 <preference id="browser.audioFeeds.handlers.application"
michael@0 42 name="browser.audioFeeds.handlers.application"
michael@0 43 type="file"/>
michael@0 44 <preference id="browser.audioFeeds.handlers.webservice"
michael@0 45 name="browser.audioFeeds.handlers.webservice"
michael@0 46 type="string"/>
michael@0 47
michael@0 48 <preference id="pref.downloads.disable_button.edit_actions"
michael@0 49 name="pref.downloads.disable_button.edit_actions"
michael@0 50 type="bool"/>
michael@0 51 </preferences>
michael@0 52
michael@0 53 <keyset>
michael@0 54 <key key="&focusSearch1.key;" modifiers="accel" oncommand="gApplicationsPane.focusFilterBox();"/>
michael@0 55 <key key="&focusSearch2.key;" modifiers="accel" oncommand="gApplicationsPane.focusFilterBox();"/>
michael@0 56 </keyset>
michael@0 57
michael@0 58 <hbox id="header-application"
michael@0 59 class="header"
michael@0 60 hidden="true"
michael@0 61 data-category="paneApplications">
michael@0 62 <image class="header-icon"/>
michael@0 63 <label class="header-name"
michael@0 64 value="&paneApplications.title;"/>
michael@0 65 </hbox>
michael@0 66
michael@0 67 <vbox id="applicationsContent"
michael@0 68 data-category="paneApplications"
michael@0 69 hidden="true"
michael@0 70 flex="1">
michael@0 71 <hbox>
michael@0 72 <textbox id="filter" flex="1"
michael@0 73 type="search"
michael@0 74 placeholder="&filter.emptytext;"
michael@0 75 aria-controls="handlersView"
michael@0 76 oncommand="gApplicationsPane.filter();"/>
michael@0 77 </hbox>
michael@0 78
michael@0 79 <separator class="thin"/>
michael@0 80
michael@0 81 <richlistbox id="handlersView" orient="vertical" persist="lastSelectedType"
michael@0 82 preference="pref.downloads.disable_button.edit_actions"
michael@0 83 flex="1"
michael@0 84 onselect="gApplicationsPane.onSelectionChanged();">
michael@0 85 <listheader equalsize="always" style="border: 0; padding: 0; -moz-appearance: none;">
michael@0 86 <treecol id="typeColumn" label="&typeColumn.label;" value="type"
michael@0 87 accesskey="&typeColumn.accesskey;" persist="sortDirection"
michael@0 88 flex="1" onclick="gApplicationsPane.sort(event);"
michael@0 89 sortDirection="ascending"/>
michael@0 90 <treecol id="actionColumn" label="&actionColumn2.label;" value="action"
michael@0 91 accesskey="&actionColumn2.accesskey;" persist="sortDirection"
michael@0 92 flex="1" onclick="gApplicationsPane.sort(event);"/>
michael@0 93 </listheader>
michael@0 94 </richlistbox>
michael@0 95 </vbox>

mercurial