[Fedora-directory-commits] console/src/com/netscape/management/client/console Console.java, 1.13, 1.14

Richard Allen Megginson (rmeggins) fedora-directory-commits at redhat.com
Tue Jul 15 17:27:00 UTC 2008


Author: rmeggins

Update of /cvs/dirsec/console/src/com/netscape/management/client/console
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv15441/console/src/com/netscape/management/client/console

Modified Files:
	Console.java 
Log Message:
Bump version to 1.1.2
Disable SSLv2 ciphers by default - they are disabled on the server side anyway, so you can't enable them, but this just makes it clear what's going on
Do not use thread.stop - this causes threading issues with modern JVMs
Added support for debugging in Eclipse
Added more debugging log information



Index: Console.java
===================================================================
RCS file: /cvs/dirsec/console/src/com/netscape/management/client/console/Console.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Console.java	23 Jun 2008 23:03:05 -0000	1.13
+++ Console.java	15 Jul 2008 17:26:58 -0000	1.14
@@ -1320,11 +1320,20 @@
                 return LDAP_INIT_FAILED;
             } else {
                 msg = _resource.getString("info","restartDS");
+                Debug.println("Console.LDAPinitialization(): " +
+                			  "before displaying message dialog with message " +
+                			  msg);
+                _splashScreen.toBack();
+                Thread.yield();
                 JOptionPane.showMessageDialog(
                         SplashScreen.getInstance(), msg,
                         _resource.getString("info","restartDSTitle"),
                         JOptionPane.INFORMATION_MESSAGE);
+                Debug.println("Console.LDAPinitialization(): " +
+          			  "after displaying message dialog with message " +
+          			  msg);
                 _dsHasBeenRestarted = true;
+                _splashScreen.toFront();
                 return LDAP_INIT_DS_RESTART;
             }
         }




More information about the Fedora-directory-commits mailing list