toolkit/mozapps/extensions/content/list.xul

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 6
michael@0 7 <?xml-stylesheet href="chrome://global/skin/"?>
michael@0 8
michael@0 9 <dialog id="addonList" windowtype="Addons:List"
michael@0 10 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 11 onunload="shutdown();"
michael@0 12 buttons="accept,cancel" onload="init();">
michael@0 13
michael@0 14 <script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
michael@0 15 <script type="application/javascript"
michael@0 16 src="chrome://mozapps/content/extensions/list.js"/>
michael@0 17
michael@0 18 <stringbundle id="extensionsBundle"
michael@0 19 src="chrome://mozapps/locale/extensions/extensions.properties"/>
michael@0 20 <stringbundle id="brandBundle"
michael@0 21 src="chrome://branding/locale/brand.properties"/>
michael@0 22
michael@0 23 <hbox align="start">
michael@0 24 <vbox>
michael@0 25 <image id="infoIcon"/>
michael@0 26 </vbox>
michael@0 27 <vbox class="spaced" style="min-width: 20em; max-width: 40em">
michael@0 28 <label id="message1" class="spaced" hidden="true"/>
michael@0 29 <separator class="thin"/>
michael@0 30 <tree id="addonsTree" rows="6" hidecolumnpicker="true" hidden="true" class="spaced">
michael@0 31 <treecols style="max-width: 25em;">
michael@0 32 <treecol flex="1" id="nameColumn" hideheader="true"/>
michael@0 33 </treecols>
michael@0 34 <treechildren id="addonsChildren"/>
michael@0 35 </tree>
michael@0 36 <label id="message2" class="spaced" hidden="true"/>
michael@0 37 <label class="bold spaced" id="message3" hidden="true"/>
michael@0 38 <hbox id="moreInfoBox" hidden="true">
michael@0 39 <label id="moreInfo" class="text-link spaced"/>
michael@0 40 <spacer flex="1"/>
michael@0 41 </hbox>
michael@0 42 </vbox>
michael@0 43 </hbox>
michael@0 44 </dialog>

mercurial