⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 show_files.cgi

📁 Unix下基于Web的管理工具
💻 CGI
字号:
#!/usr/local/bin/perl# show_files.cgi# Show directives from a files section in a .htaccess filerequire './apache-lib.pl';&ReadParse();$hconf = &get_htaccess_config($in{'file'});$d = $hconf->[$in{'idx'}];$conf = $d->{'members'};&header($text{'show_title'}, "");print "<center><font size=+2>",&text('htfile_header', &dir_name($d),      "<tt>$in{'file'}</tt>"),"</font></center>\n";print "<hr>\n";for($i=0; $i<14; $i++) {	foreach $e (&editable_directives($i, 'directory')) {		foreach $n (split(/\s+/, $e->{'name'})) {			$edit{lc($n)} = $e;			push(@elist, { 'name' => $n, 'edit' => $e });			}		}	}@elist = sort { $a->{'name'} cmp $b->{'name'} } @elist;print "<table border><tr><td $cb><pre>\n\n";&show_directives($conf, 0);print "</pre></td></tr></table><p>\n";print "<form action=edit_files.cgi>\n";print "<input type=hidden name=file value=\"$in{'file'}\">\n";print "<input type=hidden name=idx value=\"$in{'idx'}\">\n";print "<b>$text{'show_edit'}</b>\n";print "<select name=type>\n";foreach $e (@elist) {	print "<option value=",$e->{'edit'}->{'type'},">",	      $e->{'name'},"\n";	}print "</select> <input type=submit value='$text{'show_ok'}'>\n";print "</form>\n";print "<hr>\n";&footer("htaccess_index.cgi?file=$in{'file'}", $text{'htindex_return'});# show_directives(list, indent)sub show_directives{local ($list, $ind) = @_;local $idx;for($idx=0; $idx<@$list; $idx++) {	local $d = $list->[$idx];	next if ($d->{'name'} eq "dummy");	$t = $edit{lc($d->{'name'})};	if ($d->{'type'}) {		# Recurse into section		print " " x $ind;		print "&lt;",$d->{'name'}," ",$d->{'value'},"&gt;\n";		&show_directives($d->{'members'}, $ind+1);		print " " x $ind;		print "&lt;/",$d->{'name'},"&gt;\n";		}	elsif ($_[1] || !$access_types{$t->{'type'}}) {		# Directives in section are not editable		&print_line($d, [ $d->{'name'}," ",$d->{'value'} ], $ind);		}	else {		next if (!$t);		&print_line($d, [ $d->{'name'}," ",$d->{'value'} ], $ind,			    "edit_files.cgi?file=$in{'file'}&type=$t->{'type'}&idx=$in{'idx'}");		}	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -