|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /usr/libexec/webmin/shorewall/ |
Upload File : |
#!/usr/bin/perl
# Display the contents of a table file
require './shorewall-lib.pl';
&ReadParse();
&get_clean_table_name(\%in);
&can_access($in{'table'}) || &error($text{'list_ecannot'});
&ui_print_header(undef, $text{$in{'tableclean'}."_title"}, "");
$file = "$config{'config_dir'}/$in{'table'}";
$in{'table'} =~ /\.\./ && &error($text{'manual_efile'});
print &text('manual_desc', "<tt>$file</tt>"),"<p>\n";
print "<form action=manual_save.cgi method=post enctype=multipart/form-data>\n";
print &ui_hidden("table", $in{'table'});
print "<textarea name=data rows=20 cols=80>";
open(FILE, $file);
while(<FILE>) {
print &html_escape($_);
}
close(FILE);
print "</textarea><br>\n";
print "<input type=submit value='$text{'save'}'>\n";
print "<input type=reset value='$text{'manual_reset'}'>\n";
print "</form>\n";
&ui_print_footer("list.cgi?table=$in{'table'}", $text{$in{'tableclean'}."_return"});