Carsten Ziegeler | b972c2b | 2013-07-26 08:47:46 +0000 | [diff] [blame] | 1 | <script type="text/javascript" src="${pluginRoot}/res/ui/addremove.js"></script>
|
Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 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 Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 4 | <script type="text/javascript">
|
| 5 | var i18n = {
|
| 6 | displayTimeline: '${displayTimeline}',
|
Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 7 | displayList : '${displayList}',
|
| 8 | close : '${close}',
|
Valentin Valchev | d8be730 | 2012-04-06 09:05:42 +0000 | [diff] [blame] | 9 | reset : '${reset}',
|
Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 10 | send : '${send}',
|
| 11 | post : '${post}'
|
Valentin Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 12 | }
|
| 13 | </script>
|
| 14 |
|
| 15 | <!-- status line -->
|
| 16 | <p class="statline"> </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 Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 22 | <button id="sendButton">${sendEvent}</button>
|
Valentin Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 23 | <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> </td>
|
| 38 | <td> </td>
|
| 39 | <td> </td>
|
| 40 | </tr>
|
| 41 | </tbody>
|
| 42 | </table>
|
| 43 |
|
| 44 | <div id="timeline" class="ui-helper-hidden"> </div>
|
Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 45 |
|
Valentin Valchev | bb75c89 | 2010-03-24 07:34:38 +0000 | [diff] [blame] | 46 | <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 Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 52 |
|
| 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 Valchev | d8be730 | 2012-04-06 09:05:42 +0000 | [diff] [blame] | 62 | <td id="sendProperties"></td>
|
Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 63 | </tr>
|
| 64 | </tbody>
|
| 65 | </table>
|
| 66 | </div>
|