From: Wolfgang M. M. <wol...@us...> - 2004-07-02 16:54:33
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/collections/triggers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15785/src/org/exist/collections/triggers Modified Files: Dumper.java Log Message: Fixed resource read/write permissions check. Index: Dumper.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/collections/triggers/Dumper.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Dumper.java 1 Apr 2004 14:12:45 -0000 1.3 --- Dumper.java 2 Jul 2004 16:53:54 -0000 1.4 *************** *** 64,68 **** System.out.println("collection contents:"); DocumentSet docs = new DocumentSet(); ! collection.getDocuments(broker, docs); for(int i = 0; i < docs.getLength(); i++) System.out.println("\t" + ((DocumentImpl)docs.item(i)).getFileName()); --- 64,68 ---- System.out.println("collection contents:"); DocumentSet docs = new DocumentSet(); ! collection.getDocuments(broker, docs, true); for(int i = 0; i < docs.getLength(); i++) System.out.println("\t" + ((DocumentImpl)docs.item(i)).getFileName()); |