File: cookies.xhtml

package info (click to toggle)
thunderbird 1%3A128.14.0esr-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,334,824 kB
  • sloc: cpp: 7,391,917; javascript: 5,617,271; ansic: 3,833,216; python: 1,230,742; xml: 619,690; asm: 456,022; java: 179,892; sh: 118,796; makefile: 21,908; perl: 14,825; objc: 12,399; yacc: 4,583; pascal: 2,973; lex: 1,720; ruby: 1,190; exp: 762; sql: 674; awk: 580; php: 436; lisp: 430; sed: 70; csh: 10
file content (208 lines) | stat: -rw-r--r-- 6,206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<!DOCTYPE html>
<html
  id="CookiesDialog"
  xmlns="http://www.w3.org/1999/xhtml"
  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"
  class="windowDialog"
  scrolling="false"
>
  <head>
    <title data-l10n-id="cookies-dialog-title"></title>
    <link rel="stylesheet" href="chrome://global/skin/global.css" />
    <link rel="stylesheet" href="chrome://messenger/skin/input-fields.css" />
    <link
      rel="stylesheet"
      href="chrome://messenger/skin/preferences/cookies.css"
    />
    <link rel="localization" href="messenger/preferences/cookies.ftl" />
    <script
      defer="defer"
      src="chrome://messenger/content/globalOverlay.js"
    ></script>
    <script
      defer="defer"
      src="chrome://global/content/editMenuOverlay.js"
    ></script>
    <script
      defer="defer"
      src="chrome://messenger/content/preferences/cookies.js"
    ></script>
  </head>
  <html:body
    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  >
    <stringbundle
      id="bundlePreferences"
      src="chrome://messenger/locale/preferences/preferences.properties"
    />
    <keyset>
      <key keycode="VK_ESCAPE" oncommand="window.close();" />
      <key
        data-l10n-id="window-focus-search-key"
        data-l10n-attrs="key"
        modifiers="accel"
        oncommand="gCookiesWindow.focusFilterBox();"
      />
      <key
        data-l10n-id="window-focus-search-alt-key"
        data-l10n-attrs="key"
        modifiers="accel"
        oncommand="gCookiesWindow.focusFilterBox();"
      />
    </keyset>

    <vbox flex="1" class="contentPane largeDialogContainer">
      <hbox align="center">
        <label data-l10n-id="filter-search-label" control="filter" />
        <search-textbox
          id="filter"
          flex="1"
          aria-controls="cookiesList"
          oncommand="gCookiesWindow.filter();"
        />
      </hbox>
      <separator class="thin" />
      <label
        control="cookiesList"
        id="cookiesIntro"
        data-l10n-id="cookies-on-system-label"
      />
      <separator class="thin" />
      <tree
        id="cookiesList"
        onkeypress="gCookiesWindow.onCookieKeyPress(event)"
        onselect="gCookiesWindow.onCookieSelected();"
        hidecolumnpicker="true"
        seltype="single"
      >
        <treecols>
          <treecol
            id="domainCol"
            data-l10n-id="treecol-site-header"
            primary="true"
            persist="width"
            onclick="gCookiesWindow.sort('rawHost');"
          />
          <splitter class="tree-splitter" />
          <treecol
            id="nameCol"
            data-l10n-id="treecol-name-header"
            persist="width"
            onclick="gCookiesWindow.sort('name');"
          />
        </treecols>
        <treechildren id="cookiesChildren" />
      </tree>
      <html:table id="cookieInfoSettings">
        <html:tr>
          <html:th>
            <label
              id="nameLabel"
              control="name"
              data-l10n-id="props-name-label"
            />
          </html:th>
          <html:td>
            <html:input id="name" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
        <html:tr>
          <html:th>
            <label
              id="valueLabel"
              control="value"
              data-l10n-id="props-value-label"
            />
          </html:th>
          <html:td>
            <html:input id="value" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
        <html:tr>
          <html:th>
            <label
              id="isDomain"
              control="host"
              data-l10n-id="props-domain-label"
            />
          </html:th>
          <html:td>
            <html:input id="host" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
        <html:tr>
          <html:th>
            <label
              id="pathLabel"
              control="path"
              data-l10n-id="props-path-label"
            />
          </html:th>
          <html:td>
            <html:input id="path" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
        <html:tr>
          <html:th>
            <label
              id="isSecureLabel"
              control="isSecure"
              data-l10n-id="props-secure-label"
            />
          </html:th>
          <html:td>
            <html:input id="isSecure" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
        <html:tr>
          <html:th>
            <label
              id="expiresLabel"
              control="expires"
              data-l10n-id="props-expires-label"
            />
          </html:th>
          <html:td>
            <html:input id="expires" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
        <html:tr id="userContextLabel">
          <html:th>
            <label control="userContext" data-l10n-id="props-container-label" />
          </html:th>
          <html:td>
            <html:input id="userContext" type="text" readonly="readonly" />
          </html:td>
        </html:tr>
      </html:table>
      <hbox align="end">
        <hbox class="actionButtons" flex="1">
          <button
            id="removeSelectedCookies"
            disabled="true"
            data-l10n-id="remove-cookie-button"
            oncommand="gCookiesWindow.deleteCookie();"
          />
          <button
            id="removeAllCookies"
            disabled="true"
            data-l10n-id="remove-all-cookies-button"
            oncommand="gCookiesWindow.deleteAllCookies();"
          />
          <spacer flex="1" />
          <button
            id="closeButton"
            oncommand="window.close();"
            data-l10n-id="cookie-close-button"
          />
        </hbox>
      </hbox>
    </vbox>
  </html:body>
</html>