blob: 4f7b700046f578df4c1e8e86559eea8837f3dc6b [file] [log] [blame]
Valentin Valchev66702252011-09-19 09:32:50 +00001<script type="text/javascript" src="${pluginRoot}/res/ui/addremove.js"></script>
2<script type="text/javascript" src="${pluginRoot}/res/ui/propeditor.js"></script>
3<script type="text/javascript" src="${pluginRoot}/res/ui/events.js"></script>
Valentin Valchev699cc022010-03-15 14:17:58 +00004<script type="text/javascript">
5var i18n = {
6 displayTimeline: '${displayTimeline}',
Valentin Valchev66702252011-09-19 09:32:50 +00007 displayList : '${displayList}',
8 close : '${close}',
9 send : '${send}',
10 post : '${post}'
Valentin Valchev699cc022010-03-15 14:17:58 +000011}
12</script>
13
14<!-- status line -->
15<p class="statline">&nbsp;</p>
16
17<!-- table caption -->
18<div class="ui-widget-header ui-corner-top buttonGroup">
19 <button id="switch">${displayTimeline}</button>
20 <button id="clear">${clear}</button>
Valentin Valchev66702252011-09-19 09:32:50 +000021 <button id="sendButton">${sendEvent}</button>
Valentin Valchev699cc022010-03-15 14:17:58 +000022 <button id="reload">${reload}</button>
23</div>
24
25<!-- table -->
26<table id="eventsTable" class="tablesorter nicetable">
27 <thead>
28 <tr>
29 <th class="col_Received">${received}</th>
30 <th class="col_Topic">${topic}</th>
31 <th class="col_Props">${properties}</th>
32 </tr>
33 </thead>
34 <tbody>
35 <tr>
36 <td>&nbsp;</td>
37 <td>&nbsp;</td>
38 <td>&nbsp;</td>
39 </tr>
40 </tbody>
41</table>
42
43<div id="timeline" class="ui-helper-hidden">&nbsp;</div>
Valentin Valchev66702252011-09-19 09:32:50 +000044
Valentin Valchevbb75c892010-03-24 07:34:38 +000045<div id="timelineLegend" class="ui-helper-hidden">
46 <span class="event eventservice">Service Event</span>
47 <span class="event eventbundle">Bundle Event</span>
48 <span class="event eventconfig">Config Event</span>
49 <span class="event eventframework">Framework Event</span>
50</div>
Valentin Valchev66702252011-09-19 09:32:50 +000051
52<div id="sendDialog" title="${sendEvent}" class="ui-helper-hidden">
53 <table>
54 <tbody>
55 <tr>
56 <th>${topic}:</th>
57 <td><input id="sendTopic"/></td>
58 </tr>
59 <tr>
60 <th>${properties}:</th>
61 <td>
62 <div id="sendProperties">&nbsp;</div>
63 </td>
64 </tr>
65 </tbody>
66 </table>
67</div>