2016-11-25 12:35:25 +03:00
|
|
|
<?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/. -->
|
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://browser/content/preferences/siteDataSettings.css" type="text/css"?>
|
2017-08-21 12:48:18 +03:00
|
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/in-content/siteDataSettings.css" type="text/css"?>
|
2016-11-25 12:35:25 +03:00
|
|
|
|
|
|
|
<window id="SiteDataSettingsDialog" windowtype="Browser:SiteDataSettings"
|
2018-04-05 23:37:59 +03:00
|
|
|
data-l10n-id="site-data-settings-window"
|
|
|
|
data-l10n-attrs="title"
|
2016-11-25 12:35:25 +03:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2019-02-14 13:43:35 +03:00
|
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
2016-11-25 12:35:25 +03:00
|
|
|
style="width: 45em;"
|
|
|
|
onload="gSiteDataSettings.init();"
|
2017-08-21 11:26:42 +03:00
|
|
|
onkeypress="gSiteDataSettings.onKeyPress(event);"
|
2016-11-25 12:35:25 +03:00
|
|
|
persist="screenX screenY width height">
|
|
|
|
|
2018-09-07 04:30:37 +03:00
|
|
|
<linkset>
|
2019-02-14 13:43:35 +03:00
|
|
|
<html:link rel="localization" href="branding/brand.ftl"/>
|
|
|
|
<html:link rel="localization" href="browser/preferences/siteDataSettings.ftl"/>
|
2018-09-07 04:30:37 +03:00
|
|
|
</linkset>
|
2018-04-05 23:37:59 +03:00
|
|
|
|
2016-11-25 12:35:25 +03:00
|
|
|
<script src="chrome://browser/content/preferences/siteDataSettings.js"/>
|
|
|
|
|
2019-04-04 22:05:10 +03:00
|
|
|
<vbox flex="1" class="contentPane">
|
2018-04-23 20:12:21 +03:00
|
|
|
<description id="settingsDescription" data-l10n-id="site-data-settings-description"/>
|
2016-11-25 12:35:25 +03:00
|
|
|
<separator class="thin"/>
|
|
|
|
|
2017-03-01 13:00:22 +03:00
|
|
|
<hbox id="searchBoxContainer">
|
2019-05-13 21:12:37 +03:00
|
|
|
<textbox id="searchBox" is="search-textbox" flex="1"
|
2018-04-05 23:37:59 +03:00
|
|
|
data-l10n-id="site-data-search-textbox"/>
|
2017-01-09 06:54:14 +03:00
|
|
|
</hbox>
|
|
|
|
<separator class="thin"/>
|
|
|
|
|
2018-12-26 20:00:31 +03:00
|
|
|
<listheader>
|
|
|
|
<treecol flex="4" width="50" data-l10n-id="site-data-column-host" id="hostCol"/>
|
|
|
|
<treecol flex="1" width="50" data-l10n-id="site-data-column-cookies" id="cookiesCol"/>
|
|
|
|
<!-- Sorted by usage so the user can quickly see which sites use the most data. -->
|
|
|
|
<treecol flex="2" width="50" data-l10n-id="site-data-column-storage" id="usageCol" data-isCurrentSortCol="true"/>
|
|
|
|
<treecol flex="2" width="50" data-l10n-id="site-data-column-last-used" id="lastAccessedCol" />
|
|
|
|
</listheader>
|
|
|
|
<richlistbox seltype="multiple" id="sitesList" orient="vertical" flex="1"/>
|
2016-11-25 12:35:25 +03:00
|
|
|
</vbox>
|
|
|
|
|
2016-12-19 11:57:34 +03:00
|
|
|
<hbox align="start">
|
2018-04-05 23:37:59 +03:00
|
|
|
<button id="removeSelected" data-l10n-id="site-data-remove-selected"/>
|
2017-02-09 07:00:12 +03:00
|
|
|
<button id="removeAll"/>
|
2016-12-19 11:57:34 +03:00
|
|
|
</hbox>
|
|
|
|
|
|
|
|
<vbox align="end">
|
|
|
|
<hbox>
|
2018-04-05 23:37:59 +03:00
|
|
|
<button id="cancel" data-l10n-id="site-data-button-cancel"/>
|
|
|
|
<button id="save" data-l10n-id="site-data-button-save"/>
|
2016-12-19 11:57:34 +03:00
|
|
|
</hbox>
|
|
|
|
</vbox>
|
|
|
|
|
2016-11-25 12:35:25 +03:00
|
|
|
</window>
|