browser/base/content/sync/quota.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/base/content/sync/quota.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,65 @@
     1.4 +<?xml version="1.0"?>
     1.5 +
     1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.9 +
    1.10 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
    1.11 +<?xml-stylesheet href="chrome://browser/skin/syncQuota.css"?>
    1.12 +
    1.13 +<!DOCTYPE dialog [
    1.14 +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
    1.15 +<!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
    1.16 +<!ENTITY % syncQuotaDTD SYSTEM "chrome://browser/locale/syncQuota.dtd">
    1.17 +%brandDTD;
    1.18 +%syncBrandDTD;
    1.19 +%syncQuotaDTD;
    1.20 +]>
    1.21 +<dialog id="quotaDialog"
    1.22 +        windowtype="Sync:ViewQuota"
    1.23 +        persist="screenX screenY width height"
    1.24 +        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    1.25 +        xmlns:html="http://www.w3.org/1999/xhtml"
    1.26 +        onload="gSyncQuota.init()"
    1.27 +        buttons="accept,cancel"
    1.28 +        title="&quota.dialogTitle.label;"
    1.29 +        ondialogcancel="return gSyncQuota.onCancel();"
    1.30 +        ondialogaccept="return gSyncQuota.onAccept();">
    1.31 +
    1.32 +  <script type="application/javascript"
    1.33 +          src="chrome://browser/content/sync/quota.js"/>
    1.34 +
    1.35 +  <stringbundleset id="stringbundleset">
    1.36 +    <stringbundle id="quotaStrings"
    1.37 +                  src="chrome://browser/locale/syncQuota.properties"/>
    1.38 +  </stringbundleset>
    1.39 +
    1.40 +  <vbox flex="1">
    1.41 +    <label id="usageLabel"
    1.42 +           value="&quota.retrievingInfo.label;"/>
    1.43 +    <separator/>
    1.44 +    <tree id="usageTree"
    1.45 +          seltype="single"
    1.46 +          hidecolumnpicker="true"
    1.47 +          onclick="gUsageTreeView.onTreeClick(event);"
    1.48 +          flex="1">
    1.49 +      <treecols>
    1.50 +        <treecol id="enabled"
    1.51 +                 type="checkbox"
    1.52 +                 fixed="true"/>
    1.53 +        <splitter class="tree-splitter"/>
    1.54 +        <treecol id="collection"
    1.55 +                 label="&quota.typeColumn.label;"
    1.56 +                 flex="1"/>
    1.57 +        <splitter class="tree-splitter"/>
    1.58 +        <treecol id="size"
    1.59 +                 label="&quota.sizeColumn.label;"
    1.60 +                 flex="1"/>
    1.61 +      </treecols>
    1.62 +      <treechildren flex="1"/>
    1.63 +    </tree>
    1.64 +    <separator/>
    1.65 +    <description id="treeCaption"> </description>
    1.66 +  </vbox>
    1.67 +
    1.68 +</dialog>

mercurial