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 i18n = {
|
| 5 | status_no_data : "${deppack.status.no_data}",
|
| 6 | status_no_serv : "${deppack.status.no_service}",
|
| 7 | status_ok : "${deppack.status.ok}",
|
| 8 | package_name : "${deppack.package.name}",
|
| 9 | version : "${version}",
|
| 10 | bundles : "${deppack.bundles}",
|
| 11 | uninstall : "${deppack.uninstall}"
|
| 12 | }
|
| 13 | var packageListData = ${__data__};
|
| 14 | // ]]>
|
| 15 | </script>
|
| 16 |
|
| 17 | <p class="statline"> </p>
|
| 18 |
|
| 19 | <div id="dps1"> <!-- will be hidden if no DP service available -->
|
| 20 | <!-- top header -->
|
| 21 | <form method="post" enctype="multipart/form-data" action="${pluginRoot}">
|
| 22 | <div class="ui-widget-header ui-corner-top buttonGroup" style="text-align: right">
|
| 23 | <input name="action" type="hidden" value="deploydp" />
|
| 24 | <input name="pckfile" type="file" size="50" />
|
| 25 | <input type="submit" value="${deppack.install_update}" />
|
| 26 | </div>
|
| 27 | </form>
|
| 28 |
|
| 29 | <div id="dps2"> <!-- will be hidden if no data available -->
|
| 30 | <table id="plugin_table" class="nicetable">
|
| 31 | <thead>
|
| 32 | <tr>
|
| 33 | <th>${id}</th>
|
| 34 | <th style="width:100%">${deppack.details}</th>
|
| 35 | <th>${version}</th>
|
| 36 | <th colspan="1">${deppack.actions}</th>
|
| 37 | </tr>
|
| 38 | </thead>
|
| 39 | <tbody>
|
| 40 | <tr>
|
| 41 | <td colspan="5"> </td>
|
| 42 | </tr>
|
| 43 | </tbody>
|
| 44 | </table>
|
| 45 |
|
| 46 | <!-- bottom header -->
|
| 47 | <form method="post" enctype="multipart/form-data" action="${pluginRoot}">
|
| 48 | <div class="ui-widget-header ui-corner-bottom buttonGroup" style="text-align: right">
|
| 49 | <input name="action" type="hidden" value="deploydp" />
|
| 50 | <input name="pckfile" type="file" size="50" />
|
| 51 | <input type="submit" value="${deppack.install_update}" />
|
| 52 | </div>
|
| 53 | </form>
|
| 54 | </div><!--dps2-->
|
| 55 | </div><!--dps1-->
|