blob: caa08db5c0b272b52c1b227e7afc15236b3e84ba [file] [log] [blame]
Clement Escoffiercff42f42010-07-13 14:53:48 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<script type="text/javascript" src="${pluginRoot}/res/ui/handler.js"></script>
Clement Escoffierd430a1d2010-07-12 17:42:03 +000020<script>
21 var root_url = '${pluginRoot}';
22 var instances_url = '${pluginRoot}' + '/instances';
23 var factories_url = '${pluginRoot}' + '/factories';
24 var handlers_url = '${pluginRoot}' + '/handlers';
25</script>
Clement Escoffier3cdc5f72010-07-12 17:40:19 +000026
27<!-- status line -->
28<p class="statline">&nbsp;</p>
29
30<!-- top header -->
31<form method="post" enctype="multipart/form-data" action="">
32 <div class="ui-widget-header ui-corner-top buttonGroup">
33 <button class="instancesButton" type="button">Instances</button>
34 <button class="factoriesButton" type="button">Factories</button>
35 <button class="handlersButton" type="button">Handlers</button>
36 </div>
37</form>
38
39<table id="plugin_table" class="tablesorter nicetable noauto">
40 <thead>
41 <tr>
42 <th class="col_Name">Handler Name</th>
43 <th class="col_Type">Handler Type</th>
44 <th class="col_Bundle">Bundle</th>
45 <th class="col_State">State</th>
46 <th class="col_Missing">Missing Handlers</th>
47 </tr>
48 </thead>
49 <tbody>
50 <tr><!-- template -->
51 <td class="name">&nbsp; </td>
52 <td class="type">&nbsp; </td>
53 <td class="bundle">&nbsp;</td>
54 <td class="state">&nbsp;</td>
55 <td class="missing">&nbsp; </td>
56 </tr>
57 </tbody>
58</table>
59
60<!-- bottom header -->
61<form method="post" enctype="multipart/form-data" action="">
62 <div class="ui-widget-header ui-corner-bottom buttonGroup">
63 <button class="instancesButton" type="button">Instances</button>
64 <button class="factoriesButton" type="button">Factories</button>
65 <button class="handlersButton" type="button">Handlers</button>
66 </div>
67</form>
68
69<!-- status line -->
70<p class="statline">&nbsp;</p>