~vono22/cookiekeeper/1.9.0

« back to all changes in this revision

Viewing changes to cookiekeeper/chrome/content/prefs.pcookies.xul

  • Committer: Yvon TANGUY
  • Date: 2014-01-23 12:08:35 UTC
  • Revision ID: vono@vono.zsh.jp-20140123120835-btzrqyhypbvf3nll
initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!--
 
3
# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 
4
# This Source Code Form is subject to the terms of the Mozilla Public
 
5
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
6
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
7
#
 
8
-->
 
9
 
 
10
 
 
11
<!DOCTYPE dialog [
 
12
  <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
 
13
  <!ENTITY % cookieKeeperDTD SYSTEM "chrome://cookiekeeper/locale/cookiekeeper.dtd" >
 
14
  %brandDTD;
 
15
  %cookieKeeperDTD;
 
16
]>
 
17
 
 
18
<overlay id="ProtectedCookiesPaneOverlay"
 
19
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
 
20
 
 
21
  <prefpane id="paneProtectedCookies"
 
22
            onpaneload="gCookieKeeperProtCookiesPrefs.init();">
 
23
 
 
24
    <script src="chrome://cookiekeeper/content/prefs.pcookies.js" type="application/x-javascript"/>
 
25
 
 
26
    <preferences/>
 
27
 
 
28
    <vbox flex="1" >
 
29
      <separator class="thin"/>
 
30
      <hbox flex="1">
 
31
        <listbox id="listProtectedCookies" flex="1">
 
32
          <listhead>
 
33
            <listheader label="&cookiedomain.label;" />
 
34
            <listheader label="&cookiename.label;" />
 
35
            <listheader label="&cookiepath.label;" />
 
36
          </listhead>
 
37
 
 
38
          <listcols>
 
39
            <listcol flex="1" />
 
40
            <listcol flex="1" />
 
41
            <listcol flex="1" />
 
42
          </listcols>
 
43
          <!-- dynamic listitem / listcell here -->
 
44
        </listbox>
 
45
        <vbox>
 
46
          <button id="buttonRemove"
 
47
                  label="&button.remove.label;"
 
48
                  accesskey="&button.remove.accesskey;"
 
49
                  oncommand="gCookieKeeperProtCookiesPrefs.remove();"
 
50
                  icon="remove" />
 
51
          <spacer flex="1"/>
 
52
        </vbox>
 
53
      </hbox>
 
54
      <separator class="thin"/>
 
55
    </vbox>
 
56
 
 
57
  </prefpane>
 
58
</overlay>