OLD | NEW |
---|---|
1 <!-- ================= Events view =================== --> | 1 <!-- ================= Events view =================== --> |
2 | 2 |
3 <!-- Filter Box: This the top bar which contains the search box. --> | 3 <!-- Filter Box: This the top bar which contains the search box. --> |
4 <div id=events-view-filter-box> | 4 <div id=events-view-filter-box> |
5 <table width=100%> | 5 <table width=100%> |
6 <tr> | 6 <tr> |
7 <td width=1%>Filter:</td> | 7 <td width=1%>Filter:</td> |
8 <td width=98%><input type="search" incremental id=events-view-filter-input /></td> | 8 <td width=98%><input type="search" incremental id=events-view-filter-input /></td> |
9 <td width=1% id=events-view-filter-count>(1 of 34)</td> | 9 <td width=1% id=events-view-filter-count>(1 of 34)</td> |
10 </tr> | 10 </tr> |
(...skipping 11 matching lines...) Expand all Loading... | |
22 </tr> | 22 </tr> |
23 </thead> | 23 </thead> |
24 <!-- Events table body: This is where request rows go into --> | 24 <!-- Events table body: This is where request rows go into --> |
25 <tbody id=events-view-source-list-tbody></tbody> | 25 <tbody id=events-view-source-list-tbody></tbody> |
26 </table> | 26 </table> |
27 </div> | 27 </div> |
28 <!-- Action Box: This is a button bar along the bottom --> | 28 <!-- Action Box: This is a button bar along the bottom --> |
29 <div id=events-view-action-box> | 29 <div id=events-view-action-box> |
30 <input type=button value="Delete selected" id=events-view-delete-selected /> | 30 <input type=button value="Delete selected" id=events-view-delete-selected /> |
31 <input type=button value="Delete all" id=events-view-delete-all /> | 31 <input type=button value="Delete all" id=events-view-delete-all /> |
32 <input type=button value="Clear cache" id=events-view-clear-cache class=warnin gText /> | |
eroman
2011/11/17 20:46:36
I'm not convinced that the Events tab is the right
| |
33 <input type=button value="Flush sockets" id=events-view-flush-sockets class=wa rningText /> | |
32 </div> | 34 </div> |
33 <!-- Splitter Box: This is a handle to resize the vertical divider --> | 35 <!-- Splitter Box: This is a handle to resize the vertical divider --> |
34 <div id=events-view-splitter-box class=vertical-splitter></div> | 36 <div id=events-view-splitter-box class=vertical-splitter></div> |
35 <!-- Details box: This is the panel on the right which shows information --> | 37 <!-- Details box: This is the panel on the right which shows information --> |
36 <div id=events-view-details-tab-handles> | 38 <div id=events-view-details-tab-handles> |
37 <table class=events-view-tab-switcher cellspacing=0> | 39 <table class=events-view-tab-switcher cellspacing=0> |
38 <tr> | 40 <tr> |
39 <th id=events-view-details-log-tab>Log</th> | 41 <th id=events-view-details-log-tab>Log</th> |
40 <td> </td> | 42 <td> </td> |
41 <th id=events-view-details-timeline-tab>Timeline</th> | 43 <th id=events-view-details-timeline-tab>Timeline</th> |
42 </tr> | 44 </tr> |
43 </table> | 45 </table> |
44 <div class=events-view-tab-switcher-line></div> | 46 <div class=events-view-tab-switcher-line></div> |
45 </div> | 47 </div> |
46 <div id=events-view-details-log-box></div> | 48 <div id=events-view-details-log-box></div> |
47 <div id=events-view-details-timeline-box></div> | 49 <div id=events-view-details-timeline-box></div> |
OLD | NEW |