blob: 6ded7130a40ca1e49f6bcb5582ee582d0e5c8512 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
# 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 html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title data-l10n-id="about-policies-title" />
<link
rel="stylesheet"
href="chrome://messenger/skin/aboutPolicies.css"
type="text/css"
/>
<link rel="localization" href="branding/brand.ftl" />
<link rel="localization" href="messenger/policies/aboutPolicies.ftl" />
<link
rel="localization"
href="messenger/policies/policies-descriptions.ftl"
/>
<script
type="application/javascript"
src="chrome://messenger/content/policies/aboutPolicies.js"
/>
</head>
<body id="body" onload="init()">
<div id="categories">
<div class="category" selected="true" id="category-active">
<img
class="category-icon"
src="chrome://messenger/content/policies/policies-active.svg"
alt=""
/>
<label class="category-name" data-l10n-id="active-policies-tab"></label>
</div>
<div class="category" id="category-documentation">
<img
class="category-icon"
src="chrome://messenger/content/policies/policies-documentation.svg"
alt=""
/>
<label class="category-name" data-l10n-id="documentation-tab"></label>
</div>
<div class="category" id="category-errors">
<img
class="category-icon"
src="chrome://messenger/content/policies/policies-error.svg"
alt=""
/>
<label class="category-name" data-l10n-id="errors-tab"></label>
</div>
</div>
<div class="main-content">
<div class="header">
<div
id="sectionTitle"
class="header-name"
data-l10n-id="active-policies-tab"
/>
</div>
<div id="active" class="tab active">
<h3
class="inactive-service-message"
data-l10n-id="inactive-message"
></h3>
<h3
class="no-specified-policies-message"
data-l10n-id="no-specified-policies-message"
></h3>
<table>
<thead>
<tr>
<th data-l10n-id="policy-name" />
<th data-l10n-id="policy-value" />
</tr>
</thead>
<tbody id="activeContent" />
</table>
</div>
<div id="documentation" class="tab" hidden="true">
<table>
<thead>
<tr>
<th data-l10n-id="policy-name" />
</tr>
</thead>
<tbody id="documentationContent" />
</table>
</div>
<div id="errors" class="tab" hidden="true">
<table>
<thead>
<tr>
<th data-l10n-id="policy-errors" />
</tr>
</thead>
<tbody id="errorsContent" />
</table>
</div>
</div>
</body>
</html>
|