blob: 58407e922ce46242d9b6b03deac356eacaef217f (
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
<html>
</html>
<html id="t">
<head>
<title>About Sync</title>
<style type="text/css">
body {
font-size: 84%;
font-family: Arial, Helvetica, sans-serif;
padding: 0.75em;
margin: 0;
min-width: 45em;
}
h1 {
font-size: 110%;
font-weight: bold;
color: #4a8ee6;
letter-spacing: -1px;
padding: 0;
margin: 0;
}
h2 {
font-size: 110%;
letter-spacing: -1px;
font-weight: normal;
color: #4a8ee6;
padding: 0;
margin: 0;
padding: 0.5em 1em;
color: #3a75bd;
margin-left: -38px;
padding-left: 38px;
border-top: 1px solid #3a75bd;
padding-top: 0.5em;
}
h2:first-child {
border-top: 0;
padding-top: 0;
}
div#header {
padding: 0.75em 1em;
padding-top: 0.6em;
padding-left: 0;
margin-bottom: 0.75em;
position: relative;
overflow: hidden;
background: #5296de;
background-size: 100%;
border: 1px solid #3a75bd;
border-radius: 6px;
color: white;
text-shadow: 0 0 2px black;
}
div#header h1 {
padding-left: 37px;
margin: 0;
display: inline;
background: url('gear.png') 12px 60% no-repeat;
color: white;
}
.desc {
font-size: 84%;
}
.err {
color: red;
}
div#header p {
font-size: 84%;
font-style: italic;
padding: 0;
margin: 0;
color: white;
padding-left: 0.4em;
display: inline;
}
table.list {
line-height: 200%;
border-collapse: collapse;
font-size: 84%;
table-layout: fixed;
}
table.list:not([class*='filtered']) tr:nth-child(odd) td {
background: #eff3ff;
}
table.list#details2 tr:nth-child(odd) td {
background: #ccffcc
}
table.list td {
padding: 0 0.5em;
vertical-align: top;
line-height: 1.4em;
padding-top: 0.35em;
}
table.list tr td:nth-last-child(1),
table.list tr th:nth-last-child(1) {
padding-right: 1em;
}
table.list:not([class*='filtered']) .tab .name {
padding-left: 1.5em;
}
table.list .name {
}
table.list .name div {
height: 1.6em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
table.list .number {
width: 7em;
text-align: right;
}
table.list tr:not([class*='firstRow']) > *:nth-child(1),
table.list tr:not([class*='firstRow']) > *:nth-child(4),
table.list tr.firstRow th:nth-child(1),
table.list tr.firstRow th:nth-child(2) {
border-right: 1px solid #b5c6de;
}
table.list#details .name {
padding-left: 25px;
background-position: 5px center;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id='header'>
<h1>About Sync</h1>
<p> Sync engine diagnostic data</p>
</div>
<div id='content'>
<table width="100%">
<tr>
<td width="20%">
<span class="desc"><h2> Summary </h2></span>
<strong jscontent="summary"></strong>
</td>
<td>
<div class="desc" jsdisplay="unrecoverable_error_detected">
<span class="err">Unrecoverable Error Detected!</span>
<div jscontent="unrecoverable_error_message"></div>
<div jscontent="unrecoverable_error_location"></div>
</div>
</td>
</tr>
</table>
<br /><br /><br />
<h2> </h2>
<table>
<tr>
<td>
<div class="desc"><h2> Details </h2></div>
<table class='list' id='details'>
<tr>
<td class='name'> Authenticated </td>
<td class='number'>
<div jscontent="authenticated"> </div>
<div jsdisplay="!authenticated"
style="color:red"
jscontent="auth_problem"></div>
</td>
</tr>
</tr>
<tr>
<td class='name'>Last Synced</td>
<td class='number' jscontent="time_since_sync"> </td>
</tr>
<tr jsselect="details">
<td class='name'>
<div jscontent="stat_name"></div>
</td>
<td class='number'>
<div jscontent="stat_value"></div>
</td>
</tr>
</table>
</td>
<td valign="top">
<div class="desc"><h2> Routing Info </h2></div>
<table class='list' id='details2'>
<tr jsselect="routing_info">
<td class ='name'>
<div jscontent="model_type"></div>
</td>
<td class='number'>
<div jscontent="group"></div>
</td>
</tr>
</table>
</td>
</table>
</div>
</body>
</html>
|