Commit Diff


commit - 31fb449d2661cc511c292351b75ab623a4736b0e
commit + 557565a3485f3bceaaedfceaed9c90915eb457d4
blob - cc9de27a8bca90a735b26b36d7a4451b76a6ce78
blob + 10739197938e4c46e75a636369aa529360694e25
--- README
+++ README
@@ -28,16 +28,15 @@ directory in your classpath. Also copy the file moxo.t
 include your Amazon S3 access information as well as the bucket to use. Right now the bucket
 must already exist and contain files uploaded using the Uploader or Synchronize from Jets3t.
 
-Define the system property "moxo.properties" to point to your moxo.properties file:
+Edit jetty.xml or copy it to a local file and point to it using the following command:
 
-java -cp ... -Dmoxo.properties=moxo.properties com.thinkberg.moxo.MoxoJettyRunner
+java -cp ... -Djetty.xml=jetty.xml com.thinkberg.moxo.MoxoJettyRunner
 
 TODO:
 
 - Create an executable JAR with all required libraries. The Main is already prepared to do
   that but I have not yet fully understood how to get maven to package the jars right next
   to the compiled classes.
-- implement a good way to handle ETags for webdav (using vfs)
 - WebDAV property handling
 - S3 ACL support
 - separated jar packages for the vfs backend and the dav frontend
blob - c6b7846fe350a342bb47de0c2709a27ae7c1b23e
blob + 0e47f326c1df304cd650f3a542497617366517b4
--- modules/webdav/src/main/java/com/thinkberg/webdav/data/DavCollection.java
+++ modules/webdav/src/main/java/com/thinkberg/webdav/data/DavCollection.java
@@ -82,7 +82,7 @@ public class DavCollection extends DavResource {
   }
 
   protected boolean addQuotaAvailableBytesProperty(Element root) {
-    root.addElement(PROP_QUOTA_AVAILABLE_BYTES).addText("" + Long.MAX_VALUE);
+    root.addElement(PROP_QUOTA_AVAILABLE_BYTES).addText(Long.toHexString(Long.MAX_VALUE));
     return true;
   }