blob: e6829f6ea7cca0e76a9c7954192f980f30698cb6 [file] [log] [blame]
A. J. David Bosschaert53192892015-07-02 11:09:06 +00001<!--
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[
20var ssData = ${__data__};
A. J. David Bosschaert7e6fc5a2015-07-02 12:41:14 +000021var i18n = {
22 status: "${subsystems.status}"
23};
A. J. David Bosschaert53192892015-07-02 11:09:06 +000024// ]]>
25</script>
26<p class="statline">&nbsp;</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>&nbsp;</td> <!-- id -->
50 <td> <!-- name with arrow -->
51 <div class="bIcon ui-icon ui-icon-triangle-1-e" style="float:left" title="Details">&nbsp;</div>
52 </td>
53 <td>&nbsp;</td> <!-- version -->
54 <td>&nbsp;</td> <!-- status -->
55 <td>
56 <ul class="icons">
57 <li class="dynhover ui-helper-hidden" title="${start}"><span class="ui-icon ui-icon-play">&nbsp;</span></li>
58 <li class="dynhover ui-helper-hidden" title="${stop}"><span class="ui-icon ui-icon-stop">&nbsp;</span></li>
59 <li class="dynhover" title="${bundles.uninstall}"><span class="ui-icon ui-icon-trash">&nbsp;</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">&nbsp;</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 Bosschaert2861ae32015-07-02 12:57:55 +000088 <td>&nbsp;</td>
89 <td><input class="multi" accept="jar|zip|esa" type="file" name="subsystemfile" /></td>
A. J. David Bosschaert53192892015-07-02 11:09:06 +000090 </tr>
91 </table>
92 </form>
93</div>