mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
66 lines
2.1 KiB
Perl
Executable File
66 lines
2.1 KiB
Perl
Executable File
#!/usr/local/bin/perl
|
|
# Display the advanced options form
|
|
|
|
require './usermin-lib.pl';
|
|
&ui_print_header(undef, $text{'advanced_title'}, "");
|
|
&get_usermin_miniserv_config(\%miniserv);
|
|
&get_usermin_config(\%uconfig);
|
|
|
|
print &ui_form_start("change_advanced.cgi", "post");
|
|
print &ui_table_start($text{'advanced_header'}, undef, 2);
|
|
|
|
# Global temp directory
|
|
print &ui_table_row($text{'advanced_temp'},
|
|
&ui_opt_textbox("tempdir", $uconfig{'tempdir'},
|
|
30, $text{'advanced_tempdef'}));
|
|
|
|
# Per-module temp directories
|
|
@mods = sort { $a->{'desc'} cmp $b->{'desc'} } &list_modules();
|
|
$ttable = &ui_columns_start([ $text{'advanced_tmod'},
|
|
$text{'advanced_tdir'} ]);
|
|
$i = 0;
|
|
foreach $d (&webmin::get_tempdirs(\%uconfig), [ ]) {
|
|
$ttable .= &ui_columns_row([
|
|
&ui_select("tmod_$i", $d->[0],
|
|
[ [ "", " " ],
|
|
map { [ $_->{'dir'}, $_->{'desc'} ] } @mods ]),
|
|
&ui_textbox("tdir_$i", $d->[1], 30)
|
|
]);
|
|
$i++;
|
|
}
|
|
$ttable .= &ui_columns_end();
|
|
print &ui_table_row($text{'advanced_tempmods'}, $ttable);
|
|
|
|
# Pass passwords to CGI programs
|
|
print &ui_table_row($text{'advanced_pass_desc'},
|
|
&ui_yesno_radio("pass", int($miniserv{'pass_password'})).
|
|
&ui_help($text{'advanced_pass_help'}));
|
|
|
|
@preloads = &webmin::get_preloads(\%miniserv);
|
|
if (!@preloads && (!$miniserv{'premodules'} ||
|
|
$miniserv{'premodules'} eq 'WebminCore')) {
|
|
# New-style preload possible or enabled
|
|
print &ui_table_row($text{'advanced_preload'},
|
|
&ui_yesno_radio("preload",
|
|
$miniserv{'premodules'} eq 'WebminCore'));
|
|
}
|
|
elsif ($preloads[0]->[0] eq "main" && $preloads[0]->[1] eq "web-lib-funcs.pl") {
|
|
# Old-style preloads enabled
|
|
print &ui_table_row($text{'advanced_preload'},
|
|
&ui_yesno_radio("preload", 1));
|
|
}
|
|
|
|
# Umask for created files
|
|
print &ui_table_row($text{'advanced_umask'},
|
|
&ui_opt_textbox("umask", $uconfig{'umask'}, 5, $text{'default'}));
|
|
|
|
# Sort config file's keys alphabetically
|
|
print &ui_table_row($text{'advanced_sortconfigs'},
|
|
&ui_yesno_radio("sortconfigs", $uconfig{'sortconfigs'}));
|
|
|
|
print &ui_table_end();
|
|
print &ui_form_end([ [ "save", $text{'save'} ] ]);
|
|
|
|
&ui_print_footer("", $text{'index_return'});
|
|
|