summaryrefslogtreecommitdiffstats
path: root/application/basilisk/components/preferences/cookies.xul
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-12-16 13:57:01 -0500
committerMatt A. Tobin <email@mattatobin.com>2019-12-16 13:57:01 -0500
commit06494f307850c576868831bd28a61464eab1f359 (patch)
treef281f5c46c3e0b73c7eabe22f02622dc013b0c35 /application/basilisk/components/preferences/cookies.xul
parente7d4713e0765c79feddf2384d343d10595fa5cb3 (diff)
downloadUXP-06494f307850c576868831bd28a61464eab1f359.tar
UXP-06494f307850c576868831bd28a61464eab1f359.tar.gz
UXP-06494f307850c576868831bd28a61464eab1f359.tar.lz
UXP-06494f307850c576868831bd28a61464eab1f359.tar.xz
UXP-06494f307850c576868831bd28a61464eab1f359.zip
Remove Basilisk from the Unified XUL Platform repository
Development will proceed at https://github.com/MoonchildProductions/Basilisk
Diffstat (limited to 'application/basilisk/components/preferences/cookies.xul')
-rw-r--r--application/basilisk/components/preferences/cookies.xul105
1 files changed, 0 insertions, 105 deletions
diff --git a/application/basilisk/components/preferences/cookies.xul b/application/basilisk/components/preferences/cookies.xul
deleted file mode 100644
index d5fefdef7..000000000
--- a/application/basilisk/components/preferences/cookies.xul
+++ /dev/null
@@ -1,105 +0,0 @@
-<?xml version="1.0"?>
-
-# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
-# 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/.
-
-<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
-<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?>
-
-<!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/cookies.dtd" >
-
-<window id="CookiesDialog" windowtype="Browser:Cookies"
- class="windowDialog" title="&window.title;"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- style="width: &window.width;;"
- onload="gCookiesWindow.init();"
- onunload="gCookiesWindow.uninit();"
- persist="screenX screenY width height"
- onkeypress="gCookiesWindow.onWindowKeyPress(event);">
-
- <script src="chrome://browser/content/preferences/cookies.js"/>
-
- <stringbundle id="bundlePreferences"
- src="chrome://browser/locale/preferences/preferences.properties"/>
-
- <keyset>
- <key key="&windowClose.key;" modifiers="accel" oncommand="window.close();"/>
- <key key="&focusSearch1.key;" modifiers="accel" oncommand="gCookiesWindow.focusFilterBox();"/>
- <key key="&focusSearch2.key;" modifiers="accel" oncommand="gCookiesWindow.focusFilterBox();"/>
- </keyset>
-
- <vbox flex="1" class="contentPane largeDialogContainer">
- <hbox align="center">
- <label accesskey="&filter.accesskey;" control="filter">&filter.label;</label>
- <textbox type="search" id="filter" flex="1"
- aria-controls="cookiesList"
- oncommand="gCookiesWindow.filter();"/>
- </hbox>
- <separator class="thin"/>
- <label control="cookiesList" id="cookiesIntro" value="&cookiesonsystem.label;"/>
- <separator class="thin"/>
- <tree id="cookiesList" flex="1" style="height: 10em;"
- onkeypress="gCookiesWindow.onCookieKeyPress(event)"
- onselect="gCookiesWindow.onCookieSelected();"
- hidecolumnpicker="true" seltype="single">
- <treecols>
- <treecol id="domainCol" label="&cookiedomain.label;" flex="2" primary="true"
- persist="width" onclick="gCookiesWindow.sort('rawHost');"/>
- <splitter class="tree-splitter"/>
- <treecol id="nameCol" label="&cookiename.label;" flex="1"
- persist="width"
- onclick="gCookiesWindow.sort('name');"/>
- </treecols>
- <treechildren id="cookiesChildren"/>
- </tree>
- <hbox id="cookieInfoBox">
- <grid flex="1" id="cookieInfoGrid">
- <columns>
- <column/>
- <column flex="1"/>
- </columns>
- <rows>
- <row align="center">
- <hbox pack="end"><label id="nameLabel" control="name" value="&props.name.label;"/></hbox>
- <textbox id="name" readonly="true" class="plain"/>
- </row>
- <row align="center">
- <hbox pack="end"><label id="valueLabel" control="value" value="&props.value.label;"/></hbox>
- <textbox id="value" readonly="true" class="plain"/>
- </row>
- <row align="center">
- <hbox pack="end"><label id="isDomain" control="host" value="&props.domain.label;"/></hbox>
- <textbox id="host" readonly="true" class="plain"/>
- </row>
- <row align="center">
- <hbox pack="end"><label id="pathLabel" control="path" value="&props.path.label;"/></hbox>
- <textbox id="path" readonly="true" class="plain"/>
- </row>
- <row align="center">
- <hbox pack="end"><label id="isSecureLabel" control="isSecure" value="&props.secure.label;"/></hbox>
- <textbox id="isSecure" readonly="true" class="plain"/>
- </row>
- <row align="center">
- <hbox pack="end"><label id="expiresLabel" control="expires" value="&props.expires.label;"/></hbox>
- <textbox id="expires" readonly="true" class="plain"/>
- </row>
- </rows>
- </grid>
- </hbox>
- </vbox>
- <hbox align="end">
- <hbox class="actionButtons" flex="1">
- <button id="removeSelectedCookies" disabled="true" icon="clear"
- oncommand="gCookiesWindow.deleteCookie();"/>
- <button id="removeAllCookies" disabled="true" icon="clear"
- oncommand="gCookiesWindow.deleteAllCookies();"/>
- <spacer flex="1"/>
-#ifndef XP_MACOSX
- <button oncommand="close();" icon="close"
- label="&button.close.label;" accesskey="&button.close.accesskey;"/>
-#endif
- </hbox>
- </hbox>
-</window>