From: Wolfgang M. M. <wol...@us...> - 2004-04-27 15:47:40
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/security In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28184/src/org/exist/security Modified Files: SecurityManager.java security.properties Log Message: * XQuery node construction consumed too much memory: instead of generating a SAX stream, nodes are now directly copied to the created output fragment. * QName objects are now created through the global name pool and thus shared between node objects. Index: security.properties =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/security/security.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** security.properties 23 Apr 2004 13:07:43 -0000 1.1 --- security.properties 27 Apr 2004 15:46:59 -0000 1.2 *************** *** 10,12 **** # the database will not recognize the old passwords. ! passwords.encoding=md5 \ No newline at end of file --- 10,12 ---- # the database will not recognize the old passwords. ! passwords.encoding=md5 Index: SecurityManager.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/security/SecurityManager.java,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** SecurityManager.java 23 Apr 2004 13:07:43 -0000 1.17 --- SecurityManager.java 27 Apr 2004 15:46:59 -0000 1.18 *************** *** 19,23 **** * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * ! * $Id: */ package org.exist.security; --- 19,23 ---- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * ! * $Id$ */ package org.exist.security; |