From d65316c746990cbe4c2b433b007afe00e9492c36 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 30 Jul 2007 15:53:44 +0000
Subject: [PATCH] The following modifications are done in order to be able to handle properly secure connections in both the status command-line and the status panel.  Some options to specify a keystore, a trustore, etc. have been added to the status command-line so that is consistent with the other command-lines that use LDAP.  As for these command-lines if the user does not specify to use Start TLS or LDAPS, the command-line will try to use LDAP to connect. But if there is no LDAP port enabled, the command-line will try to connect to the LDAPS port.

---
 opends/src/quicksetup/org/opends/quicksetup/ui/ProgressDialog.java |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/opends/src/statuspanel/org/opends/statuspanel/ui/ProgressDialog.java b/opends/src/quicksetup/org/opends/quicksetup/ui/ProgressDialog.java
similarity index 97%
rename from opends/src/statuspanel/org/opends/statuspanel/ui/ProgressDialog.java
rename to opends/src/quicksetup/org/opends/quicksetup/ui/ProgressDialog.java
index adc478c..f38ce4a 100644
--- a/opends/src/statuspanel/org/opends/statuspanel/ui/ProgressDialog.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/ProgressDialog.java
@@ -25,7 +25,7 @@
  *      Portions Copyright 2007 Sun Microsystems, Inc.
  */
 
-package org.opends.statuspanel.ui;
+package org.opends.quicksetup.ui;
 
 import java.awt.Dimension;
 import java.awt.GridBagConstraints;
@@ -46,12 +46,10 @@
 import javax.swing.event.HyperlinkListener;
 
 import org.opends.quicksetup.event.MinimumSizeComponentListener;
-import org.opends.quicksetup.ui.UIFactory;
+import org.opends.quicksetup.i18n.ResourceProvider;
 import org.opends.quicksetup.util.HtmlProgressMessageFormatter;
 import org.opends.quicksetup.util.ProgressMessageFormatter;
 
-import org.opends.statuspanel.i18n.ResourceProvider;
-
 /**
  * This panel is used to show the progress of the start/stop/restart operations.
  *
@@ -87,7 +85,7 @@
   {
     super(frame);
     this.parent = frame;
-    setTitle(getMsg("statuspanel-dialog-title"));
+    setTitle(getMsg("progress-dialog-title"));
     createLayout();
   }
 

--
Gitblit v1.10.0