browser/base/content/sync/quota.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 6
michael@0 7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
michael@0 8 <?xml-stylesheet href="chrome://browser/skin/syncQuota.css"?>
michael@0 9
michael@0 10 <!DOCTYPE dialog [
michael@0 11 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
michael@0 12 <!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
michael@0 13 <!ENTITY % syncQuotaDTD SYSTEM "chrome://browser/locale/syncQuota.dtd">
michael@0 14 %brandDTD;
michael@0 15 %syncBrandDTD;
michael@0 16 %syncQuotaDTD;
michael@0 17 ]>
michael@0 18 <dialog id="quotaDialog"
michael@0 19 windowtype="Sync:ViewQuota"
michael@0 20 persist="screenX screenY width height"
michael@0 21 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 22 xmlns:html="http://www.w3.org/1999/xhtml"
michael@0 23 onload="gSyncQuota.init()"
michael@0 24 buttons="accept,cancel"
michael@0 25 title="&quota.dialogTitle.label;"
michael@0 26 ondialogcancel="return gSyncQuota.onCancel();"
michael@0 27 ondialogaccept="return gSyncQuota.onAccept();">
michael@0 28
michael@0 29 <script type="application/javascript"
michael@0 30 src="chrome://browser/content/sync/quota.js"/>
michael@0 31
michael@0 32 <stringbundleset id="stringbundleset">
michael@0 33 <stringbundle id="quotaStrings"
michael@0 34 src="chrome://browser/locale/syncQuota.properties"/>
michael@0 35 </stringbundleset>
michael@0 36
michael@0 37 <vbox flex="1">
michael@0 38 <label id="usageLabel"
michael@0 39 value="&quota.retrievingInfo.label;"/>
michael@0 40 <separator/>
michael@0 41 <tree id="usageTree"
michael@0 42 seltype="single"
michael@0 43 hidecolumnpicker="true"
michael@0 44 onclick="gUsageTreeView.onTreeClick(event);"
michael@0 45 flex="1">
michael@0 46 <treecols>
michael@0 47 <treecol id="enabled"
michael@0 48 type="checkbox"
michael@0 49 fixed="true"/>
michael@0 50 <splitter class="tree-splitter"/>
michael@0 51 <treecol id="collection"
michael@0 52 label="&quota.typeColumn.label;"
michael@0 53 flex="1"/>
michael@0 54 <splitter class="tree-splitter"/>
michael@0 55 <treecol id="size"
michael@0 56 label="&quota.sizeColumn.label;"
michael@0 57 flex="1"/>
michael@0 58 </treecols>
michael@0 59 <treechildren flex="1"/>
michael@0 60 </tree>
michael@0 61 <separator/>
michael@0 62 <description id="treeCaption"> </description>
michael@0 63 </vbox>
michael@0 64
michael@0 65 </dialog>

mercurial