119 lines
3.7 KiB
HTML
119 lines
3.7 KiB
HTML
<?xml version="1.0"?>
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<?csp default-src chrome:; ?>
|
|
|
|
<!DOCTYPE window>
|
|
|
|
<window
|
|
data-l10n-id="client-auth-window"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
>
|
|
<dialog
|
|
id="certAuthAsk"
|
|
buttons="accept,cancel"
|
|
buttonidcancel="client-auth-send-no-certificate"
|
|
>
|
|
<linkset>
|
|
<html:link rel="stylesheet" href="chrome://global/skin/global.css" />
|
|
<html:link
|
|
rel="stylesheet"
|
|
href="chrome://pippki/content/clientauthask.css"
|
|
/>
|
|
|
|
<html:link rel="localization" href="security/pippki/pippki.ftl" />
|
|
</linkset>
|
|
|
|
<stringbundleset id="stringbundleset">
|
|
<stringbundle
|
|
id="pippki_bundle"
|
|
src="chrome://pippki/locale/pippki.properties"
|
|
/>
|
|
</stringbundleset>
|
|
|
|
<script src="chrome://pippki/content/clientauthask.js" />
|
|
<script src="chrome://global/content/globalOverlay.js" />
|
|
<script src="chrome://global/content/editMenuOverlay.js" />
|
|
|
|
<description
|
|
class="important"
|
|
id="clientAuthSiteIdentification"
|
|
data-l10n-id="client-auth-site-identification"
|
|
data-l10n-args='{"hostname":""}'
|
|
></description>
|
|
|
|
<!-- The items in this menulist must never be sorted,
|
|
but remain in the order filled by the application
|
|
-->
|
|
<menulist id="nicknames" native="true">
|
|
<menupopup />
|
|
</menulist>
|
|
|
|
<description
|
|
class="important"
|
|
data-l10n-id="client-auth-cert-details"
|
|
></description>
|
|
<vbox class="info-box-container">
|
|
<description
|
|
id="clientAuthCertDetailsIssuedTo"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-issued-to"
|
|
data-l10n-args='{"issuedTo":""}'
|
|
></description>
|
|
<description
|
|
id="clientAuthCertDetailsSerialNumber"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-serial-number"
|
|
data-l10n-args='{"serialNumber":""}'
|
|
></description>
|
|
<description
|
|
id="clientAuthCertDetailsValidityPeriod"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-validity-period"
|
|
data-l10n-args='{"notBefore":"","notAfter":""}'
|
|
></description>
|
|
<description
|
|
id="clientAuthCertDetailsKeyUsages"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-key-usages"
|
|
data-l10n-args='{"keyUsages":""}'
|
|
></description>
|
|
<description
|
|
id="clientAuthCertDetailsEmailAddresses"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-email-addresses"
|
|
data-l10n-args='{"emailAddresses":""}'
|
|
></description>
|
|
<description
|
|
id="clientAuthCertDetailsIssuedBy"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-issued-by"
|
|
data-l10n-args='{"issuedBy":""}'
|
|
></description>
|
|
<description
|
|
id="clientAuthCertDetailsStoredOn"
|
|
class="details"
|
|
data-l10n-id="client-auth-cert-details-stored-on"
|
|
data-l10n-args='{"storedOn":""}'
|
|
></description>
|
|
</vbox>
|
|
|
|
<hbox align="center">
|
|
<spacer flex="1" />
|
|
<label data-l10n-id="client-auth-cert-remember-label" />
|
|
<menulist id="rememberSetting" flex="1">
|
|
<menupopup>
|
|
<menuitem value="0" data-l10n-id="client-auth-cert-remember-never" />
|
|
<menuitem value="1" data-l10n-id="client-auth-cert-remember-always" />
|
|
<menuitem
|
|
value="2"
|
|
data-l10n-id="client-auth-cert-remember-temporarily"
|
|
/>
|
|
</menupopup>
|
|
</menulist>
|
|
</hbox>
|
|
</dialog>
|
|
</window>
|