# HG changeset patch # User Olaf Wintermann # Date 1576414111 -3600 # Node ID 0a48f17c729d2f514074592c388a3ed63aa219b8 # Parent 165811ea12abeec9ef80bd47f940a57d51baa18d add documentation for dav versioning commands diff -r 165811ea12ab -r 0a48f17c729d docs/src/checkin.md --- a/docs/src/checkin.md Sun Dec 15 12:11:16 2019 +0100 +++ b/docs/src/checkin.md Sun Dec 15 13:48:31 2019 +0100 @@ -0,0 +1,11 @@ +--- +title: 'dav checkin' +--- + +**`dav checkin [-pc] `** + +Changes the state of a resource to *checked-in*. This will create a new version of the resource. In the *checked-in* state the resource cannot be modified. + +**`-p`** disable file name and path decryption if enabled + +**`-c`** enable file name and path decryption diff -r 165811ea12ab -r 0a48f17c729d docs/src/checkout.md --- a/docs/src/checkout.md Sun Dec 15 12:11:16 2019 +0100 +++ b/docs/src/checkout.md Sun Dec 15 13:48:31 2019 +0100 @@ -0,0 +1,11 @@ +--- +title: 'dav checkout' +--- + +**`dav checkout [-pc] `** + +Changes the state of a resource to *checked-out* to allow modifications to the content and properties. + +**`-p`** disable file name and path decryption if enabled + +**`-c`** enable file name and path decryption diff -r 165811ea12ab -r 0a48f17c729d docs/src/get.md --- a/docs/src/get.md Sun Dec 15 12:11:16 2019 +0100 +++ b/docs/src/get.md Sun Dec 15 13:48:31 2019 +0100 @@ -2,7 +2,7 @@ title: 'dav get' --- -**`dav get [-pcRK] [-o ] [-u ] `** +**`dav get [-pcRK] [-o ] [-u ] [-V ] `** Downloads a resource. This command also downloads collections and its child resources when the **`-R`** option is used. When downloading a single resource, the default local file name is the resource @@ -23,4 +23,6 @@ **`-u `** download only files which are modified since the specified date. Uses the HTTP date format +**`-V `** downloads a specific version of the resource. Available versions can be listed with the *list-versions* command + diff -r 165811ea12ab -r 0a48f17c729d docs/src/list-versions.md --- a/docs/src/list-versions.md Sun Dec 15 12:11:16 2019 +0100 +++ b/docs/src/list-versions.md Sun Dec 15 13:48:31 2019 +0100 @@ -0,0 +1,11 @@ +--- +title: 'dav list-versions' +--- + +**`dav list-versions [-pc] `** + +Lists all versions of a version-controlled resource. + +**`-p`** disable file name and path decryption if enabled + +**`-c`** enable file name and path decryption diff -r 165811ea12ab -r 0a48f17c729d docs/src/uncheckout.md --- a/docs/src/uncheckout.md Sun Dec 15 12:11:16 2019 +0100 +++ b/docs/src/uncheckout.md Sun Dec 15 13:48:31 2019 +0100 @@ -0,0 +1,11 @@ +--- +title: 'dav uncheckout' +--- + +**`dav uncheckout [-pc] `** + +Cancels all modification of the resource and sets the state to *checked-in* without creating a new version. + +**`-p`** disable file name and path decryption if enabled + +**`-c`** enable file name and path decryption diff -r 165811ea12ab -r 0a48f17c729d docs/src/versioncontrol.md --- a/docs/src/versioncontrol.md Sun Dec 15 12:11:16 2019 +0100 +++ b/docs/src/versioncontrol.md Sun Dec 15 13:48:31 2019 +0100 @@ -0,0 +1,13 @@ +--- +title: 'dav versioncontrol' +--- + +**`dav versioncontrol [-pc] `** + +Puts the resource, specified by *url*, under version control. This is required in order to use other versioning commands with this resource. + +To use this command, the server must support *DeltaV*. + +**`-p`** disable file name and path decryption if enabled + +**`-c`** enable file name and path decryption