summaryrefslogtreecommitdiff
path: root/doc/webdav.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/webdav.txt')
-rw-r--r--doc/webdav.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/webdav.txt b/doc/webdav.txt
index 175f33f..b10012f 100644
--- a/doc/webdav.txt
+++ b/doc/webdav.txt
@@ -22,7 +22,7 @@ Description
===========
The WebDAV module is a very minimalistic implementation of RFC 2518.
-Minimalistic means that not all operations are implementated yet.
+Minimalistic means that not all operations are implemented yet.
So far we have
@@ -34,15 +34,15 @@ So far we have
and the usual GET, POST, HEAD from HTTP/1.1.
-So far mounting a webdav resource into Windows XP works and the basic litmus
+So far, mounting a WebDAV resource into Windows XP works and the basic litmus
tests are passed.
Options
=======
webdav.activate
- If you load the webdav module the WebDAV functionality has to be
- enabled for the directories you want to the provide to the user.
+ If you load the webdav module, the WebDAV functionality has to be
+ enabled for the directories you want to provide to the user.
Default: disable
@@ -54,9 +54,9 @@ webdav.is-readonly
Examples
========
-To enable WebDAV for the /dav directory you take a conditional and wrap around
-your webdav options. You have to use the regex like below as you want to match
-the directory /dav and everything below it, but not /davos. ::
+To enable WebDAV for the /dav directory, you wrap your webdav options in
+a conditional. You have to use the regex like below as you want to match
+the directory /dav and everything below it, but not e.g. /davos. ::
$HTTP["url"] =~ "^/dav($|/)" {
webdav.activate = "enable"