Valentin Valchev | 32cf3b1 | 2011-09-12 14:45:53 +0000 | [diff] [blame^] | 1 | <script type="text/javascript" src="${pluginRoot}/res/plugin.js"></script>
|
| 2 | <script type="text/javascript">
|
| 3 | // <![CDATA[
|
| 4 | var drawDetails = ${__drawDetails__};
|
| 5 | var scrData = ${__data__};
|
| 6 | // i18n
|
| 7 | var i18n = {
|
| 8 | 'Bundle' : '${scr.prop.bundle}',
|
| 9 | 'Default State' : '${scr.prop.defstate}',
|
| 10 | 'Activation' : '${scr.prop.activation}',
|
| 11 | 'Service Type' : '${scr.serv.type}',
|
| 12 | 'Services' : '${scr.serv}',
|
| 13 | 'Properties' : '${scr.prop.properties}',
|
| 14 | 'Implementation Class' : '${scr.prop.class}',
|
| 15 | 'Component Factory Name' : '${scr.prop.componentfactory}',
|
| 16 | 'Configuration Policy' : '${scr.prop.configurationpolicy}',
|
| 17 | stat_no_service : "${scr.status.no_service}",
|
| 18 | stat_no_components : "${scr.status.no_components}",
|
| 19 | stat_ok : "${scr.status.ok}"
|
| 20 | }
|
| 21 | // ]]>
|
| 22 | </script>
|
| 23 | <p class="statline"> </p>
|
| 24 |
|
| 25 |
|
| 26 | <div id="scr"> <!-- data available -->
|
| 27 | <!-- top header -->
|
| 28 | <form method='post' enctype='multipart/form-data' action="${pluginRoot}">
|
| 29 | <div class="ui-widget-header ui-corner-top buttonGroup">
|
| 30 | <button class='reloadButton' type='button' name='reload'>${reload}</button>
|
| 31 | </div>
|
| 32 | </form>
|
| 33 |
|
| 34 | <table id="plugin_table" class="tablesorter nicetable noauto">
|
| 35 | <thead>
|
| 36 | <tr>
|
| 37 | <th class="col_Id">${id}</th>
|
| 38 | <th class="col_Name">${scr.title.name}</th>
|
| 39 | <th class="col_Status">${scr.title.status}</th>
|
| 40 | <th class="col_Actions">${scr.title.actions}</th>
|
| 41 | </tr>
|
| 42 | </thead>
|
| 43 | <tbody>
|
| 44 | <tr>
|
| 45 | <td> </td> <!-- id -->
|
| 46 | <td> <!-- name with arrow -->
|
| 47 | <div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="${scr.details.tip}"> </div>
|
| 48 | </td>
|
| 49 | <td> </td> <!-- status -->
|
| 50 | <td>
|
| 51 | <ul class="icons">
|
| 52 | <li class="dynhover ui-helper-hidden" title="${scr.action.enable}"><span class="ui-icon ui-icon-play"> </span></li>
|
| 53 | <li class="dynhover ui-helper-hidden" title="${scr.action.disable}"><span class="ui-icon ui-icon-stop"> </span></li>
|
| 54 | <li class="dynhover ui-helper-hidden" title="${scr.action.configure}"><span class="ui-icon ui-icon-wrench"> </span></li>
|
| 55 | </ul>
|
| 56 | </td>
|
| 57 | </tr>
|
| 58 | </tbody>
|
| 59 | </table>
|
| 60 | </div> <!-- end data available -->
|
| 61 |
|
| 62 | <!-- bottom header -->
|
| 63 | <form method='post' enctype='multipart/form-data' action="${pluginRoot}">
|
| 64 | <div class="ui-widget-header ui-corner-bottom buttonGroup">
|
| 65 | <button class='reloadButton' type='button' name='reload'>${reload}</button>
|
| 66 | </div>
|
| 67 | </form>
|