blob: 71f6668fd0175183b2c27372cbc1208310c0e068 (
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
|
<script src="chrome://sync-internals/about.js"></script>
<style>
div.column {
display: inline-block;
padding-right: 5em;
vertical-align: top;
}
div#aboutInfo h2 {
color: #4a8ee6;
font-size: 100%;
}
div#aboutInfo .err {
color: red;
}
table#aboutDetails tr:nth-child(odd) {
background: #eff3ff;
}
table#routingInfo tr:nth-child(odd) {
background: #ccffcc;
}
</style>
<div id='aboutInfo'>
<div class="column">
<h2>Summary</h2>
<p jscontent="summary"/>
<p jsdisplay="unrecoverable_error_detected">
<span class="err" jscontent="unrecoverable_error_message"></span>
</p>
<p jsdisplay="failed_data_types">
<span class="err" jscontent="failed_data_types"></span>
</p>
<h2>Sync URL</h2>
<p jscontent="service_url"/>
<h2>Details</h2>
<table id="aboutDetails">
<tr>
<td>Authenticated</td>
<td>
<span jscontent="authenticated"></span>
<span jsdisplay="!authenticated" class="err" jscontent="auth_problem"></span>
</td>
</tr>
<tr>
<td>Last Synced</td>
<td jscontent="time_since_sync"/>
</tr>
<tr jsselect="details">
<td jscontent="stat_name"/>
<td jscontent="stat_value"/>
</tr>
</table>
</div>
<div class="column">
<h2>Routing Info</h2>
<table id="routingInfo">
<tr jsselect="routing_info">
<td jscontent="model_type"/>
<td jscontent="group"/>
</tr>
</table>
</div>
<div class="column">
<h2>Actionable Error</h2>
<table id="actionableError">
<tr jsselect="actionable_error">
<td jscontent="stat_name"/>
<td jscontent="stat_value"/>
</tr>
</table>
</div>
</div>
|