75 lines
3.1 KiB
Perl
Executable File
75 lines
3.1 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_delprofcache.cgi
|
|
# Delete Profile Cache
|
|
# 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';
|
|
&ReadParse();
|
|
$profilename = $in{profilename};
|
|
if (!$profilename) { &redirect("tta_selprofcache.cgi?form=delprofcache"); }
|
|
$postform = $in{postform};
|
|
&headerstta($text{'index_delprofcache'}, "","delprofcache",undef,1,0,"$text{'headpage_right'}"."$text{'head_logout'}",undef,undef,"$text{head_below}" );
|
|
if ( $config{'is_ldapcache'} eq "true" ) {
|
|
$err_msg=$text{'ldapcache_enable'};
|
|
&footCacheHere;
|
|
exit;
|
|
}
|
|
print "<hr><p>\n";
|
|
print "<SCRIPT SRC=\"global.js\">\n";
|
|
print "</SCRIPT>\n";
|
|
print "<SCRIPT LANGUAGE=\"JavaScript\">\n";
|
|
print "<!--\n";
|
|
print "/* Strings for locales */\n";
|
|
print "var msg0=\"".$text{'msg_0'},"\";\n";
|
|
print "var msg1=\"".$text{'msg_1'},"\";\n";
|
|
print "var msg2=\"".$text{'msg_2'},"\";\n";
|
|
print "var msg3=\"".$text{'msg_3'},"\";\n";
|
|
print "var msg4=\"".$text{'msg_4'},"\";\n";
|
|
print "var msg5=\"".$text{'msg_5'},"\";\n";
|
|
print "var msg6=\"".$text{'msg_6'},"\";\n";
|
|
print "var msg7=\"".$text{'msg_7'},"\";\n";
|
|
print "var ask_confadmin=true;\n";
|
|
print "\n";
|
|
print "/******************************************************************\n";
|
|
print " Check_fields(obj)\n";
|
|
print "*******************************************************************/\n";
|
|
print "function Check_fields(obj) {\n";
|
|
print " if ( get_value(\"select\",obj.profilename) == \"none\" ) {\n";
|
|
print " alert(obj.profilename.name+\":\"+msg1);\n";
|
|
print " obj.profilename.focus();\n";
|
|
print " return false;\n";
|
|
print " } \n";
|
|
print "\n";
|
|
print " return true;\n";
|
|
print "}\n";
|
|
print "//-->\n";
|
|
print "</SCRIPT>\n";
|
|
print "\n";
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><font color='$revtext'><b>$text{'titidx_delprofcache'}</b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
print "<form METHOD=POST name=delprofcache ACTION=\"delprofcache.cgi\" onSubmit=\"return Check_fields(this)\">\n";
|
|
print " <tr><td valign=top>",&hlink("<b>$text{'f_profilename'}</b>","fprofilename")," </td>\n";
|
|
|
|
print " <td valign=top><input TYPE=\"text\" NAME=\"profilename\" VALUE=\"$profilename\" cols=\"35\" size=\"35\" ALIGN=left></td></tr>\n";
|
|
|
|
print " <td valign=top>\n";
|
|
%h_profcache=&list_profcache();
|
|
if ( $h_profcache{$profilename}->{'alias'} eq $profilename) {
|
|
print " ".$h_profcache{$profilename}->{'name'}."(". $h_profcache{$profilename}->{'obj'}.")\n";
|
|
}
|
|
print " </td></tr>\n";
|
|
print " <tr><td valign=top><input TYPE=\"submit\" NAME=\"",$text{'f_sendreq'},"\" VALUE=\"",$text{'f_sendreq'},"\">\n";
|
|
print " </td>\n";
|
|
print " <td valign=top><input TYPE=\"reset\" NAME=\"",$text{'f_cancelreq'},"\" VALUE=\"",$text{'f_cancelreq'},"\"></td></tr>\n";
|
|
print " </form>\n";
|
|
print "<tr><tr></table></table><hr><p>\n";
|
|
&footer($config{'back_return'},$text{'index'});
|
|
print "<p><p><p>\n";
|
|
do "footer.pl";
|
|
exit;
|
|
|
|
|
|
|