blob: 9e0e5d08476dbc5fd3b7d14f89633908aabc222e (
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
|
<style>
#import-view-command-line,
#import-view-user-comments {
/* Wrap long lines inside of PREs */
white-space: pre-wrap;
}
#import-view-load-status-text {
/* Wrap long lines inside of PREs */
white-space: pre-wrap;
}
.import-view-pending-log {
color: blue;
font-weight: bold;
}
.import-view-success-log {
color: green;
font-weight: bold;
}
.import-view-error-log {
color: red;
padding: 5px;
border: 1px solid red;
}
.import-view-warning-log {
color: red;
}
</style>
<div id=import-view-tab-content class=content-box>
<div id=import-view-loaded-div style="display: none">
<h2>Data Loaded</h2>
<table class=styled-table>
<tr>
<th>Export date</th>
<td id=import-view-export-date></td>
</tr>
<tr>
<th>Build</th>
<td id=import-view-build-name></td>
</tr>
<tr>
<th>OS type</th>
<td id=import-view-os-type></td>
</tr>
<tr>
<th>Command line</th>
<td><pre id=import-view-command-line></pre></td>
</tr>
<tr>
<th>User comments</th>
<td><pre id=import-view-user-comments></pre></td>
</tr>
</table>
</div>
<div>
<h2>Load data</h2>
<p><input type=file value="Load log from file" id=import-view-load-log-file></p>
<ul>
<li><b>TIP</b>: Try drag-and-drop into this window!</li>
</ul>
<pre id=import-view-load-status-text></pre>
</div>
</div>
|