Limit WebDAV access to users with granted permissions
Fix typo
Always return on HTTP Error 500
minimal file archiving solution
This is the server-side of this application. If you are searching for a client, have a look at Yukari, the standard client.
Upload a new file (or a new version of a file):
curl -u <username>:<password> -X PUT --form file=@/local/path/to/file http://myserver.com:8080/<server>/archive/target/path
Create a new directory:
curl -u <username>:<password> -X MKDIR http://myserver.com:8080/<server>/archive/path/for/new/directory
Move (or rename) a file or directory:
curl -u <username>:<password> -H "Content-Type: plain/text" -X MOVE --data /new/path http://myserver.com:8080/<server>/archive/old/path
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License (version 3 only) as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.