blob: ddf0387135c6b604ca8e79fddad82ff821d33caf (
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
|
<!-- ================= Events view =================== -->
<!-- Filter Box: This the top bar which contains the search box. -->
<div id=events-view-filter-box>
<table width=100%>
<tr>
<td width=1%>
<span id=events-view-filter-help-hover class=mouse-over-help-hover>(?)</span>
</td>
<td width=98%><input type="search" incremental id=events-view-filter-input title="Sort and filter"></td>
<td width=1% id=events-view-filter-count>(1 of 34)</td>
</tr>
</table>
</div>
<!-- Inline filter help -->
<div id=events-view-filter-help class=mouse-over-help>
Sort options:
<ul>
<li>sort:id (default)
<li>sort:desc
<li>sort:duration
<li>sort:type
<li>-sort:<option> Reverses sort order
</ul>
Additional filters:
<ul>
<li>id:#[,#]*
<li>type:<type>[,<type>]*
<li>is:active
<li>is:error
<li>-<filter> Inverts a filter.
</ul>
</div>
<!-- Events Box: This the panel on the left which lists the sources -->
<div id=events-view-source-list>
<table id=events-view-source-list-table cellspacing=0 cellpadding=0 width=100%>
<thead>
<tr>
<td style='border-left:0'><input type=checkbox id=events-view-select-all title="Select all"></td>
<td id=events-view-sort-by-id>ID</td>
<td id=events-view-sort-by-source>Source Type</td>
<td id=events-view-sort-by-description width=99%>Description</td>
</tr>
</thead>
<!-- Events table body: This is where request rows go into -->
<tbody id=events-view-source-list-tbody></tbody>
</table>
</div>
<!-- Splitter Box: This is a handle to resize the vertical divider -->
<div id=events-view-splitter-box class=vertical-splitter></div>
<!-- Details box: This is the panel on the right which shows information -->
<div id=events-view-details-log-box class="event-log content-box"></div>
|