]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - html/html/themes/ipfire/include/functions.pl
webif: Use new version of jquery.
[people/teissler/ipfire-2.x.git] / html / html / themes / ipfire / include / functions.pl
CommitLineData
f8e080ef 1#!/usr/bin/perl
70df8302
MT
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
f8e080ef
MT
21
22sub showmenu() {
23 print <<EOF
94ec137d
CS
24 <div id="menu">
25 <ul>
f8e080ef
MT
26EOF
27;
28 foreach my $k1 ( sort keys %$menu ) {
94ec137d
CS
29 if (! $menu->{$k1}{'enabled'}) {
30 next;
31 }
32 my $link = getlink($menu->{$k1});
33 if ($link eq '') {
34 next;
35 }
36 if (! is_menu_visible($link)) {
37 next;
38 }
39 if ($menu->{$k1}->{'selected'}) {
40 print "<li><a href=\"$link\" class=\"active\">$menu->{$k1}{'caption'}</a></li>";
41 } else {
42 print "<li><a href=\"$link\">$menu->{$k1}{'caption'}</a></li>";
43 }
f8e080ef
MT
44 }
45 print <<EOF
94ec137d
CS
46 </ul>
47 </div>
f8e080ef
MT
48EOF
49;
50}
51
52sub getselected($) {
53 my $root = shift;
54 if (!$root) {
94ec137d 55 return 0;
f8e080ef
MT
56 }
57
58 foreach my $item (%$root) {
94ec137d
CS
59 if ($root->{$item}{'selected'}) {
60 return $root->{$item};
61 }
f8e080ef
MT
62 }
63}
64
65sub showsubsection($$) {
66 my $root = shift;
67
68 if (! $root) {
94ec137d 69 return;
f8e080ef
MT
70 }
71 my $selected = getselected($root);
72 if (! $selected) {
94ec137d 73 return;
f8e080ef
MT
74 }
75 my $submenus = $selected->{'subMenu'};
76 if (! $submenus) {
94ec137d 77 return;
f8e080ef
MT
78 }
79
80 print <<EOF
94ec137d
CS
81 <h4><span>Side</span>menu</h4>
82 <ul class="links">
f8e080ef
MT
83EOF
84;
85 foreach my $item (sort keys %$submenus) {
94ec137d
CS
86 my $hash = $submenus->{$item};
87 if (! $hash->{'enabled'}) {
88 next;
89 }
90 my $link = getlink($hash);
91 if ($link eq '') {
92 next;
93 }
94 if (! is_menu_visible($link)) {
95 next;
96 }
97 if ($hash->{'selected'}) {
98 print '<li class="selected">';
99 } else {
100 print '<li>';
101 }
102
103 print "<a href=\"$link\">$hash->{'caption'}</a></li>";
f8e080ef
MT
104 }
105
106 print <<EOF
94ec137d 107 </ul>
f8e080ef
MT
108EOF
109;
110}
111
112
113sub showsubsubsection($) {
114 my $root = shift;
115 if (!$root) {
94ec137d 116 return;
f8e080ef
MT
117 }
118 my $selected = getselected($root);
119 if (! $selected) {
94ec137d 120 return
f8e080ef
MT
121 }
122 if (! $selected->{'subMenu'}) {
94ec137d 123 return
f8e080ef
MT
124 }
125
126 showsubsection($selected->{'subMenu'}, 'menu-subtop');
127}
128
129sub openpage {
130 my $title = shift;
131 my $boh = shift;
132 my $extrahead = shift;
133
134 @URI=split ('\?', $ENV{'REQUEST_URI'} );
6be4dd24 135 &General::readhash("${swroot}/main/settings", \%settings);
f8e080ef
MT
136 &genmenu();
137
138 my $h2 = gettitle($menu);
139
140 $title = "IPFire - $title";
141 if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
142 $title = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'} - $title";
143 }
144
145 print <<END
8ed76a23
JIW
146<?xml version='1.0' encoding='UTF-8'?>
147<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
148<html xmlns='http://www.w3.org/1999/xhtml'>
149<head>
150 <title>$title</title>
f8e080ef 151 $extrahead
f8e080ef
MT
152END
153;
154 if ($settings{'FX'} ne 'off') {
155 print <<END
156 <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5,Transition=12)" />
157 <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5,Transition=12)" />
158END
159;
160 }
161 print <<END
162 <link rel="shortcut icon" href="/favicon.ico" />
163 <link rel="stylesheet" type="text/css" href="/themes/ipfire/include/style.css" />
164 <script language="javascript" type="text/javascript">
165
166 function swapVisibility(id) {
167 el = document.getElementById(id);
94ec137d
CS
168 if(el.style.display != 'block') {
169 el.style.display = 'block'
170 }
171 else {
172 el.style.display = 'none'
173 }
f8e080ef
MT
174 }
175 </script>
18322edf
CS
176END
177;
178if ($settings{'SPEED'} ne 'off') {
179print <<END
0b1b223a 180 <script type="text/javascript" src="/include/jquery.js"></script>
d6a60bb3
DG
181 <script type="text/javascript">
182 var t_current;
183 var t_last;
184 var rxb_current;
185 var rxb_last;
186 var txb_current;
187 var txb_last;
188 function refreshInetInfo() {
189 \$.ajax({
190 url: '/cgi-bin/speed.cgi',
191 success: function(xml){
192 t_current = new Date();
193 var t_diff = t_current - t_last;
194 t_last = t_current;
195
196 rxb_current = \$("rxb",xml).text();
197 var rxb_diff = rxb_current - rxb_last;
198 rxb_last = rxb_current;
199
200 var rx_kbs = rxb_diff/t_diff;
201 rx_kbs = Math.round(rx_kbs*10)/10;
202
203 txb_current = \$("txb",xml).text();
204 var txb_diff = txb_current - txb_last;
205 txb_last = txb_current;
206
207 var tx_kbs = txb_diff/t_diff;
208 tx_kbs = Math.round(tx_kbs*10)/10;
209
210 \$("#rx_kbs").text(rx_kbs + ' kb/s');
211 \$("#tx_kbs").text(tx_kbs + ' kb/s');
94ec137d 212 }
d6a60bb3
DG
213 });
214 window.setTimeout("refreshInetInfo()", 3000);
215 }
216 \$(document).ready(function(){
217 refreshInetInfo();
218 });
219 </script>
f8e080ef 220 </head>
d6a60bb3 221 <body>
18322edf
CS
222END
223;
224}
225else {
2ad1a8bc 226print "</head><body>";}
18322edf 227print <<END
f8e080ef
MT
228<!-- IPFIRE HEADER -->
229
230<div id="header">
2ad1a8bc
MT
231
232 <div id="header_inner" class="fixed">
233
234 <div id="logo">
d86ddb48
MT
235END
236;
2ad1a8bc
MT
237 if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
238 print "<h1><span>$settings{'HOSTNAME'}.$settings{'DOMAINNAME'}</span></h1><br />";
239 } else {
240 print "<h1><span>IPFire</span></h1><br />";
241 }
242 print <<END
243 <h2>$h2</h2>
244 </div>
245
f8e080ef
MT
246END
247;
2ad1a8bc 248 &showmenu();
f8e080ef 249
94ec137d 250print <<END
2ad1a8bc 251 </div>
f8e080ef
MT
252</div>
253
254<div id="main">
2ad1a8bc
MT
255 <div id="main_inner" class="fixed">
256 <div id="primaryContent_2columns">
257 <div id="columnA_2columns">
f8e080ef
MT
258END
259;
260}
261
262sub openpagewithoutmenu {
263 my $title = shift;
264 my $boh = shift;
265 my $extrahead = shift;
266
267 @URI=split ('\?', $ENV{'REQUEST_URI'} );
6be4dd24 268 &General::readhash("${swroot}/main/settings", \%settings);
f8e080ef
MT
269 &genmenu();
270
271 my $h2 = gettitle($menu);
272
273 $title = "IPFire - $title";
274 if ($settings{'WINDOWWITHHOSTNAME'} eq 'on') {
275 $title = "$settings{'HOSTNAME'}.$settings{'DOMAINNAME'} - $title";
276 }
277
278 print <<END
8ed76a23
JIW
279<?xml version='1.0' encoding='UTF-8'?>
280<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
281<html xmlns='http://www.w3.org/1999/xhtml'>
282<head>
2ad1a8bc
MT
283 <title>$title</title>
284 $extrahead
f8e080ef
MT
285END
286;
287 if ($settings{'FX'} ne 'off') {
288 print <<END
289 <meta http-equiv="Page-Enter" content="blendTrans(Duration=0.5,Transition=12)" />
290 <meta http-equiv="Page-Exit" content="blendTrans(Duration=0.5,Transition=12)" />
291END
292;
293 }
294 print <<END
295 <link rel="shortcut icon" href="/favicon.ico" />
296 <link rel="stylesheet" type="text/css" href="/include/style.css" />
297 <script language="javascript" type="text/javascript">
298
299 function swapVisibility(id) {
300 el = document.getElementById(id);
94ec137d
CS
301 if(el.style.display != 'block') {
302 el.style.display = 'block'
303 }
304 else {
305 el.style.display = 'none'
306 }
f8e080ef
MT
307 }
308 </script>
2ad1a8bc 309
f8e080ef
MT
310 </head>
311 <body>
312<!-- IPFIRE HEADER -->
2ad1a8bc
MT
313
314<div id="header">
315
316 <div id="header_inner" class="fixed">
317
318 <div id="logo">
319 <h1><span>IPFire</span></h1>
320 <h2>$h2</h2>
321 </div>
322 </div>
323</div>
324
325<div id="main">
326 <div id="main_inner" class="fixed">
327 <div id="primaryContent_2columns">
328 <div id="columnA_2columns">
f8e080ef
MT
329END
330;
331}
332
333sub closepage () {
70b1b5d2
JIW
334 my $status = &connectionstatus();
335 my $uptime = `/usr/bin/uptime|cut -d \" \" -f 4-`;
336 $uptime =~ s/year(s|)/$Lang::tr{'year'}/;
337 $uptime =~ s/month(s|)/$Lang::tr{'month'}/;
338 $uptime =~ s/day(s|)/$Lang::tr{'day'}/;
339 $uptime =~ s/user(s|)/$Lang::tr{'user'}/;
340 $uptime =~ s/load average/$Lang::tr{'uptime load average'}/;
341
f8e080ef 342 print <<END
2ad1a8bc
MT
343 </div>
344 </div>
345
346 <div id="secondaryContent_2columns">
347
348 <div id="columnC_2columns">
f8e080ef
MT
349END
350;
351 &showsubsection($menu);
352 &showsubsubsection($menu);
353
94ec137d 354 print <<END
5cf2c339
MT
355 </div>
356 </div>
357 <br class="clear" />
358 <div id="footer" class="fixed">
67fd2a70 359 <b>Status:</b> $status <b>Uptime:</b> $uptime
18322edf
CS
360END
361;
362if ($settings{'SPEED'} ne 'off') {
363print <<END
2ad1a8bc
MT
364 <br />
365 <b>$Lang::tr{'bandwidth usage'}:</b>
8a5823b8 366 $Lang::tr{'incoming'}: <span id="rx_kbs"></span>&nbsp;$Lang::tr{'outgoing'}: <span id="tx_kbs"></span>
2ad1a8bc 367
18322edf
CS
368END
369;
370}
371print <<END
2ad1a8bc
MT
372 </div>
373 </div>
374</div>
e455cafe 375</body>
f8e080ef
MT
376</html>
377END
378;
379}
380
381sub openbigbox
382{
383}
384
385sub closebigbox
386{
387}
388
389sub openbox
390{
2ad1a8bc
MT
391 $width = $_[0];
392 $align = $_[1];
393 $caption = $_[2];
f8e080ef 394
2ad1a8bc 395 print <<END
f8e080ef 396<!-- openbox -->
2ad1a8bc 397 <div class="post" align="$align">
f8e080ef
MT
398END
399;
400
2ad1a8bc 401 if ($caption) { print "<h3>$caption</h3>\n"; } else { print "&nbsp;"; }
f8e080ef
MT
402}
403
404sub closebox
405{
2ad1a8bc
MT
406 print <<END
407 </div>
408 <br class="clear" />
409 <!-- closebox -->
f8e080ef
MT
410END
411;
412}
413
4141;