blob: 8963b8c177251e342726db246c7a391901523d2b (
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
|
<?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
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
data-l10n-id="load-device"
>
<dialog id="loaddevice" buttons="accept,cancel">
<linkset>
<html:link rel="stylesheet" href="chrome://global/skin/global.css" />
<html:link
rel="localization"
href="security/certificates/deviceManager.ftl"
/>
</linkset>
<script src="chrome://global/content/globalOverlay.js" />
<script src="chrome://global/content/editMenuOverlay.js" />
<script src="chrome://pippki/content/pippki.js" />
<script src="chrome://pippki/content/load_device.js" />
<html:style>
#device_name, #device_path { flex: 1; }
</html:style>
<description data-l10n-id="load-device-info"></description>
<hbox align="center">
<label data-l10n-id="load-device-modname" control="device_name" />
<html:input
id="device_name"
data-l10n-id="load-device-modname-default"
data-l10n-attrs="value"
onchange="validateModuleName();"
/>
</hbox>
<hbox align="center">
<label data-l10n-id="load-device-filename" control="device_path" />
<html:input id="device_path" />
<button
id="browse"
flex="1"
data-l10n-id="load-device-browse"
oncommand="onBrowseBtnPress();"
/>
</hbox>
<label id="helpText" value="" />
</dialog>
</window>
|