docs: mod_dav: Remove references to DavLockDB being required 
since it's not true for trunk mod_dav_fs; refresh seealso.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915685 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/docs/manual/mod/mod_dav.xml b/docs/manual/mod/mod_dav.xml
index cd4c057..e4ee64f 100644
--- a/docs/manual/mod/mod_dav.xml
+++ b/docs/manual/mod/mod_dav.xml
@@ -37,9 +37,8 @@
     copying, and deleting resources and collections on a remote web
     server.</p>
 </summary>
-<seealso><directive module="mod_dav_fs">DavLockDB</directive></seealso>
+<seealso><module>mod_dav_fs</module></seealso>
 <seealso><directive module="core">LimitXMLRequestBody</directive></seealso>
-<seealso><a href="http://www.webdav.org">WebDAV Resources</a></seealso>
 
 <section id="example"><title>Enabling WebDAV</title>
     <p>To enable <module>mod_dav</module>, add the following to a
@@ -54,20 +53,6 @@
     must be compiled into the server or loaded at runtime using the
     <directive module="mod_so">LoadModule</directive> directive.</p>
 
-    <p>In addition, a location for the DAV lock database must be
-    specified in the global section of your <code>httpd.conf</code>
-    file using the <directive module="mod_dav_fs">DavLockDB</directive>
-    directive:</p>
-
-    <highlight language="config">
-      DavLockDB "/usr/local/apache2/var/DavLock"
-    </highlight>
-
-    <p>The directory containing the lock database file must be
-    writable by the <directive module="mod_unixd">User</directive>
-    and <directive module="mod_unixd">Group</directive> under which
-    Apache is running.</p>
-
     <p>You may wish to add a <directive module="core" type="section"
     >Limit</directive> clause inside the <directive module="core"
     type="section">Location</directive> directive to limit access to
@@ -80,8 +65,6 @@
 
     <example><title>Full Example</title>
     <highlight language="config">
-DavLockDB "/usr/local/apache2/var/DavLock"
-
 &lt;Directory "/usr/local/apache2/htdocs/foo"&gt;
     Require all granted
     Dav On