Felix Meschberger | 7beed11 | 2010-06-25 08:10:24 +0000 | [diff] [blame] | 1 | <script type="text/javascript" src="${appRoot}/res/ui/config.js"></script> |
Felix Meschberger | b812b2e | 2010-02-18 15:36:53 +0000 | [diff] [blame] | 2 | <script type="text/javascript"> |
| 3 | // <![CDATA[ |
| 4 | // data |
| 5 | var configData = ${__data__}; |
| 6 | var selectedPid = '${selectedPid}'; |
| 7 | var i18n = { // i18n |
| 8 | stat_ok : '${config.status.ok}', // "Configuration Admin Service is running."; |
| 9 | stat_missing : '${config.status.missing}', //"Configuration Admin Service is not installed/running." |
| 10 | save : '${save}', |
| 11 | reset : '${reset}', |
| 12 | del : '${delete}', |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 13 | abort : '${abort}', |
Felix Meschberger | b812b2e | 2010-02-18 15:36:53 +0000 | [diff] [blame] | 14 | props_title : '${config.properties}', |
| 15 | props_enter : '${config.properties.enter}', // "Enter Name-Value pairs of configuration properties" |
| 16 | cfg_title : '${config.info.title}', // "Configuration Information" |
| 17 | pid : '${config.info.pid}', // "Persistent Identity (PID)"; |
| 18 | fpid : '${config.info.fpid}', // "Factory Peristent Identifier (Factory PID)"; |
| 19 | binding : '${config.info.binding}', // "Configuration Binding"; |
| 20 | unbound : '${config.info.unbound}', // "Unbound or new configuration"; |
| 21 | unbind_btn : '${config.unbind.btn}', // "Unbind; |
| 22 | unbind_tip : '${config.unbind.tip}', // "Unbind Configuration from Bundle" |
| 23 | del_ask : '${config.del.ask}', // "Are you sure to delete this configuration ?"; |
| 24 | del_config : '${config.del.config}', // "Configuration: "; |
| 25 | del_bundle : '${config.del.bundle}', // "Bundle: "; |
Valentin Valchev | de16088 | 2010-03-22 09:30:38 +0000 | [diff] [blame] | 26 | unbind_ask : '${config.unbind.ask}', // "Are you sure to unbind this configuration ?" |
Valentin Valchev | f7fe52e | 2014-11-17 13:07:24 +0000 | [diff] [blame] | 27 | dflt_value : '${config.property.default.value}', // "Note, that this property is not set. The above field contains is the *default value* specified in the Meta Type service" |
| 28 | opt_value : '${config.property.optional.value}', // "This attribute is optional. To save it in the current configuration you must check it. To remove it from the configuration uncheck the checkbox." |
Valentin Valchev | de16088 | 2010-03-22 09:30:38 +0000 | [diff] [blame] | 29 | err_bind : '${config.bind.error}' // Error: the PID'{0}' is bound to '{1}' but the actual managed service is registered from '{2}' bundle |
Felix Meschberger | 27870e8 | 2012-12-28 15:19:38 +0000 | [diff] [blame] | 30 | }; |
| 31 | var param = { // param |
| 32 | apply : '${param.apply}', |
| 33 | create : '${param.create}', |
| 34 | unbind : '${param.unbind}', |
| 35 | dele : '${param.delete}', |
| 36 | propertylist : '${param.propertylist}', |
| 37 | pidFilter : '${param.pidFilter}' |
| 38 | }; |
Felix Meschberger | b812b2e | 2010-02-18 15:36:53 +0000 | [diff] [blame] | 39 | // ]]> |
| 40 | </script> |
| 41 | |
| 42 | <!-- status line --> |
| 43 | <p class="statline"> </p> |
| 44 | |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 45 | |
| 46 | <div id="configContent" > |
| 47 | <div id="fPidsSelect" class="ui-widget-header ui-corner-top buttonGroup"> |
| 48 | ${config.configurations.title} |
| 49 | </div> |
Felix Meschberger | 67726fe | 2010-03-17 06:55:00 +0000 | [diff] [blame] | 50 | <table id="configTable" class="tablesorter nicetable noauto"> |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 51 | <thead> |
| 52 | <tr> |
Valentin Valchev | 7c4a80f | 2014-12-03 12:51:09 +0000 | [diff] [blame] | 53 | <th class="col_Exists">${config.title.exists}</th> |
Felix Meschberger | 67726fe | 2010-03-17 06:55:00 +0000 | [diff] [blame] | 54 | <th class="col_Name">${config.title.name}</th> |
| 55 | <th class="col_Binding">${config.title.bundle}</th> |
| 56 | <th class="col_Actions">${config.title.actions}</th> |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 57 | </tr> |
| 58 | </thead> |
| 59 | <tbody> |
| 60 | <tr> |
Valentin Valchev | 7c4a80f | 2014-12-03 12:51:09 +0000 | [diff] [blame] | 61 | <td class="col_Exists_body" title="${config.title.exists.tip}"><div class="ui-icon ui-icon-check"> </div></td> |
Valentin Valchev | 0fc8b7b | 2010-04-15 12:33:58 +0000 | [diff] [blame] | 62 | <td class="pointer"><div class="ui-icon ui-icon-triangle-1-e subpid"> </div></td> |
Felix Meschberger | 1e671e1 | 2010-03-13 15:09:51 +0000 | [diff] [blame] | 63 | <td> </td> |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 64 | <td> |
| 65 | <ul class="icons"> |
| 66 | <li class="dynhover" title="${config.edit.tip}"><span class="ui-icon ui-icon-pencil"> </span></li> |
| 67 | <li class="ui-state-disabled dynhover" title="${config.unbind.tip}"><span class="ui-icon ui-icon-transferthick-e-w"> </span></li> |
| 68 | <li class="dynhover" title="${delete}"><span class="ui-icon ui-icon-trash"> </span></li> |
| 69 | </ul> |
| 70 | </td> |
| 71 | </tr> |
Felix Meschberger | 67726fe | 2010-03-17 06:55:00 +0000 | [diff] [blame] | 72 | <tr class="fpid"> |
Valentin Valchev | 7c4a80f | 2014-12-03 12:51:09 +0000 | [diff] [blame] | 73 | <td> </td> |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 74 | <td class="pointer"> </td> |
Felix Meschberger | 67726fe | 2010-03-17 06:55:00 +0000 | [diff] [blame] | 75 | <td>-</td> |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 76 | <td> |
| 77 | <ul class="icons"> |
| 78 | <li class="dynhover" title="${config.create.tip}"><span class="ui-icon ui-icon-plusthick"> </span></li> |
| 79 | </ul> |
| 80 | </td> |
| 81 | </tr> |
| 82 | </tbody> |
| 83 | </table> |
| 84 | |
| 85 | </div> |
| 86 | |
| 87 | <!-- placeholder for property editor --> |
| 88 | <div id="editor" class="ui-helper-hidden"> |
Valentin Valchev | de16088 | 2010-03-22 09:30:38 +0000 | [diff] [blame] | 89 | <p class="ui-state-error ui-helper-hidden"> </p> |
Carsten Ziegeler | 149faaa | 2010-03-10 16:41:53 +0000 | [diff] [blame] | 90 | <table id="editorTable" class="nicetable"> |
| 91 | <tr><td> </td></tr> |
Felix Meschberger | b812b2e | 2010-02-18 15:36:53 +0000 | [diff] [blame] | 92 | </table> |
| 93 | </div> |