From ea32160df8efd283867241cc37effd08ca889597 Mon Sep 17 00:00:00 2001 From: Rich Bowen <rbowen@apache.org> Date: Sun, 15 Jun 2014 15:20:04 +0000 Subject: [PATCH] Rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1602703 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/howto/ssi.html.en | 44 +++++++++++++++------------------- docs/manual/howto/ssi.html.fr | 2 ++ docs/manual/howto/ssi.xml.fr | 2 +- docs/manual/howto/ssi.xml.ja | 2 +- docs/manual/howto/ssi.xml.ko | 2 +- docs/manual/howto/ssi.xml.meta | 2 +- 6 files changed, 25 insertions(+), 29 deletions(-) diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index 4101a71a78..2140cb1bec 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -435,36 +435,30 @@ modified?</a></h3> the ``truth'' of a particular value. (A given string is true if it is nonempty.) For a full list of the comparison operators available to you, see the <code class="module"><a href="../mod/mod_include.html">mod_include</a></code> - documentation. Here are some examples of how one might use this - construct.</p> + documentation.</p> + + <p>For example, if you wish to customize the text on your web page + based on the time of day, you could use the following recipe, placed + in the HTML page:</p> - <p>In your configuration file, you could put the following - line:</p> -<pre class="prettyprint lang-config"> BrowserMatchNoCase macintosh Mac<br /> - BrowserMatchNoCase MSIE InternetExplorer</pre> - - - <p>This will set environment variables ``Mac'' and - ``InternetExplorer'' to true, if the client is running Internet - Explorer on a Macintosh.</p> - - <p>Then, in your SSI-enabled document, you might do the - following:</p> -<div class="example"><p><code> - <!--#if expr="-T reqenv('Mac') && - -T reqenv('InternetExplorer')" --><br /> - Apologetic text goes here<br /> - <!--#else --><br /> - Cool JavaScript code goes here<br /> - <!--#endif --> -</code></p></div> + <div class="example"><p><code> + Good + <!--#if expr="%{TIME_HOUR} >=12" --><br /> + morning!<br /> + <!--#else --><br /> + afternoon!<br /> + <!--#endif --><br /> + </code></p></div> <p>Any other variable (either ones that you define, or normal environment variables) can be used in conditional statements. - With Apache's ability to set environment variables with the + See <a href="../expr.html">Expressions in Apache HTTP Server</a> for + more information on the expression evaluation engine.</p> + + <p>With Apache's ability to set environment variables with the <code>SetEnvIf</code> directives, and other related directives, - this functionality can let you do some pretty involved dynamic - stuff without ever resorting to CGI.</p> + this functionality can let you do a wide variety of dynamic content + on the server side without resorting a full web application.</p> </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div> <div class="section"> diff --git a/docs/manual/howto/ssi.html.fr b/docs/manual/howto/ssi.html.fr index 53b928cc56..9b99b22695 100644 --- a/docs/manual/howto/ssi.html.fr +++ b/docs/manual/howto/ssi.html.fr @@ -28,6 +28,8 @@ <a href="../ja/howto/ssi.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> | <a href="../ko/howto/ssi.html" hreflang="ko" rel="alternate" title="Korean"> ko </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>Les SSI permettent d'ajouter du contenu dynamique à des documents HTML préexistants.</p> diff --git a/docs/manual/howto/ssi.xml.fr b/docs/manual/howto/ssi.xml.fr index bc7b2b5527..2bac4ef1bb 100644 --- a/docs/manual/howto/ssi.xml.fr +++ b/docs/manual/howto/ssi.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 : 1440751 --> +<!-- English Revision: 1440751:1602702 (outdated) --> <!-- French translation : Lucien GENTIS --> <!-- Reviewed by : Vincent Deffontaines --> diff --git a/docs/manual/howto/ssi.xml.ja b/docs/manual/howto/ssi.xml.ja index 1b1ece0a04..0293c7a644 100644 --- a/docs/manual/howto/ssi.xml.ja +++ b/docs/manual/howto/ssi.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: 659902:1440751 (outdated) --> +<!-- English Revision: 659902:1602702 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/howto/ssi.xml.ko b/docs/manual/howto/ssi.xml.ko index 5693cf787d..935eb36c79 100644 --- a/docs/manual/howto/ssi.xml.ko +++ b/docs/manual/howto/ssi.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: 659902:1440751 (outdated) --> +<!-- English Revision: 659902:1602702 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/howto/ssi.xml.meta b/docs/manual/howto/ssi.xml.meta index 0d8deb802c..1c020635eb 100644 --- a/docs/manual/howto/ssi.xml.meta +++ b/docs/manual/howto/ssi.xml.meta @@ -8,7 +8,7 @@ <variants> <variant>en</variant> - <variant>fr</variant> + <variant outdated="yes">fr</variant> <variant outdated="yes">ja</variant> <variant outdated="yes">ko</variant> </variants> -- 2.40.0