tbrehm
2012-04-05 aad3f0eb1e40aff62e888bff45d193ce0838f90c
commit | author | age
4f35a0 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
V 2    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5     <title><tmpl_var name="app_title"> <tmpl_var name="app_version"></title>
6     <meta http-equiv="Content-Type" content="text/html; charset=<tmpl_var name="html_content_encoding">"/>
0b32fe 7     <meta http-equiv="X-UA-Compatible" content="IE=8"/>
X 8     <link href="themes/default/css/central.css" rel="stylesheet" type="text/css"/>
1f1c39 9     <link href="themes/default_64_navimg/css/additional.css" rel="stylesheet" type="text/css"/>
4f35a0 10     <!--[if lte IE 7]>
V 11         <link href="themes/default/css/patches/central.css" rel="stylesheet" type="text/css" />
12     <![endif]-->
13     <!--[if lte ie 6]>
14       <style type="text/css" media="screen">
15         /*
16         Move these to your IE specific stylesheet if possible
17         */
18         .uniForm,
19         .uniForm fieldset,
20         .uniForm .ctrlHolder,
21         .uniForm .formHint,
22         .uniForm .buttonHolder, 
23         .uniForm .ctrlHolder .multiField,
24         .uniForm .inlineLabel{ zoom:1; }
25
26         .uniForm .inlineLabels label, .uniForm .inlineLabels .label,
27         .uniForm .blockLabels label, .uniForm .blockLabels .label,
28         .uniForm .inlineLabel span{ padding-bottom: .2em; }
29
30         .uniForm .inlineLabel input,
31         .uniForm .inlineLabels .inlineLabel input,
32         .uniForm .blockLabels .inlineLabel input{ margin-top: -.3em; }
33       </style>
34     <![endif]-->
35     <!--[if gt ie 6]>
36       <style type="text/css" media="screen">
37         /*
38         Move these to your IE specific stylesheet if possible
39         */
40         .uniForm,
41         .uniForm fieldset,
42         .uniForm .ctrlHolder,
43         .uniForm .formHint,
44         .uniForm .buttonHolder, 
45         .uniForm .ctrlHolder .multiField,
46         .uniForm .inlineLabel{ zoom:1; }
47
48         .uniForm .inlineLabels label, .uniForm .inlineLabels .label,
49         .uniForm .blockLabels label, .uniForm .blockLabels .label,
50         .uniForm .inlineLabel span{ padding-bottom: .2em; }
51
52         .uniForm .inlineLabel input,
53         .uniForm .inlineLabels .inlineLabel input,
54         .uniForm .blockLabels .inlineLabel input{ margin-top: -.3em; }
55       </style>
56     <![endif]-->
b2673a 57     <link href="themes/default/css/screen/redmond/jquery-ui-1.8.16.custom.css" rel="stylesheet" type="text/css"/>
F 58     <link href="themes/default/css/screen/jquery-ui-custom.css" rel="stylesheet" type="text/css"/>
4f35a0 59     <link rel="shortcut icon" href="/themes/default/images/favicon.ico" />
eee910 60     <script type="text/javascript" src="js/jquery-1.6.3.min.js"></script>
b2673a 61     <script type="text/javascript" src="js/jquery-ui-1.8.16.custom.min.js"></script>
4f35a0 62     <script type="text/javascript" src="js/scrigo.js.php"></script>
V 63     <script type="text/javascript" src="js/uni-form/uni-form.jquery.js"></script>
9f56bd 64     <script language="JavaScript" type="text/javascript">
T 65         var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
1ca823 66         if(!is_chrome && getInternetExplorerVersion() > 8.0) {
9f56bd 67             var style = document.createElement('style');
T 68             style.innerHTML = '#page_margins { min-width: 980px; max-width: 80%; background: #fff; display: table;}';
69             document.getElementsByTagName("head")[0].appendChild(style);
70         }
472ad2 71
eee910 72         jQuery(document).ready(function() {
F 73             loadInitContent();
5d036a 74             
T 75             $("#pageForm").submit(function(e){
76                 //Prevent form submit: e.preventDefault() in lists
77                 if ($(".panel #Filter").length > 0) {
78                     e.preventDefault();
79                 }
80             });
eee910 81         });
472ad2 82
40cf98 83         jQuery(document).bind("change", function(event) {
T 84             if ($(".panel #Filter").length > 0 && event.target.localName == 'select') {
85                 $(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
86             }
87         });
88         
ba3059 89         //Use jQuery submit with kespress Enter in panel filterbar
9d6d30 90         jQuery(document).bind("keypress", function(event) {
X 91             if (event.which == '13' && $(".panel #Filter").length > 0) {
92                 $(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
ba3059 93             }
X 94         });
9f56bd 95     </script>
4f35a0 96 </head>
eee910 97 <body>
4f35a0 98     <div id="page_margins">
V 99         <div id="page">
100             <div id="header">
101                 <div id="topsubnav">
102                     <!-- start: skip link navigation -->
103                     <a class="skip" href="#navigation" title="skip link">Skip to the navigation</a><span class="hideme">.</span>
104                     <a class="skip" href="#content" title="skip link">Skip to the content</a><span class="hideme">.</span>
105                     <!-- end: skip link navigation -->
baba98 106                     <tmpl_if name="cpuser">
4f35a0 107                     <span><a href="#logout" onclick="loadContent('login/logout.php');">LOGOUT <tmpl_var format="strtoupper" name="cpuser"></a><!-- | <a href="#" onclick="capp('help')">Help</a> | <a href="#">Imprint</a>--></span>
baba98 108                     </tmpl_if>
4f35a0 109                 </div>
aad3f0 110                 <h1 id="ir-HeaderLogo" class="swap" style="background-image:url('{tmpl_var name='app_logo'}');"><span>ISPConfig 3</span></h1>
4f35a0 111                 <span>hosting control panel</span>
V 112             </div>
113             <!-- begin: main navigation #nav -->
114             <div id="nav">
115                 <a id="navigation" name="navigation"></a>
116                 <!-- skiplink anchor: navigation -->
117                 <div id="nav_main">
118                     <div id="topNav">&nbsp;</div>
119                 </div>
120             </div>
121             <!-- end: main navigation -->
122             <!-- begin: main content area #main -->
123             <div id="main">
124                 <!-- begin: #col1 - first float column -->
125                 <div id="col1">
126                     <div id="col1_content" class="clearfix">
127                         <div id="sideNav">&nbsp;</div>
128                     </div>
129                 </div>
130                 <!-- end: #col1 -->
131                 <!-- begin: #col3 static column -->
132                 <div id="col3">
133                     <div id="col3_content" class="clearfix">
134                         <a id="content" name="content"></a>
135                         <!-- skiplink anchor: Content -->
136                         <form method="post" action="" id="pageForm" name="pageForm" enctype="multipart/form-data" class="uniForm">
137                         <div id="pageContent"><!-- AJAX CONTENT --></div>
138                         </form>
139                     </div>
140                     <div id="ie_clearing">&nbsp;</div>
141                     <!-- End: IE Column Clearing -->
142                 </div>
143                 <!-- end: #col3 -->
144             </div>
145             <!-- end: #main -->
8b9f16 146             <!-- begin: #footer -->
L 147             <div id="footer">
0b32fe 148             Powered by <a href="<tmpl_var name="app_link">" target="_blank"><tmpl_var name="app_title"></a>
8b9f16 149             </div><!-- end: #footer -->
L 150         </div>
4f35a0 151     </div>
V 152 </body>
153 </html>