]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
webapi.txt: note that the 'curl' utility can be used to exercise most of this interface
authorBrian Warner <warner@lothar.com>
Tue, 10 Jul 2007 17:36:37 +0000 (10:36 -0700)
committerBrian Warner <warner@lothar.com>
Tue, 10 Jul 2007 17:36:37 +0000 (10:36 -0700)
docs/webapi.txt

index 060f2674bdd95690d96a8d8e032ea7767100ecd2..4597dbff3a08b94064da9a5aa398eee4e13ec2e8 100644 (file)
@@ -76,6 +76,8 @@ for files and directories which do not yet exist.
   specification (rfc2068), this should return a 200 (OK) code when modifying
   and existing file, and a 201 (Created) code when creating a new file.
 
+  To use this, run 'curl -T localfile http://localhost:8011/vdrive/global/newfile'
+
  DELETE FILEURL
 
   This deletes the given file from the vdrive. Note that this *does not*
@@ -208,6 +210,11 @@ for files and directories which do not yet exist.
 
    mkdir -p NEWDIRURL; cp -r DIRNAME/* NEWDIRURL/
 
+  Note that the "curl" utility can be used to provoke this sort of recursive
+  upload, since the -T option will make it use an HTTP 'PUT':
+
+   curl -T /dev/null http://localhost:8011/vdrive/global/newdir?localdir=/home/user/directory-to-upload'
+
 
 == POST Forms ==