Clement Escoffier | cff42f4 | 2010-07-13 14:53:48 +0000 | [diff] [blame] | 1 | <!-- |
| 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/ipojo.js"></script> |
Clement Escoffier | d430a1d | 2010-07-12 17:42:03 +0000 | [diff] [blame] | 20 | <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 Escoffier | 530a19e | 2010-07-12 17:36:50 +0000 | [diff] [blame] | 26 | |
| 27 | <!-- status line --> |
| 28 | <p class="statline"> </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">Instance Name</th> |
| 43 | <th class="col_Factory">Factory</th> |
| 44 | <th class="col_State">State</th> |
| 45 | </tr> |
| 46 | </thead> |
| 47 | <tbody> |
| 48 | <tr><!-- template --> |
| 49 | <td class="name"> </td> |
| 50 | <td class="factory"> </td><!-- factory --> |
| 51 | <td class="state"> </td><!-- state --> |
| 52 | </tr> |
| 53 | </tbody> |
| 54 | </table> |
| 55 | |
| 56 | <!-- bottom header --> |
| 57 | <form method="post" enctype="multipart/form-data" action=""> |
| 58 | <div class="ui-widget-header ui-corner-bottom buttonGroup"> |
| 59 | <button class="instancesButton" type="button">Instances</button> |
| 60 | <button class="factoriesButton" type="button">Factories</button> |
| 61 | <button class="handlersButton" type="button">Handlers</button> |
| 62 | </div> |
| 63 | </form> |
| 64 | |
| 65 | <!-- status line --> |
| 66 | <p class="statline"> </p> |