|
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 : /proc/self/root/usr/libexec/webmin/bind8/ |
Upload File : |
#!/usr/bin/perl
# edit_record.cgi
# Edit an existing record of some type
require './bind8-lib.pl';
&ReadParse();
$zone = &get_zone_name($in{'index'}, $in{'view'});
$dom = $zone->{'name'};
&can_edit_zone($zone) ||
&error($text{'recs_ecannot'});
$type = $zone->{'type'};
$file = $zone->{'file'};
@recs = &read_zone_file($file, $dom);
$rec = $recs[$in{'num'}];
&can_edit_type($rec->{'type'}, \%access) ||
&error($text{'recs_ecannottype'});
$desc = &text('edit_header', &ip6int_to_net(&arpa_to_ip($dom)));
&ui_print_header($desc, &text('edit_title', $text{"edit_".$rec->{'type'}} || $rec->{'type'}), "");
&record_input($in{'index'}, $in{'view'}, $in{'type'}, $file,
$dom, $in{'num'}, $rec);
&ui_print_footer("", $text{'index_return'},
"edit_$type.cgi?index=$in{'index'}&view=$in{'view'}",
$text{'recs_return'},
"edit_recs.cgi?index=$in{'index'}&type=$in{'type'}",
$text{'edit_return'});