|
From: <pe...@us...> - 2003-12-22 22:14:40
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents
In directory sc8-pr-cvs1:/tmp/cvs-serv23698/src/java/org/neuclear/commons/crypto/passphraseagents
Modified Files:
GuiDialogAgent.java
Log Message:
Last minute cleanups and documentation prior to release 0.8.1
Index: GuiDialogAgent.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents/GuiDialogAgent.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** GuiDialogAgent.java 19 Dec 2003 00:31:15 -0000 1.5
--- GuiDialogAgent.java 22 Dec 2003 22:14:36 -0000 1.6
***************
*** 29,32 ****
--- 29,35 ----
$Id$
$Log$
+ Revision 1.6 2003/12/22 22:14:36 pelle
+ Last minute cleanups and documentation prior to release 0.8.1
+
Revision 1.5 2003/12/19 00:31:15 pelle
Lots of usability changes through out all the passphrase agents and end user tools.
***************
*** 92,96 ****
frame.setVisible(false);
! frame.setSize(200, 100);
final Panel panel = new Panel();
panel.setLayout(new BorderLayout());
--- 95,99 ----
frame.setVisible(false);
! frame.setSize(300, 100);
final Panel panel = new Panel();
panel.setLayout(new BorderLayout());
***************
*** 122,125 ****
--- 125,129 ----
text.add(nameLabel);
incorrectLabel = new Label();
+ incorrectLabel.setText("Incorrect Passphrase");
incorrectLabel.setForeground(Color.red);
incorrectLabel.setVisible(false);
***************
*** 186,190 ****
passphrase.setText("");
isCancel=true;
! incorrectLabel.setVisible(true);
nameLabel.setText(name);
--- 190,196 ----
passphrase.setText("");
isCancel=true;
! if (incorrect)
! System.err.println("Incorrect passphrase");
! incorrectLabel.setVisible(incorrect);
nameLabel.setText(name);
|