|
From: <pe...@us...> - 2003-12-19 00:31:34
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/signers/servlet
In directory sc8-pr-cvs1:/tmp/cvs-serv19108/src/java/org/neuclear/signers/servlet
Modified Files:
DemoSigningServlet.java SigningServlet.java
Log Message:
Lots of usability changes through out all the passphrase agents and end user tools.
Index: DemoSigningServlet.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/signers/servlet/DemoSigningServlet.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** DemoSigningServlet.java 16 Dec 2003 23:17:06 -0000 1.16
--- DemoSigningServlet.java 19 Dec 2003 00:31:31 -0000 1.17
***************
*** 2,5 ****
--- 2,8 ----
* $Id$
* $Log$
+ * Revision 1.17 2003/12/19 00:31:31 pelle
+ * Lots of usability changes through out all the passphrase agents and end user tools.
+ *
* Revision 1.16 2003/12/16 23:17:06 pelle
* Work done on the SigningServlet. The two phase web model is now only an option.
***************
*** 7,11 ****
* The screen has also been cleaned up and displays the xml to be signed.
* The GuiDialogueAgent now optionally remembers passphrases and has a checkbox to support this.
! * The PassPhraseAgent's now have a UserCancelsException, which allows the agent to tell the application if the user specifically
* cancels the signing process.
*
--- 10,14 ----
* The screen has also been cleaned up and displays the xml to be signed.
* The GuiDialogueAgent now optionally remembers passphrases and has a checkbox to support this.
! * The PassPhraseAgent's now have a UserCancellationException, which allows the agent to tell the application if the user specifically
* cancels the signing process.
*
Index: SigningServlet.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/signers/servlet/SigningServlet.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** SigningServlet.java 16 Dec 2003 23:44:10 -0000 1.25
--- SigningServlet.java 19 Dec 2003 00:31:31 -0000 1.26
***************
*** 2,5 ****
--- 2,8 ----
* $Id$
* $Log$
+ * Revision 1.26 2003/12/19 00:31:31 pelle
+ * Lots of usability changes through out all the passphrase agents and end user tools.
+ *
* Revision 1.25 2003/12/16 23:44:10 pelle
* End of work day clean up
***************
*** 10,14 ****
* The screen has also been cleaned up and displays the xml to be signed.
* The GuiDialogueAgent now optionally remembers passphrases and has a checkbox to support this.
! * The PassPhraseAgent's now have a UserCancelsException, which allows the agent to tell the application if the user specifically
* cancels the signing process.
*
--- 13,17 ----
* The screen has also been cleaned up and displays the xml to be signed.
* The GuiDialogueAgent now optionally remembers passphrases and has a checkbox to support this.
! * The PassPhraseAgent's now have a UserCancellationException, which allows the agent to tell the application if the user specifically
* cancels the signing process.
*
***************
*** 244,248 ****
import org.neuclear.commons.crypto.Base64;
import org.neuclear.commons.crypto.passphraseagents.GuiDialogAgent;
! import org.neuclear.commons.crypto.passphraseagents.UserCancelsException;
import org.neuclear.commons.crypto.signers.*;
import org.neuclear.commons.servlets.ServletTools;
--- 247,251 ----
import org.neuclear.commons.crypto.Base64;
import org.neuclear.commons.crypto.passphraseagents.GuiDialogAgent;
! import org.neuclear.commons.crypto.passphraseagents.UserCancellationException;
import org.neuclear.commons.crypto.signers.*;
import org.neuclear.commons.servlets.ServletTools;
***************
*** 350,354 ****
out.println("<li><font color=\"red\"><b>ERROR: Invalid Identity</b></font></li>");
isSigned = false;
! } catch (UserCancelsException e) {
// System.out.println("<br><font color=\"red\"><b>ERROR: User Cancellation</b></font><br>");
out.println("<li><font color=\"red\"><b>You Cancelled</b></font></li>");
--- 353,357 ----
out.println("<li><font color=\"red\"><b>ERROR: Invalid Identity</b></font></li>");
isSigned = false;
! } catch (UserCancellationException e) {
// System.out.println("<br><font color=\"red\"><b>ERROR: User Cancellation</b></font><br>");
out.println("<li><font color=\"red\"><b>You Cancelled</b></font></li>");
|