50 lines
2.1 KiB
Perl
Executable File
50 lines
2.1 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_ensdump.cgi
|
|
# EnsDump Services with Tarantella ENS
|
|
# STTA Rev. 1.3 Copyright (c) 2001-2004 Jesús Pérez Lorenzo --- license GNU GPL
|
|
# stta: (@#) 1.31051043346- [2004_01_29_102036]
|
|
|
|
require './stta-lib.pl';
|
|
&foreign_require("proc", "proc-lib.pl");
|
|
&ReadParse();
|
|
&headerstta($text{'index_ttaensdump'}, "", "ttaensdump",undef,1,0,"$text{'headpage_right'}"."$text{'head_logout'}",undef,undef,"$text{head_below}" );
|
|
|
|
print "<hr><p>\n";
|
|
print "<p>\n";
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_ttaensdump'}</b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
$ensPath = $in{enspath};
|
|
print "<hr>\n";
|
|
if (!$ensPath) {
|
|
print "<tr></tr>\n";
|
|
print "<tr><form METHOD=POST name=ensdump ACTION=\"tta_ensdump.cgi\" >\n";
|
|
print "<td valign=top>",&hlink("<b>$text{'f_enspath'}</b>","fenspath")," \n";
|
|
print "<td valign=top><input TYPE=\"text\" NAME=\"enspath\" VALUE=\"",$config{tta_base},"\" cols=\"52\" size=\"52\" ALIGN=left ></td></tr>\n";
|
|
print " <tr><td valign=top><input TYPE=\"submit\" NAME=\"",$text{'f_sendreq'},"\" VALUE=\"",$text{'f_sendreq'},"\">\n";
|
|
print " \n";
|
|
print " </form>\n";
|
|
} else {
|
|
print "<tr><td>\n";
|
|
if ($config{'tta_ensdump_dir'}) {
|
|
$ahora=`date +%Y_%m_%d_%H%M%S`;
|
|
$namefile=$config{'tta_ensdump_dir'}."/".$ahora;
|
|
$str=$config{'tta_ensdump'}." ".$ensPath." ".$namefile;
|
|
} else {
|
|
$str=$config{'tta_ensdump'};
|
|
}
|
|
if (&run_cmd($str)) {
|
|
print "</pre><tr><td><center><b>-- oOo --</b></center></td></tr>\n";
|
|
} else {
|
|
print "<b>$text{'index_cmderr'}</b>\n";
|
|
}
|
|
print "<tr>\n";
|
|
print "<tr><td> $text{user_made} -- $namefile </td></tr>";
|
|
print "<tr>\n";
|
|
print "<tr><td><center>".&text('viewlog_action',$stta_sid)."</td></tr>";
|
|
}
|
|
print "</table></table><p>\n";
|
|
&footer($config{'back_return'},$text{'index'});
|
|
do "footer.pl";
|
|
exit;
|