📄 edit_forward_options.cgi
字号:
#! /usr/bin/perl## B9DDNS - BIND 9 dynamic DNS webmin module.# Copyright (C) 2003 John Horne. <john.horne@plymouth.ac.uk># Copyright (C) 2004 John Horne. <john.horne@plymouth.ac.uk>## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.### Display options for an existing forward zone.#use strict;no strict 'vars';require './b9ddns-lib.pl';my $conf = my $orig_conf = my $zone_conf = my $view = my $origin = '';my $zone = my $zone_hdr = my $disabled = '';my @views = ();&ReadParse();$orig_conf = $conf = &get_config();if ($in{'view'}) { $view = $conf->[$in{'view'}]; $conf = $view->{'members'};}$zone = $conf->[$in{'index'}];$zone_conf = $zone->{'members'};$origin = lc($zone->{'value'});$origin .= '.' unless ($origin =~ /\.$/o);%access = &get_module_acl();unless (&can_edit_zone(\%access, $zone, $view)) { &terror('fwd_ecannot');}$zone_hdr = &zone_header($in{'dynamic'}, $origin, $text{'Forward'});&header($text{'fwd_opts'}, '', undef, 0, 0, 0, undef, undef, undef, $zone_hdr);unless ($config{'display_fqdn'}) { $origin = &convert_fqdn(-1, $origin, '.', 1);}print '<center><font size=+2>', $origin, '</font></center><hr>';print '<form action=save_forward.cgi>';print '<input type=hidden name=index value="', $in{'index'}, '">';print '<input type=hidden name=view value="', $in{'view'}, '">';print '<table border width=60%>';print "<tr $tb><td><b>$text{'fwd_opts'}</b></td></tr>\n";print "<tr $cb><td><table width=100%>\n";print '<tr>';print &addr_match_input($text{'fwd_masters'}, 'forwarders', $zone_conf, 1);print "</tr>\n";print '<tr align=left>';print &choice_input($text{'fwd_forward'}, 'forward', $zone_conf, 0, $text{'default'}, undef, $text{'yes'}, 'first', $text{'no'}, 'only');print "</tr>\n";print "</table></td></tr></table>\n";$disabled = ($access{'opts'} && ! $access{'ro'}) ? '' : 'disabled';print '<table width=100%><tr><td align=left>';print "<input type=submit $disabled value='", $text{'save'}, '\'></td></form>';@views = grep { &can_edit_view(\%access, $_) } &find('view', $orig_conf);if ((! $in{'view'} && @views) || ($in{'view'} && @views > 1)) { print '<form action=move_zone.cgi>'; print '<input type=hidden name=index value="', $in{'index'}, '">'; print '<input type=hidden name=view value="', $in{'view'}, '">'; print '<td align=right>'; print '<input type=submit $disabled value="', $text{'master_move'}, '">'; print "<select name=newview>\n"; foreach $view (@views) { if ($view->{'index'} ne $in{'view'}) { printf "<option value=%d>%s\n", $view->{'index'}, $view->{'value'}; } } print '</select></td></form>';}print '</tr></table>';print '<hr>';&footer("edit_zone.cgi?index=$in{'index'}&view=$in{'view'}&type=forward", $text{'master_return'});exit;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -