#!/usr/local/bin/perl BEGIN { push(@INC, ".."); }; use WebminCore; @available = ("webmin", "system", "servers", "cluster", "hardware", "", "net"); &init_config(); $hostname = &get_display_hostname(); $ver = &get_webmin_version(); &get_miniserv_config(\%miniserv); if ($gconfig{'real_os_type'}) { if ($gconfig{'os_version'} eq "*") { $ostr = $gconfig{'real_os_type'}; } else { $ostr = "$gconfig{'real_os_type'} $gconfig{'real_os_version'}"; } } else { $ostr = "$gconfig{'os_type'} $gconfig{'os_version'}"; } &ReadParse(); # Redirect if the user has only one module @msc_modules = &get_visible_module_infos() if (!scalar(@msc_modules)); if (!defined($in{'cat'})) { # Maybe redirect to some module after login local $goto = &get_goto_module(\@msc_modules); if ($goto) { &redirect($goto->{'dir'}.'/'); exit; } } # Show standard header $gconfig{'sysinfo'} = 0 if ($gconfig{'sysinfo'} == 1); $main::theme_index_page = 1; $title = $gconfig{'nohostname'} ? $text{'main_title2'} : &text('main_title', $ver, $hostname, $ostr); &header($title, "", undef, undef, 1, 1); print $text{'main_header'}; if (!@msc_modules) { # use has no modules! print "

$text{'main_none'}

\n"; } elsif ($gconfig{"notabs_${base_remote_user}"} == 2 || $gconfig{"notabs_${base_remote_user}"} == 0 && $gconfig{'notabs'}) { # Generate main menu with all modules on one page print "

\n"; $pos = 0; $cols = $gconfig{'nocols'} ? $gconfig{'nocols'} : 4; $per = 100.0 / $cols; foreach $m (@msc_modules) { if ($pos % $cols == 0) { print "\n"; } print "\n"; if ($pos % $cols == $cols - 1) { print "\n"; } $pos++; } print "
\n"; local $idx = $m->{'index_link'}; $desc = $m->{'longdesc'} || $m->{'desc'}; print "
{'dir'}/$idx>", "{'dir'}/images/icon.gif border=0 ", "width=48 height=48 title=\"$desc\">
\n"; print "{'dir'}/$idx>$m->{'desc'}


\n"; } else { # Generate categorized module list print "
\n"; $usercol = defined($gconfig{'cs_header'}) || defined($gconfig{'cs_table'}) || defined($gconfig{'cs_page'}); foreach $c (@cats) { $t = $cats{$c}; if ($in{'cat'} eq $c) { print "\n"; print "\n"; print "\n"; } # print "\n"; } print "
", "\"\""," $t ", "\"\"","
\n"; print "
\n"; # Display the modules in this category $pos = 0; $cols = $gconfig{'nocols'} ? $gconfig{'nocols'} : 4; $per = 100.0 / $cols; foreach $m (@msc_modules) { next if ($m->{'category'} ne $in{'cat'}); if ($pos % $cols == 0) { print "\n"; } $desc = $m->{'longdesc'} || $m->{'desc'}; print "\n"; if ($pos++ % $cols == $cols - 1) { print "\n"; } } while($pos++ % $cols) { print "\n"; } print "
\n"; print "
{'dir'}/>", "{'dir'}/images/icon.gif title=\"$desc\" border=0>", "
\n"; print "{'dir'}/>$m->{'desc'}
"; print qq~
~; print qq~

~; } if ($miniserv{'logout'} && !$gconfig{'alt_startpage'} && !$ENV{'SSL_USER'} && !$ENV{'LOCAL_USER'} && $ENV{'HTTP_USER_AGENT'} !~ /webmin/i) { print "\n"; print "\n"; print "
  "; print &text('main_version', $ver, $hostname, $ostr)."\n" if (!$gconfig{'nohostname'}); print $text{'main_readonly'}."\n" if (&is_readonly_mode()); print "\n"; print "  
\n"; } # Check for incorrect OS if (&foreign_check("webmin")) { &foreign_require("webmin", "webmin-lib.pl"); &webmin::show_webmin_notifications(); } print $text{'main_footer'}; &footer(); sub chop_font { foreach $l (split(//, $t)) { $ll = ord($l); if ($ll > 127 && $lang->{'charset'}) { print "{'charset'}.gif alt=\"$l\" align=bottom border=0>"; } elsif ($l eq " ") { print "\"\ \""; } else { print "\"$l\""; } } }