A. J. David Bosschaert | 5319289 | 2015-07-02 11:09:06 +0000 | [diff] [blame] | 1 | <!--
|
| 2 | Licensed to the Apache Software Foundation (ASF) under one or more
|
| 3 | contributor license agreements. See the NOTICE file distributed with
|
| 4 | this work for additional information regarding copyright ownership.
|
| 5 | The ASF licenses this file to You under the Apache License, Version 2.0
|
| 6 | (the "License"); you may not use this file except in compliance with
|
| 7 | the License. You may obtain a copy of the License at
|
| 8 |
|
| 9 | http://www.apache.org/licenses/LICENSE-2.0
|
| 10 |
|
| 11 | Unless required by applicable law or agreed to in writing, software
|
| 12 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 | See the License for the specific language governing permissions and
|
| 15 | limitations under the License.
|
| 16 | -->
|
| 17 | <script type="text/javascript" src="${pluginRoot}/res/plugin.js"></script>
|
| 18 | <script type="text/javascript">
|
| 19 | // <![CDATA[
|
| 20 | var ssData = ${__data__};
|
A. J. David Bosschaert | 7e6fc5a | 2015-07-02 12:41:14 +0000 | [diff] [blame] | 21 | var i18n = {
|
| 22 | status: "${subsystems.status}"
|
| 23 | };
|
A. J. David Bosschaert | 5319289 | 2015-07-02 11:09:06 +0000 | [diff] [blame] | 24 | // ]]>
|
| 25 | </script>
|
| 26 | <p class="statline"> </p>
|
| 27 |
|
| 28 |
|
| 29 | <div id="subsystems"> <!-- data available -->
|
| 30 | <!-- top header -->
|
| 31 | <form method='post' enctype='multipart/form-data' action="${pluginRoot}">
|
| 32 | <div class="ui-widget-header ui-corner-top buttonGroup">
|
| 33 | <button class='installButton' type='button'>${install}</button>
|
| 34 | </div>
|
| 35 | </form>
|
| 36 |
|
| 37 | <table id="plugin_table" class="tablesorter nicetable noauto">
|
| 38 | <thead>
|
| 39 | <tr>
|
| 40 | <th class="col_Id">${id}</th>
|
| 41 | <th class="col_Name">${subsystems.name}</th>
|
| 42 | <th class="col_Version">${version}</th>
|
| 43 | <th class="col_Status">Status</th>
|
| 44 | <th class="col_Actions">Actions</th>
|
| 45 | </tr>
|
| 46 | </thead>
|
| 47 | <tbody>
|
| 48 | <tr>
|
| 49 | <td> </td> <!-- id -->
|
| 50 | <td> <!-- name with arrow -->
|
| 51 | <div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="Details"> </div>
|
| 52 | </td>
|
| 53 | <td> </td> <!-- version -->
|
| 54 | <td> </td> <!-- status -->
|
| 55 | <td>
|
| 56 | <ul class="icons">
|
| 57 | <li class="dynhover ui-helper-hidden" title="${start}"><span class="ui-icon ui-icon-play"> </span></li>
|
| 58 | <li class="dynhover ui-helper-hidden" title="${stop}"><span class="ui-icon ui-icon-stop"> </span></li>
|
| 59 | <li class="dynhover" title="${bundles.uninstall}"><span class="ui-icon ui-icon-trash"> </span></li>
|
| 60 | </ul>
|
| 61 | </td>
|
| 62 | </tr>
|
| 63 | </tbody>
|
| 64 | </table>
|
| 65 | </div> <!-- end data available -->
|
| 66 |
|
| 67 | <!-- bottom header -->
|
| 68 | <form method='post' enctype='multipart/form-data' action="${pluginRoot}">
|
| 69 | <div class="ui-widget-header ui-corner-bottom buttonGroup">
|
| 70 | <button class='installButton' type='button'>${install}</button>
|
| 71 | </div>
|
| 72 | </form>
|
| 73 |
|
| 74 | <!-- status line -->
|
| 75 | <p class="statline"> </p>
|
| 76 |
|
| 77 | <div id="uploadDialog" class="ui-helper-hidden" title="Upload / Install Subsystem">
|
| 78 | <form method="post" enctype="multipart/form-data" action="${pluginRoot}">
|
| 79 | <table class="nicetable">
|
| 80 | <tr>
|
| 81 | <td style="text-align:right">Start Subsystem</td>
|
| 82 | <td>
|
| 83 | <input type="hidden" name="action" value="install"/>
|
| 84 | <input type="checkbox" name="subsystemstart" value="start"/>
|
| 85 | </td>
|
| 86 | </tr>
|
| 87 | <tr>
|
A. J. David Bosschaert | 2861ae3 | 2015-07-02 12:57:55 +0000 | [diff] [blame] | 88 | <td> </td>
|
| 89 | <td><input class="multi" accept="jar|zip|esa" type="file" name="subsystemfile" /></td>
|
A. J. David Bosschaert | 5319289 | 2015-07-02 11:09:06 +0000 | [diff] [blame] | 90 | </tr>
|
| 91 | </table>
|
| 92 | </form>
|
| 93 | </div>
|