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/factory_detail.js"></script> |
Clement Escoffier | cbf19c4 | 2010-07-12 17:43:48 +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 | var factory_name = '${name}'; |
| 26 | </script> |
| 27 | |
| 28 | <!-- status line --> |
| 29 | <p class="statline"> </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">Factory Name</td> |
| 45 | <td class="Vname"> </td> |
| 46 | </tr> |
| 47 | <tr> |
| 48 | <td class="Nstate lheader">State</td> |
| 49 | <td class="Vstate"> </td> |
| 50 | </tr> |
| 51 | <tr> |
| 52 | <td class="Nbundle lheader">Bundle</td> |
| 53 | <td class="Vbundle"> </td> |
| 54 | </tr> |
| 55 | <tr> |
| 56 | <td class="Nservices lheader">Provided Service Specifications</td> |
| 57 | <td class="Vservices"> </td> |
| 58 | </tr> |
| 59 | <tr> |
| 60 | <td class="Nproperties lheader">Configuration Properties</td> |
| 61 | <td class="Vproperties"> |
| 62 | <table class="properties ui-widget-content"> |
| 63 | <thead> |
| 64 | <tr> |
| 65 | <th class="col_Name">Name</th> |
| 66 | <th class="col_Type">Type</th> |
| 67 | <th class="col_Mandatory">Mandatory</th> |
| 68 | <th class="col_Immutable">Immutable</th> |
| 69 | <th class="col_Value">Default Value</th> |
| 70 | </tr> |
| 71 | </thead> |
| 72 | <tbody> |
| 73 | <tr class="ui-widget-content"><!-- template --> |
| 74 | <td class="ui-widget-content name"> </td> |
| 75 | <td class="ui-widget-content type"> </td> |
| 76 | <td class="ui-widget-content mandatory"> </td> |
| 77 | <td class="ui-widget-content immutable"> </td> |
| 78 | <td class="ui-widget-content value"> </td> |
| 79 | </tr> |
| 80 | </tbody> |
| 81 | </table> |
| 82 | </td> |
| 83 | </tr> |
| 84 | <tr> |
| 85 | <td class="NrequiredHandlers lheader">Required Handlers</td> |
| 86 | <td class="VrequiredHandlers"> </td> |
| 87 | </tr> |
| 88 | <tr> |
| 89 | <td class="NmissingHandlers lheader">Missing Handlers</td> |
| 90 | <td class="VmissingHandlers"> </td> |
| 91 | </tr> |
| 92 | <tr> |
| 93 | <td class="NcreatedInstances lheader">Created Instances</td> |
| 94 | <td class="VcreatedInstances"> </td> |
| 95 | </tr> |
| 96 | <tr> |
| 97 | <td class="Narchitecture lheader">Architecture</td> |
| 98 | <td class="Varchitecture"><div class="architecture"><pre class="architecture_content"> </pre></div></td> |
| 99 | </tr> |
| 100 | |
| 101 | </tbody> |
| 102 | </table> |
| 103 | |
| 104 | <!-- bottom header --> |
| 105 | <form method="post" enctype="multipart/form-data" action=""> |
| 106 | <div class="ui-widget-header ui-corner-bottom buttonGroup"> |
| 107 | <button class="instancesButton" type="button">Instances</button> |
| 108 | <button class="factoriesButton" type="button">Factories</button> |
| 109 | <button class="handlersButton" type="button">Handlers</button> |
| 110 | </div> |
| 111 | </form> |
| 112 | |
| 113 | <!-- status line --> |
| 114 | <p class="statline"> </p> |