adds documentation for new dav features

Sun, 03 Jun 2018 12:03:04 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 03 Jun 2018 12:03:04 +0200
changeset 407
9505224d2fd2
parent 406
36333e8a9411
child 408
f71eab18ed38

adds documentation for new dav features

LICENSE file | annotate | diff | comparison | revisions
Makefile file | annotate | diff | comparison | revisions
cppcheck.mk file | annotate | diff | comparison | revisions
docs/src/Makefile file | annotate | diff | comparison | revisions
docs/src/copy.md file | annotate | diff | comparison | revisions
docs/src/get.md file | annotate | diff | comparison | revisions
docs/src/header.html file | annotate | diff | comparison | revisions
docs/src/index.html file | annotate | diff | comparison | revisions
docs/src/move.md file | annotate | diff | comparison | revisions
gcc.mk file | annotate | diff | comparison | revisions
mingw.mk file | annotate | diff | comparison | revisions
osx.mk file | annotate | diff | comparison | revisions
suncc.mk file | annotate | diff | comparison | revisions
--- a/LICENSE	Sun Jun 03 12:02:31 2018 +0200
+++ b/LICENSE	Sun Jun 03 12:03:04 2018 +0200
@@ -1,4 +1,4 @@
-Copyright 2017 Olaf Wintermann. All rights reserved.
+Copyright 2018 Olaf Wintermann. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/Makefile	Sun Jun 03 12:02:31 2018 +0200
+++ b/Makefile	Sun Jun 03 12:03:04 2018 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2016 Olaf Wintermann. All rights reserved.
+# Copyright 2018 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
@@ -34,6 +34,7 @@
 #   suncc
 #   mingw
 #   osx
+#   bsd
 #
 
 CONF=gcc
--- a/cppcheck.mk	Sun Jun 03 12:02:31 2018 +0200
+++ b/cppcheck.mk	Sun Jun 03 12:03:04 2018 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2016 Olaf Wintermann. All rights reserved.
+# Copyright 2018 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/docs/src/Makefile	Sun Jun 03 12:02:31 2018 +0200
+++ b/docs/src/Makefile	Sun Jun 03 12:03:04 2018 +0200
@@ -38,6 +38,8 @@
 SRC += remove.md
 SRC += copy.md
 SRC += move.md
+SRC += export.md
+SRC += import.md
 SRC += get-property.md
 SRC += set-property.md
 SRC += remove-property.md
@@ -48,6 +50,7 @@
 SRC += configuration.md
 SRC += encryption.md
 SRC += add-repository.md
+SRC += remove-repository.md
 SRC += list-repositories.md
 SRC += check-config.md
 SRC += introduction.md
@@ -59,6 +62,10 @@
 SRC += delete-conflicts.md
 SRC += trash-info.md
 SRC += empty-trash.md
+SRC += add-tag.md
+SRC += remove-tag.md
+SRC += set-tags.md
+SRC += list-tags.md
 SRC += add-directory.md
 SRC += list-directories.md
 SRC += sync-check-config.md
--- a/docs/src/copy.md	Sun Jun 03 12:02:31 2018 +0200
+++ b/docs/src/copy.md	Sun Jun 03 12:03:04 2018 +0200
@@ -11,7 +11,7 @@
 If *url2* already exists, the command aborts, unless the `-O` option is specified.
 
 The command uses a single WebDAV COPY request to duplicate the resources.
-You may use file name and path decryption to copy and encrypted resource.
+You may use file name and path decryption to copy an encrypted resource.
 Please note that the copy will always be located at *url2*, so the top most collection name will not be disguised.
 See [encryption][2] for more details on how encryption works.
 
--- a/docs/src/get.md	Sun Jun 03 12:02:31 2018 +0200
+++ b/docs/src/get.md	Sun Jun 03 12:03:04 2018 +0200
@@ -2,7 +2,7 @@
 title: 'dav get'
 ---
 
-**`dav get [-pcR] [-o <file>] [-u <date>] <url>`**
+**`dav get [-pcRK] [-o <file>] [-u <date>] <url>`**
 
 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
@@ -17,6 +17,8 @@
 
 **`-R`** download a collection
 
+**`-K`** download only files that don't exist locally
+
 **`-o <file>`** specify the local output file. A **-** indicates stdout
 
 **`-u <date>`** download only files which are modified since the specified date. Uses the HTTP date format
--- a/docs/src/header.html	Sun Jun 03 12:02:31 2018 +0200
+++ b/docs/src/header.html	Sun Jun 03 12:03:04 2018 +0200
@@ -15,7 +15,8 @@
 						<li><a href="remove.html">remove</a></li>
 						<li><a href="copy.html">copy</a></li>
 						<li><a href="move.html">move</a></li>
-						<li><a href="get-property.html">get-property</a></li>
+						<li><a href="export.html">export</a></li>
+						<li><a href="import.html">import</a></li>
 						<li><a href="set-property.html">set-property</a></li>
 						<li><a href="remove-property.html">remove-property</a></li>
 						<li><a href="lock.html">lock</a></li>
