blob: b5edb5f7b2546f4de08769d1a85e49aff7340e74 [file] [log] [blame]
Clement Escoffier3cdc5f72010-07-12 17:40:19 +00001<script type="text/javascript" src="${pluginRoot}/res/ui/handler.js"></script>
Clement Escoffierd430a1d2010-07-12 17:42:03 +00002<script>
3 var root_url = '${pluginRoot}';
4 var instances_url = '${pluginRoot}' + '/instances';
5 var factories_url = '${pluginRoot}' + '/factories';
6 var handlers_url = '${pluginRoot}' + '/handlers';
7</script>
Clement Escoffier3cdc5f72010-07-12 17:40:19 +00008
9<!-- status line -->
10<p class="statline">&nbsp;</p>
11
12<!-- top header -->
13<form method="post" enctype="multipart/form-data" action="">
14 <div class="ui-widget-header ui-corner-top buttonGroup">
15 <button class="instancesButton" type="button">Instances</button>
16 <button class="factoriesButton" type="button">Factories</button>
17 <button class="handlersButton" type="button">Handlers</button>
18 </div>
19</form>
20
21<table id="plugin_table" class="tablesorter nicetable noauto">
22 <thead>
23 <tr>
24 <th class="col_Name">Handler Name</th>
25 <th class="col_Type">Handler Type</th>
26 <th class="col_Bundle">Bundle</th>
27 <th class="col_State">State</th>
28 <th class="col_Missing">Missing Handlers</th>
29 </tr>
30 </thead>
31 <tbody>
32 <tr><!-- template -->
33 <td class="name">&nbsp; </td>
34 <td class="type">&nbsp; </td>
35 <td class="bundle">&nbsp;</td>
36 <td class="state">&nbsp;</td>
37 <td class="missing">&nbsp; </td>
38 </tr>
39 </tbody>
40</table>
41
42<!-- bottom header -->
43<form method="post" enctype="multipart/form-data" action="">
44 <div class="ui-widget-header ui-corner-bottom buttonGroup">
45 <button class="instancesButton" type="button">Instances</button>
46 <button class="factoriesButton" type="button">Factories</button>
47 <button class="handlersButton" type="button">Handlers</button>
48 </div>
49</form>
50
51<!-- status line -->
52<p class="statline">&nbsp;</p>