commit 2d19cdcbd92d188789c4e855f957cfcda1e76427 from: leo date: Wed Jan 28 20:43:05 2009 UTC documentation updates commit - db533dd9d0293ca93a7c49383a96502b4692e05e commit + 2d19cdcbd92d188789c4e855f957cfcda1e76427 blob - 78030165edf2e616e666cdd925ea0f97c08014e8 blob + 6ec0f295f79a7f62aad663572755129f176273e0 --- README +++ README @@ -39,4 +39,6 @@ TODO: to the compiled classes. - S3 ACL support - separate the S3 backend even further by introducing a caching system to speed up operation +- add authentication support to the DAV server +- add encryption support to the S3 backend for security and safety blob - cb359f84671c786cc2099e749c60d1a8dd343ab7 blob + c257bcb82f250c432ec840141f165f8509dd51b5 --- modules/webdav/src/test/java/com/thinkberg/webdav/tests/DavLockManagerTest.java +++ modules/webdav/src/test/java/com/thinkberg/webdav/tests/DavLockManagerTest.java @@ -147,24 +147,4 @@ public class DavLockManagerTest extends DavTestCase { assertFalse("complex condition with bogus eTag should fail", LockManager.getInstance().evaluateCondition(aFile, condition).result); } - - -// assertFalse(lockManager.evaluateCondition(aFile, " ( [W/\"A weak ETag\"]) ([\"strong ETag\"])"); -// lockManager.evaluateCondition(aFile, "() (Not )"); -// lockManager.evaluateCondition(aFile, "(Not )"); -// lockManager.evaluateCondition(aFile, " ([\"4217\"])"); -// lockManager.evaluateCondition(aFile, " (Not [\"4217\"])"); -// lockManager.evaluateCondition(aFile, "() (Not ) (Not [\"4217\"])"); -// lockManager.evaluateCondition(aFile, "( [10a198]) (Not [10a198])"); - -// public void testLockConditionRequiredException() { -// Lock sharedLock = new Lock(aFile, Lock.WRITE, Lock.SHARED, OWNER_STR, 0, 3600); -// try { -// LockManager.getInstance().acquireLock(sharedLock); -// LockManager.getInstance().checkCondition(aFile, null); -// assertTrue("checkCondition() should fail", false); -// } catch (Exception e) { -// assertEquals(LockConditionRequiredException.class, e.getClass()); -// } -// } }