thetaphi                Tue Jul 15 14:08:58 2003 EDT

  Added files:                 
    /phpdoc/en/reference/nsapi/functions        nsapi-virtual.xml 

  Modified files:              
    /phpdoc/en/reference/nsapi  ini.xml reference.xml 
  Log:
  hopefully the rest of NSAPI... :)
  
Index: phpdoc/en/reference/nsapi/ini.xml
diff -u phpdoc/en/reference/nsapi/ini.xml:1.2 phpdoc/en/reference/nsapi/ini.xml:1.3
--- phpdoc/en/reference/nsapi/ini.xml:1.2       Mon Jul 14 16:51:05 2003
+++ phpdoc/en/reference/nsapi/ini.xml   Tue Jul 15 14:08:58 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <section id="nsapi.configuration">
  &reftitle.runtime;
  <para>
@@ -23,17 +23,14 @@
     <tbody>
      <row>
       <entry>nsapi.read_timeout</entry>
-      <entry>90</entry>
+      <entry>60</entry>
       <entry>PHP_INI_ALL</entry>
-      <entry>sets the time the plugin is waiting for POST data in seconds</entry>
+      <entry>sets the time in seconds the plugin is waiting for POST data from the 
client</entry>
      </row>
     </tbody>
    </tgroup>
   </table>
  </para>
-
- &ini.descriptions.title;
-
 </section>
 
 <!-- Keep this comment at the end of the file
Index: phpdoc/en/reference/nsapi/reference.xml
diff -u phpdoc/en/reference/nsapi/reference.xml:1.3 
phpdoc/en/reference/nsapi/reference.xml:1.4
--- phpdoc/en/reference/nsapi/reference.xml:1.3 Tue Jul 15 04:47:12 2003
+++ phpdoc/en/reference/nsapi/reference.xml     Tue Jul 15 14:08:58 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
  <reference id="ref.nsapi">
   <title>NSAPI-specific Functions</title>
   <titleabbrev>NSAPI</titleabbrev>
@@ -31,6 +31,51 @@
     &reftitle.constants;
     &no.constants;
    </section>
+
+   <section id="nsapi.seealso">
+    &reftitle.seealso;
+    <para>
+     NSAPI implements a subset of the functions from the Apache module for maximum 
compatibility.
+    </para>
+
+    <para>
+      <table>
+       <title>Apache functions implemented by NSAPI</title>
+       <tgroup cols="3">
+        <thead>
+         <row>
+          <entry>Apache function (only as alias)</entry>
+          <entry>NSAPI function</entry>
+          <entry>Description</entry>
+         </row>
+        </thead>
+        <tbody>
+         <row>
+          <entry><function>apache_request_headers</function></entry>
+          <entry><function>nsapi_request_headers</function></entry>
+          <entry>Fetch all HTTP request headers</entry>
+         </row>
+         <row>
+          <entry><function>apache_response_headers</function></entry>
+          <entry><function>nsapi_response_headers</function></entry>
+          <entry>Fetch all HTTP response headers</entry>
+         </row>
+         <row>
+          <entry><function>getallheaders</function></entry>
+          <entry><function>nsapi_request_headers</function></entry>
+          <entry>Fetch all HTTP request headers</entry>
+         </row>
+         <row>
+          <entry><function>virtual</function></entry>
+          <entry><function>nsapi_virtual</function></entry>
+          <entry>Make NSAPI sub-request</entry>
+         </row>
+        </tbody>
+       </tgroup>
+      </table>
+    </para>
+   </section>
+
   </partintro>
 
 &reference.nsapi.functions;

Index: phpdoc/en/reference/nsapi/functions/nsapi-virtual.xml
+++ phpdoc/en/reference/nsapi/functions/nsapi-virtual.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.1 $ -->
<!-- splitted from ./en/functions/apache.xml, last change in rev 1.20 -->
  <refentry id="function.nsapi-virtual">
   <refnamediv>
    <refname>nsapi_virtual</refname>
    <refpurpose>Perform an NSAPI sub-request</refpurpose>
   </refnamediv>
   <refsect1>
    <title>Description</title>
     <methodsynopsis>
      <type>int</type><methodname>nsapi_virtual</methodname>
      <methodparam><type>string</type><parameter>uri</parameter></methodparam>
     </methodsynopsis>
    <para>
     <function>virtual</function> is an NSAPI-specific function which
     is equivalent to &lt;!--#include virtual...--&gt; in in SSI
     (<filename>.shtml</filename> files). It does an NSAPI sub-request.
     It is useful for including CGI scripts or .shtml files, or anything
     else that you'd parse through webserver.
    </para>
    <para>
     To run the sub-request, all buffers are terminated and flushed to the
     browser, pending headers are sent too.
    </para>
    <para>
     You cannot make recursive requests with this function to other PHP scripts.
     If you want to include PHP scripts, use <function>include</function> or
     <function>require</function>.
    </para>
   </refsect1>
  </refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to