mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
43 lines
1.1 KiB
Perl
Executable File
43 lines
1.1 KiB
Perl
Executable File
#!/usr/local/bin/perl
|
|
# nfs_export.cgi
|
|
# Display a list of NFS exports on some host for the user to choose from
|
|
|
|
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>".&ui_link("#", $dirs[$i], undef, "onClick='choose(\"$dirs[$i]\"); return false;'" );
|
|
print "</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();
|