|
From: <pe...@us...> - 2003-12-12 00:13:14
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/tools/commandline
In directory sc8-pr-cvs1:/tmp/cvs-serv4382/src/java/org/neuclear/id/tools/commandline
Modified Files:
CommandLineSigner.java
Log Message:
This may actually work now. Need to put a few more test cases in to make sure.
Index: CommandLineSigner.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/tools/commandline/CommandLineSigner.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** CommandLineSigner.java 10 Dec 2003 23:58:51 -0000 1.2
--- CommandLineSigner.java 12 Dec 2003 00:13:11 -0000 1.3
***************
*** 1,4 ****
--- 1,7 ----
/* $Id$
* $Log$
+ * Revision 1.3 2003/12/12 00:13:11 pelle
+ * This may actually work now. Need to put a few more test cases in to make sure.
+ *
* Revision 1.2 2003/12/10 23:58:51 pelle
* Did some cleaning up in the builders
***************
*** 327,331 ****
System.out.println("You are about to sign the following Contract. Please make sure that is what you want.");
! System.out.println("Type: " + subject.getTagName());
System.out.println("Proposed Name: " + subject.getName());
System.out.println("Raw XML:\n===================");
--- 330,334 ----
System.out.println("You are about to sign the following Contract. Please make sure that is what you want.");
! System.out.println("Type: " + subject.getElement().getName());
System.out.println("Proposed Name: " + subject.getName());
System.out.println("Raw XML:\n===================");
|