@@ -23,6 +24,7 @@
 						<li><a href="info.html">info</a></li>
 						<li><a href="date.html">date</a></li>
 						<li><a href="add-repository.html">add-repository</a></li>
+						<li><a href="remove-repository.html">remove-repository</a></li>
 						<li><a href="list-repositories.html">list-repositories</a></li>
 						<li><a href="check-config.html">check-config</a></li>
 					</ul>
@@ -43,6 +45,10 @@
 						<li><a href="delete-conflicts.html">delete-conflicts</a></li>
 						<li><a href="trash-info.html">trash-info</a></li>
 						<li><a href="empty-trash.html">empty-trash</a></li>
+						<li><a href="add-tag.html">add-tag</a></li>
+						<li><a href="remove-tag.html">remove-tag</a></li>
+						<li><a href="set-tags.html">set-tags</a></li>
+						<li><a href="list-tags.html">list-tags</a></li>
 						<li><a href="add-directory.html">add-directory</a></li>
 						<li><a href="list-directories.html">list-directories</a></li>
 						<li><a href="sync-check-config.html">check-config</a></li>
--- a/docs/src/index.html	Sun Jun 03 12:02:31 2018 +0200
+++ b/docs/src/index.html	Sun Jun 03 12:03:04 2018 +0200
@@ -26,7 +26,8 @@
 						<li><a href="remove.html">remove</a></li>
 						<li><a href="copy.html">copy</a></li>
 						<li><a href="move.html">move</a></li>
-						<li><a href="get-property.html">get-property</a></li>
+						<li><a href="export.html">export</a></li>
+						<li><a href="import.html">import</a></li>
 						<li><a href="set-property.html">set-property</a></li>
 						<li><a href="remove-property.html">remove-property</a></li>
 						<li><a href="lock.html">lock</a></li>
@@ -34,6 +35,7 @@
 						<li><a href="info.html">info</a></li>
 						<li><a href="date.html">date</a></li>
 						<li><a href="add-repository.html">add-repository</a></li>
+						<li><a href="remove-repository.html">remove-repository</a></li>
 						<li><a href="list-repositories.html">list-repositories</a></li>
 						<li><a href="check-config.html">check-config</a></li>
 					</ul>
@@ -49,10 +51,15 @@
 					<ul>
 						<li><a href="pull.html">pull</a></li>
 						<li><a href="push.html">push</a></li>
+						<li><a href="archive.html">archive</a></li>
 						<li><a href="resolve-conflicts.html">resolve-conflicts</a></li>
 						<li><a href="delete-conflicts.html">delete-conflicts</a></li>
 						<li><a href="trash-info.html">trash-info</a></li>
 						<li><a href="empty-trash.html">empty-trash</a></li>
+						<li><a href="add-tag.html">add-tag</a></li>
+						<li><a href="remove-tag.html">remove-tag</a></li>
+						<li><a href="set-tags.html">set-tags</a></li>
+						<li><a href="list-tags.html">list-tags</a></li>
 						<li><a href="add-directory.html">add-directory</a></li>
 						<li><a href="list-directories.html">list-directories</a></li>
 						<li><a href="sync-check-config.html">check-config</a></li>
@@ -75,7 +82,7 @@
 <p>Mike Becker</p>
 
 <h3>License</h3>
-<pre></code>Copyright 2017 Olaf Wintermann. All rights reserved.
+<pre></code>Copyright 2018 Olaf Wintermann. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:
--- a/docs/src/move.md	Sun Jun 03 12:02:31 2018 +0200
+++ b/docs/src/move.md	Sun Jun 03 12:03:04 2018 +0200
@@ -9,7 +9,7 @@
 If *url2* already exists, the command aborts, unless the `-O` option is specified.
 
 The command uses a single WebDAV MOVE request to move the resources.
-You may use file name and path decryption to copy and encrypted resource.
+You may use file name and path decryption to copy an encrypted resource.
 Please note that the target location will be exactly *url2*, so the top most collection name will not be disguised.
 See [encryption][2] for more details on how encryption works.
 
--- a/gcc.mk	Sun Jun 03 12:02:31 2018 +0200
+++ b/gcc.mk	Sun Jun 03 12:03:04 2018 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2017 Olaf Wintermann. All rights reserved.
+# Copyright 2018 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/mingw.mk	Sun Jun 03 12:02:31 2018 +0200
+++ b/mingw.mk	Sun Jun 03 12:03:04 2018 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2017 Olaf Wintermann. All rights reserved.
+# Copyright 2018 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/osx.mk	Sun Jun 03 12:02:31 2018 +0200
+++ b/osx.mk	Sun Jun 03 12:03:04 2018 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2017 Olaf Wintermann. All rights reserved.
+# Copyright 2018 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:
--- a/suncc.mk	Sun Jun 03 12:02:31 2018 +0200
+++ b/suncc.mk	Sun Jun 03 12:03:04 2018 +0200
@@ -1,7 +1,7 @@
 #
 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 #
-# Copyright 2017 Olaf Wintermann. All rights reserved.
+# Copyright 2018 Olaf Wintermann. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are met:

mercurial