Felix Meschberger | 7beed11 | 2010-06-25 08:10:24 +0000 | [diff] [blame^] | 1 | <script type="text/javascript" src="${appRoot}/res/ui/components.js"></script> |
Felix Meschberger | fb70882 | 2010-02-18 15:42:31 +0000 | [diff] [blame] | 2 | <script type="text/javascript"> |
| 3 | // <![CDATA[ |
| 4 | var drawDetails = ${__drawDetails__}; |
| 5 | var scrData = ${__data__}; |
| 6 | // i18n |
| 7 | var i18n = { |
Felix Meschberger | fb70882 | 2010-02-18 15:42:31 +0000 | [diff] [blame] | 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 | stat_no_service : "${scr.status.no_service}", |
| 15 | stat_no_components : "${scr.status.no_components}", |
| 16 | stat_ok : "${scr.status.ok}" |
| 17 | } |
| 18 | // ]]> |
| 19 | </script> |
| 20 | <p class="statline"> </p> |
| 21 | |
| 22 | |
| 23 | <div id="scr"> <!-- data available --> |
| 24 | <!-- top header --> |
| 25 | <form method='post' enctype='multipart/form-data' action=""> |
| 26 | <div class="ui-widget-header ui-corner-top buttonGroup"> |
| 27 | <button class='reloadButton' type='button' name='reload'>${reload}</button> |
| 28 | </div> |
| 29 | </form> |
| 30 | |
| 31 | <table id="plugin_table" class="tablesorter nicetable noauto"> |
| 32 | <thead> |
| 33 | <tr> |
| 34 | <th class="col_Id">${id}</th> |
| 35 | <th class="col_Name">${scr.title.name}</th> |
| 36 | <th class="col_Status">${scr.title.status}</th> |
| 37 | <th class="col_Actions">${scr.title.actions}</th> |
| 38 | </tr> |
| 39 | </thead> |
| 40 | <tbody> |
Valentin Valchev | f51fe43 | 2010-04-15 12:01:33 +0000 | [diff] [blame] | 41 | <tr> |
| 42 | <td> </td> <!-- id --> |
| 43 | <td> <!-- name with arrow --> |
| 44 | <div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="${scr.details.tip}"> </div> |
| 45 | </td> |
| 46 | <td> </td> <!-- status --> |
| 47 | <td> |
| 48 | <ul class="icons"> |
| 49 | <li class="dynhover ui-helper-hidden" title="${scr.action.enable}"><span class="ui-icon ui-icon-play"> </span></li> |
| 50 | <li class="dynhover ui-helper-hidden" title="${scr.action.disable}"><span class="ui-icon ui-icon-stop"> </span></li> |
| 51 | <li class="dynhover ui-helper-hidden" title="${scr.action.configure}"><span class="ui-icon ui-icon-wrench"> </span></li> |
| 52 | </ul> |
| 53 | </td> |
| 54 | </tr> |
Felix Meschberger | fb70882 | 2010-02-18 15:42:31 +0000 | [diff] [blame] | 55 | </tbody> |
| 56 | </table> |
| 57 | </div> <!-- end data available --> |
| 58 | |
| 59 | <!-- bottom header --> |
| 60 | <form method='post' enctype='multipart/form-data' action=""> |
| 61 | <div class="ui-widget-header ui-corner-bottom buttonGroup"> |
| 62 | <button class='reloadButton' type='button' name='reload'>${reload}</button> |
| 63 | </div> |
| 64 | </form> |