Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | |
michael@0 | 3 | # -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
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 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 9 | <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?> |
michael@0 | 10 | |
michael@0 | 11 | <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/cookies.dtd" > |
michael@0 | 12 | |
michael@0 | 13 | <window id="CookiesDialog" windowtype="Browser:Cookies" |
michael@0 | 14 | class="windowDialog" title="&window.title;" |
michael@0 | 15 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 16 | style="width: &window.width;;" |
michael@0 | 17 | onload="gCookiesWindow.init();" |
michael@0 | 18 | onunload="gCookiesWindow.uninit();" |
michael@0 | 19 | persist="screenX screenY width height" |
michael@0 | 20 | onkeypress="gCookiesWindow.onWindowKeyPress(event);"> |
michael@0 | 21 | |
michael@0 | 22 | <script src="chrome://global/content/treeUtils.js"/> |
michael@0 | 23 | <script src="chrome://browser/content/preferences/cookies.js"/> |
michael@0 | 24 | |
michael@0 | 25 | <stringbundle id="bundlePreferences" |
michael@0 | 26 | src="chrome://browser/locale/preferences/preferences.properties"/> |
michael@0 | 27 | |
michael@0 | 28 | <keyset> |
michael@0 | 29 | <key key="&windowClose.key;" modifiers="accel" oncommand="window.close();"/> |
michael@0 | 30 | <key key="&focusSearch1.key;" modifiers="accel" oncommand="gCookiesWindow.focusFilterBox();"/> |
michael@0 | 31 | <key key="&focusSearch2.key;" modifiers="accel" oncommand="gCookiesWindow.focusFilterBox();"/> |
michael@0 | 32 | </keyset> |
michael@0 | 33 | |
michael@0 | 34 | <vbox flex="1" class="contentPane"> |
michael@0 | 35 | <hbox align="center"> |
michael@0 | 36 | <label accesskey="&filter.accesskey;" control="filter">&filter.label;</label> |
michael@0 | 37 | <textbox type="search" id="filter" flex="1" |
michael@0 | 38 | aria-controls="cookiesList" |
michael@0 | 39 | oncommand="gCookiesWindow.filter();"/> |
michael@0 | 40 | </hbox> |
michael@0 | 41 | <separator class="thin"/> |
michael@0 | 42 | <label control="cookiesList" id="cookiesIntro" value="&cookiesonsystem.label;"/> |
michael@0 | 43 | <separator class="thin"/> |
michael@0 | 44 | <tree id="cookiesList" flex="1" style="height: 10em;" |
michael@0 | 45 | onkeypress="gCookiesWindow.onCookieKeyPress(event)" |
michael@0 | 46 | onselect="gCookiesWindow.onCookieSelected();" |
michael@0 | 47 | hidecolumnpicker="true" seltype="single"> |
michael@0 | 48 | <treecols> |
michael@0 | 49 | <treecol id="domainCol" label="&cookiedomain.label;" flex="2" primary="true" |
michael@0 | 50 | persist="width" onclick="gCookiesWindow.sort('rawHost');"/> |
michael@0 | 51 | <splitter class="tree-splitter"/> |
michael@0 | 52 | <treecol id="nameCol" label="&cookiename.label;" flex="1" |
michael@0 | 53 | persist="width" |
michael@0 | 54 | onclick="gCookiesWindow.sort('name');"/> |
michael@0 | 55 | </treecols> |
michael@0 | 56 | <treechildren id="cookiesChildren"/> |
michael@0 | 57 | </tree> |
michael@0 | 58 | <hbox id="cookieInfoBox"> |
michael@0 | 59 | <grid flex="1" id="cookieInfoGrid"> |
michael@0 | 60 | <columns> |
michael@0 | 61 | <column/> |
michael@0 | 62 | <column flex="1"/> |
michael@0 | 63 | </columns> |
michael@0 | 64 | <rows> |
michael@0 | 65 | <row align="center"> |
michael@0 | 66 | <hbox pack="end"><label id="nameLabel" control="name" value="&props.name.label;"/></hbox> |
michael@0 | 67 | <textbox id="name" readonly="true" class="plain"/> |
michael@0 | 68 | </row> |
michael@0 | 69 | <row align="center"> |
michael@0 | 70 | <hbox pack="end"><label id="valueLabel" control="value" value="&props.value.label;"/></hbox> |
michael@0 | 71 | <textbox id="value" readonly="true" class="plain"/> |
michael@0 | 72 | </row> |
michael@0 | 73 | <row align="center"> |
michael@0 | 74 | <hbox pack="end"><label id="isDomain" control="host" value="&props.domain.label;"/></hbox> |
michael@0 | 75 | <textbox id="host" readonly="true" class="plain"/> |
michael@0 | 76 | </row> |
michael@0 | 77 | <row align="center"> |
michael@0 | 78 | <hbox pack="end"><label id="pathLabel" control="path" value="&props.path.label;"/></hbox> |
michael@0 | 79 | <textbox id="path" readonly="true" class="plain"/> |
michael@0 | 80 | </row> |
michael@0 | 81 | <row align="center"> |
michael@0 | 82 | <hbox pack="end"><label id="isSecureLabel" control="isSecure" value="&props.secure.label;"/></hbox> |
michael@0 | 83 | <textbox id="isSecure" readonly="true" class="plain"/> |
michael@0 | 84 | </row> |
michael@0 | 85 | <row align="center"> |
michael@0 | 86 | <hbox pack="end"><label id="expiresLabel" control="expires" value="&props.expires.label;"/></hbox> |
michael@0 | 87 | <textbox id="expires" readonly="true" class="plain"/> |
michael@0 | 88 | </row> |
michael@0 | 89 | </rows> |
michael@0 | 90 | </grid> |
michael@0 | 91 | </hbox> |
michael@0 | 92 | </vbox> |
michael@0 | 93 | <hbox align="end"> |
michael@0 | 94 | <hbox class="actionButtons" flex="1"> |
michael@0 | 95 | <deck oncommand="gCookiesWindow.deleteCookie();"> |
michael@0 | 96 | <button id="removeCookie" disabled="true" icon="remove" |
michael@0 | 97 | label="&button.removecookie.label;" |
michael@0 | 98 | accesskey="&button.removecookie.accesskey;"/> |
michael@0 | 99 | <button id="removeCookies" disabled="true" icon="remove" |
michael@0 | 100 | label="&button.removecookies.label;" |
michael@0 | 101 | accesskey="&button.removecookie.accesskey;"/> |
michael@0 | 102 | </deck> |
michael@0 | 103 | <button id="removeAllCookies" disabled="true" icon="clear" |
michael@0 | 104 | label="&button.removeallcookies.label;" accesskey="&button.removeallcookies.accesskey;" |
michael@0 | 105 | oncommand="gCookiesWindow.deleteAllCookies();"/> |
michael@0 | 106 | <spacer flex="1"/> |
michael@0 | 107 | #ifndef XP_MACOSX |
michael@0 | 108 | <button oncommand="close();" icon="close" |
michael@0 | 109 | label="&button.close.label;" accesskey="&button.close.accesskey;"/> |
michael@0 | 110 | #endif |
michael@0 | 111 | </hbox> |
michael@0 | 112 | <resizer type="window" dir="bottomend"/> |
michael@0 | 113 | </hbox> |
michael@0 | 114 | </window> |