1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/security/manager/pki/resources/content/certerror.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 1.4 +<?xml version="1.0"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 1.10 + 1.11 +<!DOCTYPE dialog [ 1.12 +<!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" > 1.13 +%pippkiDTD; 1.14 +]> 1.15 + 1.16 +<dialog id="certErrorDialog" title="&certErrorDlg.title;" 1.17 + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.18 + style="width: 47em;" 1.19 + onload="initCertErrorDialog();" 1.20 + buttons="cancel,extra1" 1.21 + defaultButton="cancel" 1.22 + buttonlabelextra1="&examineCert.label;" 1.23 + buttonaccesskeyextra1="&examineCert.accesskey;" 1.24 + ondialogextra1="viewCert();"> 1.25 + 1.26 +<stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> 1.27 + 1.28 +<script type="application/javascript" src="chrome://pippki/content/pippki.js"/> 1.29 +<script type="application/javascript" src="chrome://pippki/content/certerror.js"/> 1.30 + 1.31 +<hbox> 1.32 + <vbox> 1.33 +#ifdef MOZ_WIDGET_GTK 1.34 + <image src="moz-icon://stock/gtk-dialog-warning?size=dialog"/> 1.35 +#else 1.36 + <image src="chrome://global/skin/icons/warning-large.png"/> 1.37 +#endif 1.38 + <spacer flex="1"/> 1.39 + </vbox> 1.40 + <vbox flex="1"> 1.41 + <description id="warningText" 1.42 + style="white-space: pre-wrap"/> 1.43 + <separator/> 1.44 + <description id="info1">&certErrorDlg.info1;</description> 1.45 + <description id="info2">&certErrorDlg.info2;</description> 1.46 + </vbox> 1.47 +</hbox> 1.48 +</dialog>