Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 7 | |
michael@0 | 8 | <!DOCTYPE dialog [ |
michael@0 | 9 | <!ENTITY % pippkiDTD SYSTEM "chrome://pippki/locale/pippki.dtd" > |
michael@0 | 10 | %pippkiDTD; |
michael@0 | 11 | ]> |
michael@0 | 12 | |
michael@0 | 13 | <dialog id="certErrorDialog" title="&certErrorDlg.title;" |
michael@0 | 14 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 15 | style="width: 47em;" |
michael@0 | 16 | onload="initCertErrorDialog();" |
michael@0 | 17 | buttons="cancel,extra1" |
michael@0 | 18 | defaultButton="cancel" |
michael@0 | 19 | buttonlabelextra1="&examineCert.label;" |
michael@0 | 20 | buttonaccesskeyextra1="&examineCert.accesskey;" |
michael@0 | 21 | ondialogextra1="viewCert();"> |
michael@0 | 22 | |
michael@0 | 23 | <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> |
michael@0 | 24 | |
michael@0 | 25 | <script type="application/javascript" src="chrome://pippki/content/pippki.js"/> |
michael@0 | 26 | <script type="application/javascript" src="chrome://pippki/content/certerror.js"/> |
michael@0 | 27 | |
michael@0 | 28 | <hbox> |
michael@0 | 29 | <vbox> |
michael@0 | 30 | #ifdef MOZ_WIDGET_GTK |
michael@0 | 31 | <image src="moz-icon://stock/gtk-dialog-warning?size=dialog"/> |
michael@0 | 32 | #else |
michael@0 | 33 | <image src="chrome://global/skin/icons/warning-large.png"/> |
michael@0 | 34 | #endif |
michael@0 | 35 | <spacer flex="1"/> |
michael@0 | 36 | </vbox> |
michael@0 | 37 | <vbox flex="1"> |
michael@0 | 38 | <description id="warningText" |
michael@0 | 39 | style="white-space: pre-wrap"/> |
michael@0 | 40 | <separator/> |
michael@0 | 41 | <description id="info1">&certErrorDlg.info1;</description> |
michael@0 | 42 | <description id="info2">&certErrorDlg.info2;</description> |
michael@0 | 43 | </vbox> |
michael@0 | 44 | </hbox> |
michael@0 | 45 | </dialog> |