blob: 39a5b331d1007dcd995097f88ccee1c700684277 [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/instance_detail.js"></script>
Clement Escoffiercbf19c42010-07-12 17:43:48 +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 var instance_name = '${name}';
26</script>
27
28<!-- status line -->
29<p class="statline">&nbsp;</p>
30
31<!-- top header -->
32<form method="post" enctype="multipart/form-data" action="">
33 <div class="ui-widget-header ui-corner-top buttonGroup">
34 <button class="instancesButton" type="button">Instances</button>
35 <button class="factoriesButton" type="button">Factories</button>
36 <button class="handlersButton" type="button">Handlers</button>
37 </div>
38</form>
39
40<table id="plugin_table" class="nicetable noauto ui-widget-content">
41 <tbody>
42 <!-- template -->
43 <tr>
44 <td class="Nname lheader">Instance Name</td>
45 <td class="Vname">&nbsp;</td>
46 </tr>
47 <tr>
48 <td class="Nstate lheader">State</td>
49 <td class="Vstate">&nbsp;</td>
50 </tr>
51 <tr>
52 <td class="Nfactory lheader">Factory</td>
53 <td class="Vfactory">&nbsp;</td> <!-- TODO Link if possible -->
54 </tr>
55 <tr>
56 <td class="Nservices lheader">Provided Services</td>
57 <td class="Vservices">
58 <table class="services ui-widget-content">
59 <thead>
60 <tr>
61 <th class="col_Name">Specifications</th>
62 <th class="col_State">State</th>
63 <th class="col_Id">Service Id</th>
64 <th class="col_Properties">Service Properties</th>
65 </tr>
66 </thead>
67 <tbody>
68 <tr class="ui-widget-content"><!-- template -->
69 <td class="ui-widget-content name">&nbsp; </td>
70 <td class="ui-widget-content state">&nbsp; </td>
71 <td class="ui-widget-content id">&nbsp;</td>
72 <td class="ui-widget-content properties">&nbsp;</td>
73 </tr>
74 </tbody>
75 </table>
76 </td>
77 </tr>
78 <tr>
79 <td class="NreqServices lheader">Required Services</td>
80 <td class="VreqServices">
81 <table class="reqServices ui-widget-content">
82 <thead>
83 <tr>
84 <th class="col_Name">Specification</th>
Clement Escoffiercbf19c42010-07-12 17:43:48 +000085 <th class="col_State">State</th>
Clement Escoffier30e46912010-07-12 17:44:51 +000086 <th class="col_Filter">Filter</th>
Clement Escoffiercbf19c42010-07-12 17:43:48 +000087 <th class="col_Policy">Binding Policy</th>
88 <th class="col_Optional">Optional</th>
89 <th class="col_Aggregate">Aggregate</th>
90 <th class="col_Matching">Matching Services</th>
91 <th class="col_Used">Used Services</th>
92 </tr>
93 </thead>
94 <tbody>
95 <tr class="ui-widget-content"><!-- template -->
96 <td class="ui-widget-content name">&nbsp; </td>
Clement Escoffiercbf19c42010-07-12 17:43:48 +000097 <td class="ui-widget-content state">&nbsp;</td>
Clement Escoffier30e46912010-07-12 17:44:51 +000098 <td class="ui-widget-content filter">&nbsp; </td>
Clement Escoffiercbf19c42010-07-12 17:43:48 +000099 <td class="ui-widget-content policy">&nbsp;</td>
100 <td class="ui-widget-content optional">&nbsp; </td>
101 <td class="ui-widget-content aggregate">&nbsp; </td>
102 <td class="ui-widget-content matching">&nbsp; </td>
103 <td class="ui-widget-content used">&nbsp; </td>
104 </tr>
105 </tbody>
106 </table>
107 </td>
108 </tr>
109 <tr>
110 <td class="Narchitecture lheader">Architecture</td>
111 <td class="Varchitecture"><div class="architecture"><pre class="architecture_content">&nbsp;</pre></div></td>
112 </tr>
113
114 </tbody>
115</table>
116
117<!-- bottom header -->
118<form method="post" enctype="multipart/form-data" action="">
119 <div class="ui-widget-header ui-corner-bottom buttonGroup">
120 <button class="instancesButton" type="button">Instances</button>
121 <button class="factoriesButton" type="button">Factories</button>
122 <button class="handlersButton" type="button">Handlers</button>
123 </div>
124</form>
125
126<!-- status line -->
127<p class="statline">&nbsp;</p>