summaryrefslogtreecommitdiffstats
path: root/security/manager/pki/resources/content/clientauthask.xhtml
blob: 717dec5670d64ceca7cd17501a8df977732818c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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/. -->

<!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"
  onload="onLoad();"
>
  <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/pippki.js" />
    <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" oncommand="onCertSelected();" native="true">
      <menupopup />
    </menulist>

    <description
      class="important"
      data-l10n-id="client-auth-cert-details"
    ></description>

    <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>

    <checkbox
      id="rememberBox"
      data-l10n-id="client-auth-cert-remember-box"
      checked="true"
      native="true"
    />
  </dialog>
</window>