diff options
author | Ken Coar <coar@apache.org> | 2015-04-15 20:04:05 +0000 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2015-04-15 20:04:05 +0000 |
commit | 430aadce59b536d533be35d333eebfe579a94d16 (patch) | |
tree | fcd7eb8e221a10583db0158affd211834cbfa602 /docs/manual/howto | |
parent | 45c7b5bc133d9da7bb179574541d99680660ca86 (diff) | |
download | httpd-430aadce59b536d533be35d333eebfe579a94d16.tar.gz |
* Remove trailing whitespace from a bunch of *.xml files
* Quoted arguments to Rewrite{Base,Cond,Map,Rule}.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673945 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/howto')
-rw-r--r-- | docs/manual/howto/access.html.en | 15 | ||||
-rw-r--r-- | docs/manual/howto/access.html.fr | 2 | ||||
-rw-r--r-- | docs/manual/howto/access.xml | 6 | ||||
-rw-r--r-- | docs/manual/howto/access.xml.fr | 2 | ||||
-rw-r--r-- | docs/manual/howto/access.xml.meta | 2 | ||||
-rw-r--r-- | docs/manual/howto/auth.html.en | 6 | ||||
-rw-r--r-- | docs/manual/howto/auth.xml.fr | 2 | ||||
-rw-r--r-- | docs/manual/howto/auth.xml.ja | 2 | ||||
-rw-r--r-- | docs/manual/howto/auth.xml.ko | 2 | ||||
-rw-r--r-- | docs/manual/howto/auth.xml.tr | 2 | ||||
-rw-r--r-- | docs/manual/howto/cgi.xml | 1 | ||||
-rw-r--r-- | docs/manual/howto/public_html.xml.fr | 2 | ||||
-rw-r--r-- | docs/manual/howto/public_html.xml.ja | 2 | ||||
-rw-r--r-- | docs/manual/howto/public_html.xml.ko | 2 | ||||
-rw-r--r-- | docs/manual/howto/public_html.xml.tr | 2 |
15 files changed, 27 insertions, 23 deletions
diff --git a/docs/manual/howto/access.html.en b/docs/manual/howto/access.html.en index 4fe15647c7..7817bdd1df 100644 --- a/docs/manual/howto/access.html.en +++ b/docs/manual/howto/access.html.en @@ -86,7 +86,7 @@ Require ip ip.address</pre> syntax.</p> <p>You can insert <code>not</code> to negate a particular requirement. - Note, that since a <code>not</code> is a negation of a value, it cannot + Note, that since a <code>not</code> is a negation of a value, it cannot be used by itself to allow or deny a request, as <em>not true</em> does not constitute <em>false</em>. Thus, to deny a visit using a negation, the block must have one element that evaluates as true or false. @@ -101,11 +101,12 @@ Require ip ip.address</pre> <p>Visitors coming from that address (<code>10.252.46.165</code>) - will not be able to see the content covered by this directive. If, - instead, you have a machine name, rather than an IP address, you + will not be able to see the content covered by this directive. If, + instead, you have a machine name, rather than an IP address, you can use that.</p> - <pre class="prettyprint lang-config">Require not host <var>host.example.com</var></pre> + <pre class="prettyprint lang-config">Require not host <var>host.example.com</var> + </pre> <p>And, if you'd like to block access from an entire domain, @@ -163,9 +164,9 @@ Require not host gov</pre> and 6am, you can do this using <code class="module"><a href="../mod/mod_rewrite.html">mod_rewrite</a></code>.</p> <pre class="prettyprint lang-config">RewriteEngine On -RewriteCond %{TIME_HOUR} >=20 [OR] -RewriteCond %{TIME_HOUR} <07 -RewriteRule ^/fridge - [F]</pre> +RewriteCond "%{TIME_HOUR}" ">=20" [OR] +RewriteCond "%{TIME_HOUR}" "<07" +RewriteRule "^/fridge" "-" [F]</pre> <p>This will return a 403 Forbidden response for any request after 8pm diff --git a/docs/manual/howto/access.html.fr b/docs/manual/howto/access.html.fr index 010d95d342..0e1e635021 100644 --- a/docs/manual/howto/access.html.fr +++ b/docs/manual/howto/access.html.fr @@ -24,6 +24,8 @@ <p><span>Langues Disponibles: </span><a href="../en/howto/access.html" hreflang="en" rel="alternate" title="English"> en </a> | <a href="../fr/howto/access.html" title="Français"> fr </a></p> </div> +<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version + anglaise pour les changements récents.</div> <p>Le contrôle d'accès fait référence à tout concept de contrôle d'accès à une ressource quelconque. Il est distinct du processus d'<a href="auth.html">authentification et d'autorisation</a>.</p> diff --git a/docs/manual/howto/access.xml b/docs/manual/howto/access.xml index f2242a1915..244bc1f1e7 100644 --- a/docs/manual/howto/access.xml +++ b/docs/manual/howto/access.xml @@ -172,9 +172,9 @@ Require expr %{HTTP_USER_AGENT} != 'BadBot' <highlight language="config"> RewriteEngine On -RewriteCond %{TIME_HOUR} >=20 [OR] -RewriteCond %{TIME_HOUR} <07 -RewriteRule ^/fridge - [F] +RewriteCond "%{TIME_HOUR}" ">=20" [OR] +RewriteCond "%{TIME_HOUR}" "<07" +RewriteRule "^/fridge" "-" [F] </highlight> <p>This will return a 403 Forbidden response for any request after 8pm diff --git a/docs/manual/howto/access.xml.fr b/docs/manual/howto/access.xml.fr index 518d9f8f3c..28088c4cc0 100644 --- a/docs/manual/howto/access.xml.fr +++ b/docs/manual/howto/access.xml.fr @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?> -<!-- English Revision : 1666025 --> +<!-- English Revision: 1666025:1673932 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> diff --git a/docs/manual/howto/access.xml.meta b/docs/manual/howto/access.xml.meta index 605822ecb4..c42bb44f51 100644 --- a/docs/manual/howto/access.xml.meta +++ b/docs/manual/howto/access.xml.meta @@ -8,6 +8,6 @@ <variants> <variant>en</variant> - <variant>fr</variant> + <variant outdated="yes">fr</variant> </variants> </metafile> diff --git a/docs/manual/howto/auth.html.en b/docs/manual/howto/auth.html.en index b22c1cbc86..023538b83d 100644 --- a/docs/manual/howto/auth.html.en +++ b/docs/manual/howto/auth.html.en @@ -506,13 +506,15 @@ Require group GroupName</pre> that will be called during the authorization stage of the request processing. For example:</p> - <pre class="prettyprint lang-config">Require ip <var>address</var></pre> + <pre class="prettyprint lang-config">Require ip <var>address</var> + </pre> <p>where <var>address</var> is an IP address (or a partial IP address) or:</p> - <pre class="prettyprint lang-config">Require host <var>domain_name</var></pre> + <pre class="prettyprint lang-config">Require host <var>domain_name</var> + </pre> <p>where <var>domain_name</var> is a fully qualified domain name diff --git a/docs/manual/howto/auth.xml.fr b/docs/manual/howto/auth.xml.fr index dc50e4cc02..f80cb393f1 100644 --- a/docs/manual/howto/auth.xml.fr +++ b/docs/manual/howto/auth.xml.fr @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> -<!-- English Revision: 1599841:1673582 (outdated) --> +<!-- English Revision: 1599841:1673932 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviwed by : Vincent Deffontaines --> diff --git a/docs/manual/howto/auth.xml.ja b/docs/manual/howto/auth.xml.ja index 32cb4bbe6b..578700dd4d 100644 --- a/docs/manual/howto/auth.xml.ja +++ b/docs/manual/howto/auth.xml.ja @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?> -<!-- English Revision: 479777:1673582 (outdated) --> +<!-- English Revision: 479777:1673932 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/howto/auth.xml.ko b/docs/manual/howto/auth.xml.ko index 41bb8d37f0..7d735d45e3 100644 --- a/docs/manual/howto/auth.xml.ko +++ b/docs/manual/howto/auth.xml.ko @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='EUC-KR' ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?> -<!-- English Revision: 105989:1673582 (outdated) --> +<!-- English Revision: 105989:1673932 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/howto/auth.xml.tr b/docs/manual/howto/auth.xml.tr index d4484ed0d2..ee7be14825 100644 --- a/docs/manual/howto/auth.xml.tr +++ b/docs/manual/howto/auth.xml.tr @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?> -<!-- English Revision: 1070891:1673582 (outdated) --> +<!-- English Revision: 1070891:1673932 (outdated) --> <!-- ===================================================== Translated by: Umut Samuk <umut belgeler.org> Reviewed by: Nilgün Belma Bugüner <nilgun belgeler.org> diff --git a/docs/manual/howto/cgi.xml b/docs/manual/howto/cgi.xml index d3aaa004b1..197d3e1c0e 100644 --- a/docs/manual/howto/cgi.xml +++ b/docs/manual/howto/cgi.xml @@ -577,4 +577,3 @@ foreach my $key (keys %ENV) { have found a problem in the Apache source code.</p> </section> </manualpage> - diff --git a/docs/manual/howto/public_html.xml.fr b/docs/manual/howto/public_html.xml.fr index ffebcad748..8bfc008897 100644 --- a/docs/manual/howto/public_html.xml.fr +++ b/docs/manual/howto/public_html.xml.fr @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?> -<!-- English Revision: 1649338:1673892 (outdated) --> +<!-- English Revision: 1649338:1673932 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> diff --git a/docs/manual/howto/public_html.xml.ja b/docs/manual/howto/public_html.xml.ja index 95f63feb35..130259a8a1 100644 --- a/docs/manual/howto/public_html.xml.ja +++ b/docs/manual/howto/public_html.xml.ja @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?> -<!-- English Revision: 1591191:1673892 (outdated) --> +<!-- English Revision: 1591191:1673932 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/howto/public_html.xml.ko b/docs/manual/howto/public_html.xml.ko index 29a37adbf6..05b1c4fe73 100644 --- a/docs/manual/howto/public_html.xml.ko +++ b/docs/manual/howto/public_html.xml.ko @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='EUC-KR' ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?> -<!-- English Revision: 151408:1673892 (outdated) --> +<!-- English Revision: 151408:1673932 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/howto/public_html.xml.tr b/docs/manual/howto/public_html.xml.tr index 63d212667a..23ccd490fb 100644 --- a/docs/manual/howto/public_html.xml.tr +++ b/docs/manual/howto/public_html.xml.tr @@ -1,7 +1,7 @@ <?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?> -<!-- English Revision: 1174747:1673892 (outdated) --> +<!-- English Revision: 1174747:1673932 (outdated) --> <!-- ===================================================== Translated by: Nilgün Belma Bugüner <nilgun belgeler.org> Reviewed by: Orhan Berent <berent belgeler.org> |