|
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/mount/ |
Upload File : |
#!/usr/bin/perl
# nfs_export.cgi
# Display a list of NFS exports on some host for the user to choose from
$trust_unknown_referers = 1;
require './mount-lib.pl';
&ReadParse();
&popup_header(&text('nfs_choose', &html_escape($in{'server'})));
print <<EOF;
<script>
function choose(f)
{
top.opener.ifield.value = f;
window.close();
}
</script>
EOF
if ($error = &exports_list($in{'server'}, \@dirs, \@clients)) {
print "<b>",&text('nfs_failed', &html_escape($in{'server'}),
"<p><tt>$error</tt><p>"),"</b>\n";
exit;
}
print "<b>$text{'nfs_seldir'}</b>\n";
if (defined(&nfs_max_version) && &nfs_max_version($in{'server'}) >= 4) {
print "<br>$text{'nfs_seldirv4'}\n";
}
print "<table border width=100%>\n";
print "<tr $tb> <td><b>$text{'nfs_dir'}</b></td> ",
"<td><b>$text{'nfs_clients'}</b></td> </tr>\n";
for($i=0; $i<@dirs; $i++) {
print "<tr $cb>\n";
print "<td><a href=\"\" onClick='choose(\"$dirs[$i]\"); return false'>",
"$dirs[$i]</a></td>\n";
printf "<td>%s</td>\n",
length($clients[$i]) > 45 ?
&html_escape(substr($clients[$i], 0, 45))." ..." :
&html_escape($clients[$i]);
print "</tr>\n";
}
print "</table>\n";
&popup_footer();