|
From: <pe...@us...> - 2003-12-08 19:32:35
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/source In directory sc8-pr-cvs1:/tmp/cvs-serv11933/src/java/org/neuclear/source Modified Files: HttpSource.java Log Message: Added support for the http scheme into ID. See http://neuclear.org/archives/000195.html Index: HttpSource.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/source/HttpSource.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** HttpSource.java 6 Dec 2003 00:17:04 -0000 1.11 --- HttpSource.java 8 Dec 2003 19:32:32 -0000 1.12 *************** *** 8,11 **** --- 8,14 ---- * $Id$ * $Log$ + * Revision 1.12 2003/12/08 19:32:32 pelle + * Added support for the http scheme into ID. See http://neuclear.org/archives/000195.html + * * Revision 1.11 2003/12/06 00:17:04 pelle * Updated various areas in NSTools. *************** *** 109,113 **** protected final InputStream getStream(final String endpoint, final String name) throws NeuClearException { try { ! final String urlstring = endpoint + NSTools.name2path(name); final URL url = new URL(urlstring); --- 112,116 ---- protected final InputStream getStream(final String endpoint, final String name) throws NeuClearException { try { ! final String urlstring = endpoint + NSTools.name2path(name)+"/root.id"; final URL url = new URL(urlstring); |