blob: eee1e680dfa350754cf7eb8dab2cf9d11fddfe9a [file] [log] [blame]
Carsten Ziegelerb972c2b2013-07-26 08:47:46 +00001<script type="text/javascript" src="${pluginRoot}/res/ui/addremove.js"></script>
Valentin Valchev66702252011-09-19 09:32:50 +00002<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}',
Valentin Valchevd8be7302012-04-06 09:05:42 +00009 reset : '${reset}',
Valentin Valchev66702252011-09-19 09:32:50 +000010 send : '${send}',
11 post : '${post}'
Valentin Valchev699cc022010-03-15 14:17:58 +000012}
13</script>
14
15<!-- status line -->
16<p class="statline">&nbsp;</p>
17
18<!-- table caption -->
19<div class="ui-widget-header ui-corner-top buttonGroup">
20 <button id="switch">${displayTimeline}</button>
21 <button id="clear">${clear}</button>
Valentin Valchev66702252011-09-19 09:32:50 +000022 <button id="sendButton">${sendEvent}</button>
Valentin Valchev699cc022010-03-15 14:17:58 +000023 <button id="reload">${reload}</button>
24</div>
25
26<!-- table -->
27<table id="eventsTable" class="tablesorter nicetable">
28 <thead>
29 <tr>
30 <th class="col_Received">${received}</th>
31 <th class="col_Topic">${topic}</th>
32 <th class="col_Props">${properties}</th>
33 </tr>
34 </thead>
35 <tbody>
36 <tr>
37 <td>&nbsp;</td>
38 <td>&nbsp;</td>
39 <td>&nbsp;</td>
40 </tr>
41 </tbody>
42</table>
43
44<div id="timeline" class="ui-helper-hidden">&nbsp;</div>
Valentin Valchev66702252011-09-19 09:32:50 +000045
Valentin Valchevbb75c892010-03-24 07:34:38 +000046<div id="timelineLegend" class="ui-helper-hidden">
47 <span class="event eventservice">Service Event</span>
48 <span class="event eventbundle">Bundle Event</span>
49 <span class="event eventconfig">Config Event</span>
50 <span class="event eventframework">Framework Event</span>
51</div>
Valentin Valchev66702252011-09-19 09:32:50 +000052
53<div id="sendDialog" title="${sendEvent}" class="ui-helper-hidden">
54 <table>
55 <tbody>
56 <tr>
57 <th>${topic}:</th>
58 <td><input id="sendTopic"/></td>
59 </tr>
60 <tr>
61 <th>${properties}:</th>
Valentin Valchevd8be7302012-04-06 09:05:42 +000062 <td id="sendProperties"></td>
Valentin Valchev66702252011-09-19 09:32:50 +000063 </tr>
64 </tbody>
65 </table>
66</div>