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"?>
|
2016-12-19 11:57:34 +03:00
|
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/in-content/siteDataSettings.css" type="text/css"?>
|
2016-11-25 12:35:25 +03:00
|
|
|
|
|
|
|
<!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/siteDataSettings.dtd" >
|
|
|
|
|
|
|
|
<window id="SiteDataSettingsDialog" windowtype="Browser:SiteDataSettings"
|
|
|
|
class="windowDialog" title="&window.title;"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
style="width: 45em;"
|
|
|
|
onload="gSiteDataSettings.init();"
|
|
|
|
persist="screenX screenY width height">
|
|
|
|
|
|
|
|
<script src="chrome://browser/content/preferences/siteDataSettings.js"/>
|
|
|
|
|
|
|
|
<stringbundle id="bundlePreferences"
|
|
|
|
src="chrome://browser/locale/preferences/preferences.properties"/>
|
2017-04-07 16:04:49 +03:00
|
|
|
<stringbundle id="bundle_brand" src="chrome://branding/locale/brand.properties"/>
|
2016-11-25 12:35:25 +03:00
|
|
|
|
|
|
|
<vbox flex="1">
|
2017-04-07 16:04:49 +03:00
|
|
|
<description id="settingsDescription"></description>
|
2016-11-25 12:35:25 +03:00
|
|
|
<separator class="thin"/>
|
|
|
|
|
2017-03-01 13:00:22 +03:00
|
|
|
<hbox id="searchBoxContainer">
|
|
|
|
<textbox id="searchBox" type="search" flex="1"
|
2017-04-07 16:04:49 +03:00
|
|
|
placeholder="&searchTextboxPlaceHolder;" accesskey="&searchTextboxPlaceHolder.accesskey;"/>
|
2017-01-09 06:54:14 +03:00
|
|
|
</hbox>
|
|
|
|
<separator class="thin"/>
|
|
|
|
|
2016-11-25 12:35:25 +03:00
|
|
|
<richlistbox id="sitesList" orient="vertical" flex="1">
|
|
|
|
<listheader>
|
2016-12-19 09:26:21 +03:00
|
|
|
<treecol flex="4" width="50" label="&hostCol.label;" id="hostCol"/>
|
|
|
|
<treecol flex="2" width="50" label="&statusCol.label;" id="statusCol"/>
|
2017-04-11 17:47:48 +03:00
|
|
|
<!-- Sorted by usage so the user can quickly see which sites use the most data. -->
|
|
|
|
<treecol flex="1" width="50" label="&usageCol.label;" id="usageCol" data-isCurrentSortCol="true"/>
|
2016-11-25 12:35:25 +03:00
|
|
|
</listheader>
|
|
|
|
</richlistbox>
|
|
|
|
</vbox>
|
|
|
|
|
2016-12-19 11:57:34 +03:00
|
|
|
<hbox align="start">
|
|
|
|
<button id="removeSelected" label="&removeSelected.label;" accesskey="&removeSelected.accesskey;"/>
|
2017-02-09 07:00:12 +03:00
|
|
|
<button id="removeAll"/>
|
2016-12-19 11:57:34 +03:00
|
|
|
</hbox>
|
|
|
|
|
|
|
|
<vbox align="end">
|
|
|
|
<hbox>
|
|
|
|
<button id="cancel" label="&cancel.label;" accesskey="&cancel.accesskey;"/>
|
|
|
|
<button id="save" label="&save.label;" accesskey="&save.accesskey;"/>
|
|
|
|
</hbox>
|
|
|
|
</vbox>
|
|
|
|
|
2016-11-25 12:35:25 +03:00
|
|
|
</window>
|