59 lines
2.7 KiB
Perl
Executable File
59 lines
2.7 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_ensrecreate.cgi
|
|
# Loading ENS from File ... Services with Tarantella.
|
|
# 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';
|
|
do "ldap-lib.pl";
|
|
&foreign_require("proc", "proc-lib.pl");
|
|
&ReadParse();
|
|
|
|
&headerstta($text{'index_ttaensrecreate'}, "", "ensrecreate",undef,1,0,"$text{'headpage_right'}"."$text{'head_logout'}",undef,undef,"$text{head_below}" );
|
|
#$debug=6;
|
|
# if ( $debug eq 6 ) { foreach $elem (@in) { print "<p>$elem \n"; } };
|
|
print "<hr><p>\n";
|
|
print "<p>\n";
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_ttaensrecreate'}</b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
print "<center>\n";
|
|
$dataFile = $in{dataFile};
|
|
$go_load = $in{go};
|
|
print "$go <BR>\n";
|
|
if (!$go_load) {
|
|
print "<tr></tr>\n";
|
|
print "<tr><form METHOD=POST name=ensrecreate ACTION=\"tta_ensrecreate.cgi\" >\n";
|
|
print "<td valign=top><h3>$config{tta_base}</h3></td></tr>\n";
|
|
print "<td valign=top>",&hlink("<b>$text{'f_loaddirens'}</b>","floaddirens")," \n";
|
|
print "<td valign=top><input TYPE=\"text\" NAME=\"dataFile\" VALUE=\"\" cols=\"52\" size=\"52\" ALIGN=left ", &file_chooser_button("dataFile",0,0,$config{tta_ensdump_dir})," ($config{tta_ensdump_dir})</td></tr>\n";
|
|
print " <input TYPE=\"hidden\" NAME=\"go\" VALUE=\"go\">\n";
|
|
print " <tr><td valign=top><input TYPE=\"submit\" NAME=\"",$text{'f_sendreq'},"\" VALUE=\"",$text{'f_sendreq'},"\">\n";
|
|
print " \n";
|
|
print " </form>\n";
|
|
print "<tr><tr></table>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'load_data'}</b></td></tr>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'msg_ttataskstop'}</b></td></tr>\n";
|
|
print "</table><hr><p>\n";
|
|
} else {
|
|
print "<tr><td>\n";
|
|
$str=$config{'tta_ensrecreate'}." ".$config{tta_base};
|
|
if ( $dataFile ) {
|
|
$str.="; [ \"\$?\" -eq \"0\" ] && ";
|
|
$str.=$config{'tta_ensload'}." ".$config{tta_ensdump_dir}."$dataFile ".$config{tta_ensload_dir};
|
|
}
|
|
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>\n";
|
|
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;
|