Clement Escoffier | 64bcab8 | 2010-07-12 17:40:19 +0000 | [diff] [blame] | 1 | <script type="text/javascript" src="${pluginRoot}/res/ui/handler.js"></script> |
Clement Escoffier | 5f2d0e4 | 2010-07-12 17:42:03 +0000 | [diff] [blame^] | 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 | </script> |
Clement Escoffier | 64bcab8 | 2010-07-12 17:40:19 +0000 | [diff] [blame] | 8 | |
| 9 | <!-- status line --> |
| 10 | <p class="statline"> </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"> </td> |
| 34 | <td class="type"> </td> |
| 35 | <td class="bundle"> </td> |
| 36 | <td class="state"> </td> |
| 37 | <td class="missing"> </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"> </p> |