]> granicus.if.org Git - apache/commitdiff
Rebuild
authorRich Bowen <rbowen@apache.org>
Wed, 16 Jan 2013 01:08:28 +0000 (01:08 +0000)
committerRich Bowen <rbowen@apache.org>
Wed, 16 Jan 2013 01:08:28 +0000 (01:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1433783 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/ssi.html.en
docs/manual/howto/ssi.xml.fr
docs/manual/howto/ssi.xml.ja
docs/manual/howto/ssi.xml.ko

index 656cab3807eee76eff936393ef268e59bd83e942..93d115ad671d50636b06c00437bb014bdd046aef 100644 (file)
@@ -5,7 +5,7 @@
               This file is generated from xml source: DO NOT EDIT
         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
       -->
-<title>Apache Tutorial: Introduction to Server Side Includes - Apache HTTP Server</title>
+<title>Apache httpd Tutorial: Introduction to Server Side Includes - Apache HTTP Server</title>
 <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
 <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
 <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="../style/css/prettify.css" />
@@ -19,7 +19,7 @@
 <img alt="" src="../images/feather.gif" /></div>
 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="../images/left.gif" /></a></div>
 <div id="path">
-<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.4</a> &gt; <a href="./">How-To / Tutorials</a></div><div id="page-content"><div id="preamble"><h1>Apache Tutorial: Introduction to Server Side Includes</h1>
+<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.4</a> &gt; <a href="./">How-To / Tutorials</a></div><div id="page-content"><div id="preamble"><h1>Apache httpd Tutorial: Introduction to Server Side Includes</h1>
 <div class="toplang">
 <p><span>Available Languages: </span><a href="../en/howto/ssi.html" title="English">&nbsp;en&nbsp;</a> |
 <a href="../fr/howto/ssi.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
@@ -172,7 +172,7 @@ existing HTML documents.</p>
 
     <p>SSI directives have the following syntax:</p>
 <div class="example"><p><code>
-        &lt;!--#element attribute=value attribute=value ... --&gt;
+        &lt;!--#function attribute=value attribute=value ... --&gt;
 </code></p></div>
 
     <p>It is formatted like an HTML comment, so if you don't have
@@ -181,7 +181,7 @@ existing HTML documents.</p>
     configured, the directive will be replaced with its
     results.</p>
 
-    <p>The element can be one of a number of things, and we'll talk
+    <p>The function can be one of a number of things, and we'll talk
     some more about most of these in the next installment of this
     series. For now, here are some examples of what you can do with
     SSI</p>
@@ -192,14 +192,14 @@ existing HTML documents.</p>
         &lt;!--#echo var="DATE_LOCAL" --&gt;
 </code></p></div>
 
-    <p>The <code>echo</code> element just spits out the value of a
+    <p>The <code>echo</code> function just spits out the value of a
     variable. There are a number of standard variables, which
     include the whole set of environment variables that are
     available to CGI programs. Also, you can define your own
-    variables with the <code>set</code> element.</p>
+    variables with the <code>set</code> function.</p>
 
     <p>If you don't like the format in which the date gets printed,
-    you can use the <code>config</code> element, with a
+    you can use the <code>config</code> function, with a
     <code>timefmt</code> attribute, to modify that formatting.</p>
 
 <div class="example"><p><code>
@@ -214,7 +214,7 @@ existing HTML documents.</p>
         This document last modified &lt;!--#flastmod file="index.html" --&gt;
 </code></p></div>
 
-    <p>This element is also subject to <code>timefmt</code> format
+    <p>This function is also subject to <code>timefmt</code> format
     configurations.</p>
 
 
@@ -279,7 +279,7 @@ modified?</a></h3>
     reduce the burden of these updates. You just have to make one
     footer file, and then include it into each page with the
     <code>include</code> SSI command. The <code>include</code>
-    element can determine what file to include with either the
+    function can determine what file to include with either the
     <code>file</code> attribute, or the <code>virtual</code>
     attribute. The <code>file</code> attribute is a file path,
     <em>relative to the current directory</em>. That means that it
@@ -315,7 +315,7 @@ modified?</a></h3>
 
     <p>If you want to change that message to something else, you
     can do so with the <code>errmsg</code> attribute to the
-    <code>config</code> element:</p>
+    <code>config</code> function:</p>
 <div class="example"><p><code>
         &lt;!--#config errmsg="[It appears that you don't know how to use SSI]" --&gt;
 </code></p></div>
@@ -337,7 +337,7 @@ modified?</a></h3>
     <p>I expect that I'll have an article some time in the coming
     months about using SSI with small CGI programs. For now, here's
     something else that you can do with the <code>exec</code>
-    element. You can actually have SSI execute a command using the
+    function. You can actually have SSI execute a command using the
     shell (<code>/bin/sh</code>, to be precise - or the DOS shell,
     if you're on Win32). The following, for example, will give you
     a directory listing.</p>
index 1309ca1c5e7f706fb9f5b413371f9217627e6244..09fd6e3382a1950555bc9c40e40e4106270d1f13 100644 (file)
@@ -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: 1333989:1433769 (outdated) -->
+<!-- English Revision: 1333989:1433781 (outdated) -->
 <!-- French translation : Lucien GENTIS -->
 <!-- Reviewed by : Vincent Deffontaines -->
 
index 57c73bbd5d6b741a4831dbee819557a6d08e4094..e4b115c86d1f6e04a2b88d0f8f8f5323f8981a64 100644 (file)
@@ -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:1433769 (outdated) -->
+<!-- English Revision: 659902:1433781 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more
index a67e86d5bf06fc05620b08b5f21bb24aef930b3f..3722320c3aa5eb7da1cc30697c3a5f885759975d 100644 (file)
@@ -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:1433769 (outdated) -->
+<!-- English Revision: 659902:1433781 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more