?? edit_hint_options.cgi
字號:
#! /usr/bin/perl## B9DDNS - BIND 9 dynamic DNS webmin module.# Copyright (C) 2003 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 a hint/root 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 = '.';%access = &get_module_acl();unless (&can_edit_zone(\%access, $zone, $view)) { &terror('master_ecannot');}unless ($access{'opts'}) { &terror('master_eoptscannot');}$zone_hdr = &zone_header($in{'dynamic'}, $origin, $text{'Root'});&header($text{'master_opts'}, '', undef, 0, 0, 0, undef, undef, undef, $zone_hdr);print '<center><font size=+2>', $text{'Root'}, "</font></center><hr>\n";print '<form action=save_hint.cgi>';print '<input type=hidden name=index value="', $in{'index'}, '">';print '<input type=hidden name=view value="', $in{'view'}, '">';print '<input type=hidden name=oldfile value="', $in{'file'}, '">';print '<table border width=100%>';print "<tr $tb><td><b>$text{'master_opts'}</b></td></tr>\n";print "<tr $cb><td><table width=100%>\n";print '<tr><td><b>', $text{'hints_file'}, '</b></td><td>';printf '<input name=file size=30 value="%s">', $in{'file'};print &file_chooser_button('file'), '</td></tr>';print "</table></td></tr></table>\n";print '<table width=100%><tr>';$disabled = ($access{'opts'} && ! $access{'ro'}) ? '' : 'disabled';print "<td align=left><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>'; 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>\n";print '<hr>';&footer("edit_zone.cgi?index=$in{'index'}&view=$in{'view'}&type=hint", $text{'master_return'});exit;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -