]> granicus.if.org Git - apache/commitdiff
xforms
authorEric Covener <covener@apache.org>
Sun, 30 Nov 2014 18:19:48 +0000 (18:19 +0000)
committerEric Covener <covener@apache.org>
Sun, 30 Nov 2014 18:19:48 +0000 (18:19 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1642589 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/expr.html.en
docs/manual/install.html.en
docs/manual/mod/mod_authz_core.html.en
docs/manual/mod/mod_log_config.xml.ja
docs/manual/mod/mod_log_config.xml.ko
docs/manual/mod/mod_log_config.xml.meta
docs/manual/mod/mod_proxy_fcgi.html.en

index e7babc488060e91525429edf24d4f01169ec4c6c..5f393cb00f406b9b20957a6c1b6d73123e904091 100644 (file)
@@ -506,7 +506,7 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"</pr
 &lt;/Directory&gt;     
 
 # Check a HTTP header for a list of values
-&lt;If "%{HTTP:X-example-header} in { 'foo', 'bar', 'baz'}"&gt;
+&lt;If "%{HTTP:X-example-header} in { 'foo', 'bar', 'baz' }"&gt;
     Header set matched true
 &lt;/If&gt;
 
index dc1cb83d5e3a78a5a9a0d7640705fd2e6b50943f..6ebbeb7dfd2ad2579ea5b25333589bd3b8941d3e 100644 (file)
@@ -42,7 +42,7 @@
     projects.</p>
 
     <p>If you are upgrading from one minor version to the next (for
-    example, 2.2.50 to 2.2.51), please skip down to the <a href="#upgrading">upgrading</a> section.</p>
+    example, 2.4.9 to 2.4.10), please skip down to the <a href="#upgrading">upgrading</a> section.</p>
 
 </div>
 <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#overview">Overview for the
index 7d1cb3d4bfe69f22e3307525a5aded29e0e662ff..fc7706730d10692dd4c0c60915db3a843b577663 100644 (file)
@@ -243,6 +243,15 @@ Alias /secure /webpages/secure
     <pre class="prettyprint lang-config">Require expr "%{TIME_HOUR} -ge 9 &amp;&amp; %{TIME_HOUR} -le 17"</pre>
 
 
+    <pre class="prettyprint lang-config">&lt;RequireAll&gt;
+    Require expr "!(%{QUERY_STRING} =~ /secret/)"
+    Require expr "%{REQUEST_URI} in { '/example.cgi' }" 
+&lt;/RequireAll&gt;</pre>
+
+
+    <pre class="prettyprint lang-config">Require expr "!(%{QUERY_STRING} =~ /secret/) &amp;&amp; %{REQUEST_URI} in { '/example.cgi' }"</pre>
+
+
   <p>The syntax is described in the <a href="../expr.html">ap_expr</a>
   documentation.</p>
 
index 7d391575499e5509789babb3e599d72fc39e7d89..469bb17a90eba4fc6f9d0d4ff8aac5b9794767e0 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: 579425:1619884 (outdated) -->
+<!-- English Revision: 579425:1584684 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index 23c617f6879ded2c052e989ce2ffa98292116cde..47be0f425062edb838e269f97e047b03f9436572 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="EUC-KR" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?>
-<!-- English Revision: 105989:1619884 (outdated) -->
+<!-- English Revision: 105989:1584684 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index d4b2d270f9b201ed18312951d4a81503cc7d578b..d3f68096ba3c77b6ba107f4856e955d93c450ce7 100644 (file)
@@ -11,6 +11,6 @@
     <variant>fr</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
-    <variant>tr</variant>
+    <variant outdated="yes">tr</variant>
   </variants>
 </metafile>
index 9f4c65135aea3b3e816a59b6ec8b45e13ae1659a..e3b5998a555371ab681f5ab6ff4bfb1fe2a40d64 100644 (file)
     <p> The following example passes the request URI as a filesystem
     path for the PHP-FPM daemon to run. In this case, PHP-FPM is listening on
     a unix domain socket (UDS).  Requires 2.4.9 or later. With this syntax,
-    the hostname and optional port following fci:// are ignored.</p>
+    the hostname and optional port following fcgi:// are ignored.</p>
     <div class="example"><h3>PHP-FPM with UDS</h3><pre class="prettyprint lang-config">ProxyPassMatch ^/(.*\.php(/.*)?)$ "unix:/var/run/php5-fpm.sock|fcgi://localhost/var/www/"</pre>
 </div>