You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2014/06/15 17:20:04 UTC

svn commit: r1602703 - in /httpd/httpd/trunk/docs/manual/howto: ssi.html.en ssi.html.fr ssi.xml.fr ssi.xml.ja ssi.xml.ko ssi.xml.meta

Author: rbowen
Date: Sun Jun 15 15:20:04 2014
New Revision: 1602703

URL: http://svn.apache.org/r1602703
Log:
Rebuild

Modified:
    httpd/httpd/trunk/docs/manual/howto/ssi.html.en
    httpd/httpd/trunk/docs/manual/howto/ssi.html.fr
    httpd/httpd/trunk/docs/manual/howto/ssi.xml.fr
    httpd/httpd/trunk/docs/manual/howto/ssi.xml.ja
    httpd/httpd/trunk/docs/manual/howto/ssi.xml.ko
    httpd/httpd/trunk/docs/manual/howto/ssi.xml.meta

Modified: httpd/httpd/trunk/docs/manual/howto/ssi.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.html.en?rev=1602703&r1=1602702&r2=1602703&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/ssi.html.en (original)
+++ httpd/httpd/trunk/docs/manual/howto/ssi.html.en Sun Jun 15 15:20:04 2014
@@ -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>
-
-    <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>
-        &lt;!--#if expr="-T reqenv('Mac') &amp;&amp;
-                         -T reqenv('InternetExplorer')" --&gt;<br />
-        Apologetic text goes here<br />
-        &lt;!--#else --&gt;<br />
-        Cool JavaScript code goes here<br />
-        &lt;!--#endif --&gt;
-</code></p></div>
+    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>
+
+    <div class="example"><p><code>
+    Good
+    &lt;!--#if expr="%{TIME_HOUR} &gt;=12" --&gt;<br />
+    morning!<br />
+    &lt;!--#else --&gt;<br />
+    afternoon!<br />
+    &lt;!--#endif --&gt;<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">

Modified: httpd/httpd/trunk/docs/manual/howto/ssi.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.html.fr?rev=1602703&r1=1602702&r2=1602703&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/ssi.html.fr (original)
+++ httpd/httpd/trunk/docs/manual/howto/ssi.html.fr Sun Jun 15 15:20:04 2014
@@ -28,6 +28,8 @@
 <a href="../ja/howto/ssi.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../ko/howto/ssi.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</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>

Modified: httpd/httpd/trunk/docs/manual/howto/ssi.xml.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.xml.fr?rev=1602703&r1=1602702&r2=1602703&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/ssi.xml.fr (original)
+++ httpd/httpd/trunk/docs/manual/howto/ssi.xml.fr Sun Jun 15 15:20:04 2014
@@ -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 -->
 

Modified: httpd/httpd/trunk/docs/manual/howto/ssi.xml.ja
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.xml.ja?rev=1602703&r1=1602702&r2=1602703&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/ssi.xml.ja [utf-8] (original)
+++ httpd/httpd/trunk/docs/manual/howto/ssi.xml.ja [utf-8] Sun Jun 15 15:20:04 2014
@@ -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

Modified: httpd/httpd/trunk/docs/manual/howto/ssi.xml.ko
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.xml.ko?rev=1602703&r1=1602702&r2=1602703&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/ssi.xml.ko [euc-kr] (original)
+++ httpd/httpd/trunk/docs/manual/howto/ssi.xml.ko [euc-kr] Sun Jun 15 15:20:04 2014
@@ -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

Modified: httpd/httpd/trunk/docs/manual/howto/ssi.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/ssi.xml.meta?rev=1602703&r1=1602702&r2=1602703&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/howto/ssi.xml.meta (original)
+++ httpd/httpd/trunk/docs/manual/howto/ssi.xml.meta Sun Jun 15 15:20:04 2014
@@ -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>