|
From: Pelle B. <pe...@us...> - 2004-03-23 22:12:20
|
Update of /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/browser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14384/src/java/org/neuclear/ledger/browser Modified Files: LedgerConfiguration.java Log Message: Bumped version numbers for commons and xmlsig througout. Updated repositories and webservers to use old.neuclear.org Various other fixes in project.xml and project.properties on misc projects. Index: LedgerConfiguration.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/browser/LedgerConfiguration.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LedgerConfiguration.java 21 Mar 2004 00:48:35 -0000 1.2 --- LedgerConfiguration.java 23 Mar 2004 22:01:42 -0000 1.3 *************** *** 2,9 **** import org.neuclear.commons.configuration.Configuration; ! import org.neuclear.commons.sql.ConnectionSource; ! import org.neuclear.commons.sql.TestCaseXAConnectionSource; ! import org.neuclear.commons.sql.statements.SimpleStatementFactory; ! import org.neuclear.commons.sql.statements.StatementFactory; /* --- 2,9 ---- import org.neuclear.commons.configuration.Configuration; ! import org.neuclear.ledger.Ledger; ! import org.neuclear.ledger.simple.SimpleLedger; ! import org.picocontainer.Parameter; ! import org.picocontainer.defaults.ConstantParameter; /* *************** *** 27,30 **** --- 27,35 ---- $Id$ $Log$ + Revision 1.3 2004/03/23 22:01:42 pelle + Bumped version numbers for commons and xmlsig througout. + Updated repositories and webservers to use old.neuclear.org + Various other fixes in project.xml and project.properties on misc projects. + Revision 1.2 2004/03/21 00:48:35 pelle The problem with Enveloped signatures has now been fixed. It was a problem in the way transforms work. I have bandaided it, but in the future if better support for transforms need to be made, we need to rethink it a bit. Perhaps using the new crypto channel's in neuclear-commons. *************** *** 42,48 **** public class LedgerConfiguration implements Configuration { public void configure(org.picocontainer.MutablePicoContainer pico) { ! pico.registerComponentImplementation(ConnectionSource.class, TestCaseXAConnectionSource.class); ! pico.registerComponentImplementation(StatementFactory.class, SimpleStatementFactory.class); // pico.registerComponentImplementation(Ledger.class,SQLLedger.class,new Parameter[] {new ConstantParameter("neu://test/bux")}); } --- 47,54 ---- public class LedgerConfiguration implements Configuration { public void configure(org.picocontainer.MutablePicoContainer pico) { ! // pico.registerComponentImplementation(ConnectionSource.class, TestCaseXAConnectionSource.class); ! // pico.registerComponentImplementation(StatementFactory.class, SimpleStatementFactory.class); // pico.registerComponentImplementation(Ledger.class,SQLLedger.class,new Parameter[] {new ConstantParameter("neu://test/bux")}); + pico.registerComponentImplementation(Ledger.class, SimpleLedger.class, new Parameter[]{new ConstantParameter("neu://test/bux")}); } |