toolkit/mozapps/extensions/content/xpinstallConfirm.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/mozapps/extensions/content/xpinstallConfirm.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,37 @@
     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://mozapps/content/xpinstall/xpinstallConfirm.css" type="text/css"?>
    1.11 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
    1.12 +<?xml-stylesheet href="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css" type="text/css"?>
    1.13 +
    1.14 +<!DOCTYPE dialog SYSTEM "chrome://mozapps/locale/xpinstall/xpinstallConfirm.dtd">
    1.15 +
    1.16 +<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    1.17 +        id="xpinstallConfirm" title="&dialog.title;" style="&dialog.style;" 
    1.18 +        windowtype="Addons:Install"
    1.19 +        onload="XPInstallConfirm.init()" 
    1.20 +        ondialogaccept="return XPInstallConfirm.onOK();"
    1.21 +        ondialogcancel="return XPInstallConfirm.onCancel();">
    1.22 +
    1.23 +  <script src="chrome://mozapps/content/xpinstall/xpinstallConfirm.js" type="application/javascript"/>
    1.24 +
    1.25 +  <stringbundle id="xpinstallConfirmStrings" 
    1.26 +                src="chrome://mozapps/locale/xpinstall/xpinstallConfirm.properties"/>
    1.27 +
    1.28 +  <vbox flex="1" id="dialogContentBox">
    1.29 +    <hbox id="xpinstallheader" align="start">
    1.30 +      <image class="alert-icon"/>
    1.31 +      <vbox flex="1">
    1.32 +        <description class="warning">&warningPrimary.label;</description>
    1.33 +        <description>&warningSecondary.label;</description>
    1.34 +      </vbox>
    1.35 +    </hbox>
    1.36 +    <label id="itemWarningIntro"/>
    1.37 +    <vbox id="itemList" class="listbox" flex="1" style="overflow: auto;"/>
    1.38 +  </vbox>
    1.39 +
    1.40 +</dialog>

mercurial