|
From: Chris W. <la...@us...> - 2001-10-17 04:47:12
|
Update of /cvsroot/openinteract/OpenInteract/script
In directory usw-pr-cvs1:/tmp/cvs-serv25485/script
Modified Files:
oi_manage
Log Message:
modify to reflect server configuration file changes
Index: oi_manage
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract/script/oi_manage,v
retrieving revision 1.45
retrieving revision 1.46
diff -C2 -d -r1.45 -r1.46
*** oi_manage 2001/10/10 13:55:07 1.45
--- oi_manage 2001/10/17 04:47:08 1.46
***************
*** 1191,1195 ****
ACTION:
foreach my $action ( sort keys %{ $C->{action} } ) {
- next ACTION if ( $action eq '_default_action_info_' );
if ( ! $action or $action =~ /^_/ ) {
my $redir_action = $C->{action}{ $action }{redir};
--- 1191,1194 ----
***************
*** 2440,2444 ****
DBKEY:
foreach my $db_key ( keys %{ $C->{db_info} } ) {
! my $default_status = ( $db_key eq $C->{default_connection_db} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$db_key>>$default_status\n$SEP";
--- 2439,2444 ----
DBKEY:
foreach my $db_key ( keys %{ $C->{db_info} } ) {
! my $default_status = ( $db_key eq $C->{datasource}{default_connection_db} ||
! $db_key eq $C->{default_connection_db} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$db_key>>$default_status\n$SEP";
***************
*** 2526,2530 ****
LDAPKEY:
foreach my $ldap_key ( keys %{ $C->{ldap_info} } ) {
! my $default_status = ( $ldap_key eq $C->{default_connection_ldap} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$ldap_key>>$default_status\n$SEP";
--- 2526,2531 ----
LDAPKEY:
foreach my $ldap_key ( keys %{ $C->{ldap_info} } ) {
! my $default_status = ( $ldap_key eq $C->{datasource}{default_connection_ldap} ||
! $ldap_key eq $C->{default_connection_ldap} )
? " (default connection) " : '';
push @msg, "\nStatus of connection <<$ldap_key>>$default_status\n$SEP";
|