Clement Escoffier | cbf19c4 | 2010-07-12 17:43:48 +0000 | [diff] [blame] | 1 | <script type="text/javascript" src="${pluginRoot}/res/ui/instance_detail.js"></script> |
| 2 | <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 | var instance_name = '${name}'; |
| 8 | </script> |
| 9 | |
| 10 | <!-- status line --> |
| 11 | <p class="statline"> </p> |
| 12 | |
| 13 | <!-- top header --> |
| 14 | <form method="post" enctype="multipart/form-data" action=""> |
| 15 | <div class="ui-widget-header ui-corner-top buttonGroup"> |
| 16 | <button class="instancesButton" type="button">Instances</button> |
| 17 | <button class="factoriesButton" type="button">Factories</button> |
| 18 | <button class="handlersButton" type="button">Handlers</button> |
| 19 | </div> |
| 20 | </form> |
| 21 | |
| 22 | <table id="plugin_table" class="nicetable noauto ui-widget-content"> |
| 23 | <tbody> |
| 24 | <!-- template --> |
| 25 | <tr> |
| 26 | <td class="Nname lheader">Instance Name</td> |
| 27 | <td class="Vname"> </td> |
| 28 | </tr> |
| 29 | <tr> |
| 30 | <td class="Nstate lheader">State</td> |
| 31 | <td class="Vstate"> </td> |
| 32 | </tr> |
| 33 | <tr> |
| 34 | <td class="Nfactory lheader">Factory</td> |
| 35 | <td class="Vfactory"> </td> <!-- TODO Link if possible --> |
| 36 | </tr> |
| 37 | <tr> |
| 38 | <td class="Nservices lheader">Provided Services</td> |
| 39 | <td class="Vservices"> |
| 40 | <table class="services ui-widget-content"> |
| 41 | <thead> |
| 42 | <tr> |
| 43 | <th class="col_Name">Specifications</th> |
| 44 | <th class="col_State">State</th> |
| 45 | <th class="col_Id">Service Id</th> |
| 46 | <th class="col_Properties">Service Properties</th> |
| 47 | </tr> |
| 48 | </thead> |
| 49 | <tbody> |
| 50 | <tr class="ui-widget-content"><!-- template --> |
| 51 | <td class="ui-widget-content name"> </td> |
| 52 | <td class="ui-widget-content state"> </td> |
| 53 | <td class="ui-widget-content id"> </td> |
| 54 | <td class="ui-widget-content properties"> </td> |
| 55 | </tr> |
| 56 | </tbody> |
| 57 | </table> |
| 58 | </td> |
| 59 | </tr> |
| 60 | <tr> |
| 61 | <td class="NreqServices lheader">Required Services</td> |
| 62 | <td class="VreqServices"> |
| 63 | <table class="reqServices ui-widget-content"> |
| 64 | <thead> |
| 65 | <tr> |
| 66 | <th class="col_Name">Specification</th> |
Clement Escoffier | cbf19c4 | 2010-07-12 17:43:48 +0000 | [diff] [blame] | 67 | <th class="col_State">State</th> |
Clement Escoffier | 30e4691 | 2010-07-12 17:44:51 +0000 | [diff] [blame^] | 68 | <th class="col_Filter">Filter</th> |
Clement Escoffier | cbf19c4 | 2010-07-12 17:43:48 +0000 | [diff] [blame] | 69 | <th class="col_Policy">Binding Policy</th> |
| 70 | <th class="col_Optional">Optional</th> |
| 71 | <th class="col_Aggregate">Aggregate</th> |
| 72 | <th class="col_Matching">Matching Services</th> |
| 73 | <th class="col_Used">Used Services</th> |
| 74 | </tr> |
| 75 | </thead> |
| 76 | <tbody> |
| 77 | <tr class="ui-widget-content"><!-- template --> |
| 78 | <td class="ui-widget-content name"> </td> |
Clement Escoffier | cbf19c4 | 2010-07-12 17:43:48 +0000 | [diff] [blame] | 79 | <td class="ui-widget-content state"> </td> |
Clement Escoffier | 30e4691 | 2010-07-12 17:44:51 +0000 | [diff] [blame^] | 80 | <td class="ui-widget-content filter"> </td> |
Clement Escoffier | cbf19c4 | 2010-07-12 17:43:48 +0000 | [diff] [blame] | 81 | <td class="ui-widget-content policy"> </td> |
| 82 | <td class="ui-widget-content optional"> </td> |
| 83 | <td class="ui-widget-content aggregate"> </td> |
| 84 | <td class="ui-widget-content matching"> </td> |
| 85 | <td class="ui-widget-content used"> </td> |
| 86 | </tr> |
| 87 | </tbody> |
| 88 | </table> |
| 89 | </td> |
| 90 | </tr> |
| 91 | <tr> |
| 92 | <td class="Narchitecture lheader">Architecture</td> |
| 93 | <td class="Varchitecture"><div class="architecture"><pre class="architecture_content"> </pre></div></td> |
| 94 | </tr> |
| 95 | |
| 96 | </tbody> |
| 97 | </table> |
| 98 | |
| 99 | <!-- bottom header --> |
| 100 | <form method="post" enctype="multipart/form-data" action=""> |
| 101 | <div class="ui-widget-header ui-corner-bottom buttonGroup"> |
| 102 | <button class="instancesButton" type="button">Instances</button> |
| 103 | <button class="factoriesButton" type="button">Factories</button> |
| 104 | <button class="handlersButton" type="button">Handlers</button> |
| 105 | </div> |
| 106 | </form> |
| 107 | |
| 108 | <!-- status line --> |
| 109 | <p class="statline"> </p> |