]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
xforms
authorJeff Trawick <trawick@apache.org>
Tue, 7 Aug 2012 14:53:55 +0000 (14:53 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 7 Aug 2012 14:53:55 +0000 (14:53 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1370291 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html.en
docs/manual/mod/core.xml.de
docs/manual/mod/core.xml.es
docs/manual/mod/core.xml.fr
docs/manual/mod/core.xml.ja
docs/manual/mod/core.xml.tr
docs/manual/mod/mod_socache_dbm.html.en
docs/manual/mod/mod_socache_shmcb.html.en

index 7ec392e9bc86107467fc5109a78444c1027a3bc1..fff62dea1f8eaa2fddda7e9a0002c8b2d9f9a4ca 100644 (file)
@@ -3220,9 +3220,11 @@ or specified mutexes</td></tr>
 
     <p>With the file-based mechanisms <em>fcntl</em> and <em>flock</em>,
     the path, if provided, is a directory where the lock file will be created.
-    The default directory is httpd's run-time file directory relative to
-    <code class="directive"><a href="#serverroot">ServerRoot</a></code>.  Always use a local disk
-    filesystem for <code>/path/to/mutex</code> and never a directory residing
+    The default directory is httpd's run-time file directory,
+    <code class="directive"><a href="#defaultruntimedir">DefaultRuntimeDir</a></code>.  If a relative
+    path is provided, it is relative to
+    <code class="directive"><a href="#defaultruntimedir">DefaultRuntimeDir</a></code>.  Always use a local
+    disk filesystem for <code>/path/to/mutex</code> and never a directory residing
     on a NFS- or AFS-filesystem.  The basename of the file will be the mutex
     type, an optional instance string provided by the module, and unless the
     <code>OmitPID</code> keyword is specified, the process id of the httpd
index 23dc992628f9a3d7bbc9c3c1a0dfdd5fe92426fa..ddaf4a0720a10855794eb0d1d66c9c501deb5ffc 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.de.xsl"?>
-<!-- English Revision: 344972:1369784 (outdated) -->
+<!-- English Revision: 344972:1370288 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 5d759839d27fa6af301b9888f9e6cc033a3985c6..9cf673b1e963fb08b2700e8649923be925ad3d80 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
-<!-- English Revision: 1040494:1369784 (outdated) -->
+<!-- English Revision: 1040494:1370288 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 33469c1b5234f0a571f053c7d8f01dda34ec0d5e..3022b00a58f8d80ea3014c11095f6c488ff97ae7 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
-<!-- English Revision: 1357168:1369784 (outdated) -->
+<!-- English Revision: 1357168:1370288 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 173d1d396f710f99e562f379f05da59df29c3502..85d3bdd4dd2e68cd3ba53f6ecad6d0c704d579e9 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 669847:1369784 (outdated) -->
+<!-- English Revision: 669847:1370288 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 784c704cc86c607c601e0a0c9759572dc936bcb9..57574bbc1e05f67b456b9e7650406d495db4ccda 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 1302855:1369784 (outdated) -->
+<!-- English Revision: 1302855:1370288 (outdated) -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>
index 5b718fd11b9f566748f6ff9b1980084e0b1a0173..5eab96a765a36dc5cadd2d23afed794a429f9188 100644 (file)
@@ -41,6 +41,9 @@
     dbm:/path/to/datafile
     </code></p></div>
 
+    <p>If the path is not absolute then it is assumed to be relative to
+    the <code class="directive"><a href="../mod/core.html#defaultruntimedir">DefaultRuntimeDir</a></code>.</p>
+
     <p>Details of other shared object cache providers can be found
     <a href="../socache.html">here</a>.
     </p>
index 335db47cbe4d81562cc54a9c58175bb140e479e8..302bebf0ab06fc45977d14cff8fc8bfd1f846c24 100644 (file)
@@ -41,6 +41,9 @@
     shmcb:/path/to/datafile(512000)
     </code></p></div>
 
+    <p>If the path is not absolute then it is assumed to be relative to
+    the <code class="directive"><a href="../mod/core.html#defaultruntimedir">DefaultRuntimeDir</a></code>.</p>
+
     <p>Details of other shared object cache providers can be found
     <a href="../socache.html">here</a>.
     </p>