[PHP-DOC] cvs: phpdoc /it/functions apache.xml From: Luca Perugini (l.perugini <email protected>)
Date: 07/12/00

perugini Tue Jul 11 23:48:07 2000 EDT

  Modified files:
    /phpdoc/it/functions apache.xml
  Log:
  Update from english tree and start translation
  
  
Index: phpdoc/it/functions/apache.xml
diff -u phpdoc/it/functions/apache.xml:1.2 phpdoc/it/functions/apache.xml:1.3
--- phpdoc/it/functions/apache.xml:1.2 Sat Jun 24 00:38:44 2000
+++ phpdoc/it/functions/apache.xml Tue Jul 11 23:48:07 2000
@@ -1,5 +1,5 @@
  <reference id="ref.apache">
- <title>Apache-specific functions</title>
+ <title>Apache-specific Functions</title>
   <titleabbrev>Apache</titleabbrev>
 
   <refentry id="function.apache-lookup-uri">
@@ -49,8 +49,8 @@
     </para>
     <note>
      <simpara>
- Note: apache_lookup_uri only works when PHP is installed as an
- Apache module
+ <function>Apache_lookup_uri</function> only works when PHP
+ is installed as an Apache module.
      </simpara>
     </note>
    </refsect1>
@@ -75,7 +75,7 @@
      </funcprototype>
     </funcsynopsis>
     <para>
- <function>apache_note</function> is an Apache-specific function
+ <function>Apache_note</function> is an Apache-specific function
      which gets and sets values in a request's
      <literal>notes</literal> table. If called with one argument, it
      returns the current value of note
@@ -116,7 +116,7 @@
       <title><function>getallheaders</function> Example</title>
       <programlisting role="php">
 $headers = getallheaders();
-while (list($header, $value) = each($headers)) {
+while (list ($header, $value) = each ($headers)) {
     echo "$header: $value&lt;br&gt;\n";
 }
       </programlisting>
@@ -147,16 +147,16 @@
      </funcprototype>
     </funcsynopsis>
     <para>
- <function>virtual</function> is an Apache-specific function which
+ <function>Virtual</function> is an Apache-specific function which
      is equivalent to &lt;!--#include virtual...--&gt; in mod_include.
- It performs an Apache sub-request. It is useful for including CGI
- scripts or .shtml files, or anything else that you would parse
- through Apache. Note that for a CGI script, the script must
- generate valid CGI headers. At the minimum that means it must
- generate a Content-type header. For PHP files, you need to use
- <function>include</function> or <function>require</function>;
- <function>virtual</function> cannot be used to include a
- document which is itself a PHP file.
+ It performs an Apache sub-request. It is useful for including
+ CGI scripts or .shtml files, or anything else that you would
+ parse through Apache. Note that for a CGI script, the script
+ must generate valid CGI headers. At the minimum that means it
+ must generate a Content-type header. For PHP files, you need to
+ use <function>include</function> or <function>require</function>;
+ <function>virtual</function> cannot be used to include a document
+ which is itself a PHP file.
     </para>
    </refsect1>
   </refentry>