Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 1 | <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 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}',
|
| 9 | send : '${send}',
|
| 10 | post : '${post}'
|
Valentin Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 11 | }
|
| 12 | </script>
|
| 13 |
|
| 14 | <!-- status line -->
|
| 15 | <p class="statline"> </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 Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 21 | <button id="sendButton">${sendEvent}</button>
|
Valentin Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 22 | <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> </td>
|
| 37 | <td> </td>
|
| 38 | <td> </td>
|
| 39 | </tr>
|
| 40 | </tbody>
|
| 41 | </table>
|
| 42 |
|
| 43 | <div id="timeline" class="ui-helper-hidden"> </div>
|
Valentin Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 44 |
|
Valentin Valchev | bb75c89 | 2010-03-24 07:34:38 +0000 | [diff] [blame] | 45 | <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 Valchev | 6670225 | 2011-09-19 09:32:50 +0000 | [diff] [blame] | 51 |
|
| 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"> </div>
|
| 63 | </td>
|
| 64 | </tr>
|
| 65 | </tbody>
|
| 66 | </table>
|
| 67 | </div>
|