1<?xml version="1.0"?>
2<!-- This Source Code Form is subject to the terms of the Mozilla Public
3   - License, v. 2.0. If a copy of the MPL was not distributed with this
4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5
6<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
7
8<!DOCTYPE window>
9
10<window data-l10n-id="client-auth-window"
11  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
12  xmlns:html="http://www.w3.org/1999/xhtml"
13  onload="onLoad();">
14<dialog id="certAuthAsk"
15  buttons="accept,cancel">
16
17<linkset>
18  <html:link rel="localization" href="security/pippki/pippki.ftl"/>
19</linkset>
20
21<stringbundleset id="stringbundleset">
22  <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
23</stringbundleset>
24
25<script src="chrome://pippki/content/pippki.js"/>
26<script src="chrome://pippki/content/clientauthask.js"/>
27<script src="chrome://global/content/globalOverlay.js"/>
28<script src="chrome://global/content/editMenuOverlay.js"/>
29
30<description style="font-weight: bold;" data-l10n-id="client-auth-site-description"></description>
31<description id="hostname"/>
32<description id="organization"/>
33<description id="issuer"/>
34
35<description style="font-weight: bold;" data-l10n-id="client-auth-choose-cert"></description>
36<!-- The items in this menulist must never be sorted,
37     but remain in the order filled by the application
38-->
39<menulist id="nicknames" oncommand="onCertSelected();" native="true">
40    <menupopup/>
41</menulist>
42<description data-l10n-id="client-auth-cert-details"></description>
43<html:textarea readonly="readonly" id="details" style="height: 11em;"/>
44<checkbox id="rememberBox" checked="true" native="true"/>
45
46</dialog>
47</window>
48