blob: bba2afc83aded7a793fe32ec6166a334d10cdb7e (
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
117
118
119
120
121
122
|
<!DOCTYPE HTML>
<html i18n-values="dir:textdirection">
<head>
<meta charset="utf-8">
<title i18n-content="title"></title>
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="uber/uber_shared.css">
<link rel="stylesheet" href="chrome://policy/policy.css">
<script src="chrome://resources/js/cr.js"></script>
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/load_time_data.js"></script>
<script src="chrome://resources/js/util.js"></script>
<script src="chrome://policy/uber_utils.js"></script>
</head>
<body class="uber-frame"
i18n-values=".style.fontFamily:fontfamily; .style.fontSize:fontsize">
<div id="filter-overlay" class="page">
<header>
<input id="filter" class="search-field-container" type="search"
i18n-values="placeholder:filterPlaceholder;
aria-label:filterPlaceholder" incremental>
</input>
</header>
</div>
<div class="page">
<header>
<h1 i18n-content="title"></h1>
</header>
<section>
<button id="reload-policies" i18n-content="reloadPolicies"></button>
</section>
<section id="status" hidden>
<h3 i18n-content="status"></h3>
<div id="status-box-container"></span>
</section>
<section class="empty">
<h3 i18n-content="title"></h3>
<div id="show-unset-container">
<label>
<input id="show-unset" type="checkbox"></input>
<span i18n-content="showUnset"></span>
</label>
</div>
<div class="no-policies-set" i18n-content="noPoliciesSet"></div>
<table id="policy-table">
<thead>
<tr>
<th i18n-content="headerScope"></th>
<th i18n-content="headerLevel"></th>
<th i18n-content="headerName"></th>
<th i18n-content="headerValue"></th>
<th i18n-content="headerStatus"></th>
</tr>
</thead>
</table>
</section>
</div>
<div hidden>
<fieldset id="status-box-template">
<legend class="legend"></legend>
<div class="status-entry" hidden>
<div class="label" i18n-content="labelDomain"></div>
<div class="domain"></div>
</div>
<div class="status-entry" hidden>
<div class="label" i18n-content="labelUsername"></div>
<div class="username"></div>
</div>
<div class="status-entry">
<div class="label" i18n-content="labelClientId"></div>
<div class="client-id"></div>
</div>
<div class="status-entry">
<div class="label" i18n-content="labelTimeSinceLastRefresh"></div>
<div class="time-since-last-refresh"></div>
</div>
<div class="status-entry">
<div class="label" i18n-content="labelRefreshInterval"></div>
<div class="refresh-interval"></div>
</div>
<div class="status-entry">
<div class="label" i18n-content="labelStatus"></div>
<div class="status"></div>
</div>
</fieldset>
<table>
<tbody id="policy-template">
<tr>
<td>
<div class="scope elide"></div>
</td>
<td>
<div class="level elide"></div>
</td>
<td>
<div class="name elide"></div>
</td>
<td>
<div class="value-container">
<span class="value"></span>
<button class="toggle-expanded-value link-button"></button>
</div>
</td>
<td>
<div class="status elide"></div>
</td>
</tr>
<tr class="expanded-value-container">
<td class="expanded-value" colspan=5></td>
</tr>
</tbody>
</table>
</div>
</body>
<script src="chrome://policy/strings.js"></script>
<script src="chrome://resources/js/i18n_template2.js"></script>
<script src="chrome://policy/policy.js"></script>
</html>
|