]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/conify/global/admin.html
locale parsing based on URL knowledge (because apache is not helping); aou.name trans...
[Evergreen.git] / Open-ILS / web / conify / global / admin.html
1 <!--
2 # Copyright (C) 2008  Georgia Public Library Service / Equinox Software, Inc
3 # Mike Rylander <miker@esilibrary.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 -->
15 <html xmlns="http://www.w3.org/1999/xhtml">
16         <head>
17                 <title>Conify :: Global :: Admin</title>
18
19         <style type="text/css">
20             @import url("/js/dojo/dojo/resources/dojo.css");
21             @import url("/js/dojo/dijit/themes/tundra/tundra.css");
22             @import url("/js/dojo/dojox/widget/Toaster/Toaster.css");
23         </style>
24
25         <style>
26             html, body
27             {
28                 height: 100%;
29                 width: 100%;
30                 margin: 0px 0px 0px 0px;
31                 padding: 0px 0px 0px 0px;
32                 overflow: hidden;
33             }
34         </style>
35
36         <!-- Dojo goodness -->
37         <script type="text/javascript" src="/js/dojo/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
38         <script type="text/javascript" src="/js/dojo/dijit/dijit.js"></script>
39
40         <script type="text/javascript">
41             dojo.require('dojo.parser');
42             dojo.require('dijit.form.Button');
43             dojo.require('dijit.layout.ContentPane');
44             dojo.require('dijit.layout.LayoutContainer');
45
46             function status_update (markup) {
47                 dojo.byId('status_text').innerHTML = markup;
48             }
49
50         </script>
51
52         </head>
53         <body class="tundra" id='pagebody'>
54                 <div dojoType="dijit.layout.LayoutContainer" style="height: 100%; width: 100%; margin: 0; padding: 0; border: 0;">
55                         <div id="top_pane" jsId="top_pane" dojoType="dijit.layout.ContentPane" layoutAlign="top" orientation="horizontal" style="margin: 4px; width: 100%; text-align: middle;" title="Controls">
56                                 <img src="/opac/images/small_logo.jpg"/>
57                                 <span style="font-size: large; padding-left: 20px;"> Configure your ILS </span>
58                         </div>
59                         <div id="left_pane" jsId="left_pane" dojoType="dijit.layout.ContentPane" layoutAlign="left" orientation="vertical" style="height: 90%; margin: 4px;" label="Controls">
60                                 <ul style="margin-left: -10px;">
61                                         <li><a href="" onclick="dojo.byId('action_iframe').src = 'actor/org_unit_type.html'; return false;">Organization Types</a></li>
62                                         <li><a href="" onclick="dojo.byId('action_iframe').src = 'actor/org_unit.html'; return false;">Organizational Units</a></li>
63                                         <li><a href="" onclick="dojo.byId('action_iframe').src = 'permission/grp_tree.html'; return false;">Permission Groups</a></li>
64                                         <li><a href="" onclick="dojo.byId('action_iframe').src = 'permission/perm_list.html'; return false;">Permissions</a></li>
65                                         <li><a href="" onclick="dojo.byId('action_iframe').src = 'config/copy_status.html'; return false;">Copy Statuses</a></li>
66                                 </ul>
67                         </div>
68                         <div id="content_pane" jsId="content_pane" dojoType="dijit.layout.ContentPane" layoutAlign="client" style="margin: 2px; border-top: 2px solid grey; border-bottom: 2px solid grey; border-left: 2px solid grey;">
69                                 <iframe id="action_iframe" marginwidth="0" marginheight="0" style="border:0; height: 100%; width: 100%;"></iframe>
70                         </div>
71                         <div id="bottom_pane" jsId="bottom_pane" dojoType="dijit.layout.ContentPane" layoutAlign="bottom" orientation="horizontal" style="margin: 4px; height: 5%; width: 100%" title="Controls">
72                                 <span id="status_text"/>
73                         </div>
74                 </div>
75         </body>
76 </html>
77