#!/usr/local/bin/perl # # An OpenSLP webmin module # by Monty Charlton , # # Copyright (c) 2000 Caldera Systems # # Permission to use, copy, modify, and distribute this software and its # documentation under the terms of the GNU General Public License is hereby # granted. No representations are made about the suitability of this software # for any purpose. It is provided "as is" without express or implied warranty. # See the GNU General Public License for more details. # require './slp-lib.pl'; &ui_print_header(undef, $text{'dacfg_title'}, ""); local $dacfg = &get_dacfg_config(); print "
\n"; print "\n"; print "\n"; print "
$text{'dacfg_title'}
\n"; local $true=""; local $false=""; if ($dacfg->{'isDA'} !~ /^true$/i || $dacfg->{'isDADisabled'}) { $false = " checked"; } else { $true = " checked"; } print "\n"; print "
$text{'dacfg_isDA'}\n"; print "
\n"; print "\n"; print "True 
\n"; print "\n"; print "False (default) "; print "
\n"; print "
\n"; &ui_print_footer("", $text{'index_return'});