vrana Wed Jul 21 04:40:46 2004 EDT
Modified files:
/phpdoc/en/reference/apache ini.xml
/phpdoc/en/reference/mbstring ini.xml
/phpdoc/en/reference/nsapi ini.xml
/phpdoc/en/reference/tidy ini.xml
Log:
Made consistent with other Configuration parts
Enables automatic linking from ini_set
http://cvs.php.net/diff.php/phpdoc/en/reference/apache/ini.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/reference/apache/ini.xml
diff -u phpdoc/en/reference/apache/ini.xml:1.8 phpdoc/en/reference/apache/ini.xml:1.9
--- phpdoc/en/reference/apache/ini.xml:1.8 Wed Jul 21 03:57:00 2004
+++ phpdoc/en/reference/apache/ini.xml Wed Jul 21 04:40:46 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
<section id="apache.configuration">
&reftitle.runtime;
<para>
@@ -21,7 +21,6 @@
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
- <entry>Function</entry>
</row>
</thead>
<tbody>
@@ -29,32 +28,27 @@
<entry>engine</entry>
<entry>On</entry>
<entry>PHP_INI_ALL</entry>
- <entry>turns PHP parsing on or off</entry>
</row>
<row>
<entry>child_terminate</entry>
<entry>Off</entry>
<entry>PHP_INI_ALL</entry>
- <entry>
- specify whether PHP scripts may request child process termination on end of
request,
- see also <function>apache_child_terminate</function>
- </entry>
</row>
<row>
<entry>last_modified</entry>
<entry>Off</entry>
<entry>PHP_INI_ALL</entry>
- <entry>send PHP scripts modification date as Last-Modified: header for this
request</entry>
</row>
<row>
<entry>xbithack</entry>
<entry>Off</entry>
<entry>PHP_INI_ALL</entry>
- <entry>parse files with executable bit set as PHP regardless of their file
ending</entry>
</row>
</tbody>
</tgroup>
</table>
+ For further details and definition of the PHP_INI_* constants see
+ <function>ini_set</function>.
</para>
&ini.descriptions.title;
@@ -68,6 +62,7 @@
</term>
<listitem>
<para>
+ Turns PHP parsing on or off.
This directive is really only useful in the Apache module
version of PHP. It is used by sites that would like to turn
PHP parsing on and off on a per-directory or per-virtual
@@ -77,8 +72,43 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry id="ini.child-terminate">
+ <term>
+ <parameter>child_terminate</parameter>
+ <type>boolean</type>
+ </term>
+ <listitem>
+ <para>
+ Specify whether PHP scripts may request child process termination on end of
request,
+ see also <function>apache_child_terminate</function>.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.last-modified">
+ <term>
+ <parameter>last_modified</parameter>
+ <type>boolean</type>
+ </term>
+ <listitem>
+ <para>
+ Send PHP scripts modification date as Last-Modified: header for this request.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.xbithack">
+ <term>
+ <parameter>xbithack</parameter>
+ <type>boolean</type>
+ </term>
+ <listitem>
+ <para>
+ Parse files with executable bit set as PHP regardless of their file ending.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</para>
+
</section>
<!-- Keep this comment at the end of the file
http://cvs.php.net/diff.php/phpdoc/en/reference/mbstring/ini.xml?r1=1.12&r2=1.13&ty=u
Index: phpdoc/en/reference/mbstring/ini.xml
diff -u phpdoc/en/reference/mbstring/ini.xml:1.12
phpdoc/en/reference/mbstring/ini.xml:1.13
--- phpdoc/en/reference/mbstring/ini.xml:1.12 Sat Mar 13 18:47:09 2004
+++ phpdoc/en/reference/mbstring/ini.xml Wed Jul 21 04:40:46 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.12 $ -->
+<!-- $Revision: 1.13 $ -->
<section id="mbstring.configuration">
&reftitle.runtime;
&extension.runtime;
@@ -70,65 +70,106 @@
&ini.descriptions.title;
<para>
- <itemizedlist>
- <listitem id="ini.mbstring.language">
- <simpara>
- <literal>mbstring.language</literal> is the default national
- language setting (NLS) used in mbstring. Note that this option
- automagically defines <literal>mbstring.internal_encoding</literal> and
- <literal>mbstring.internal_encoding</literal> should be placed
- after <literal>mbstring.language</literal> in &php.ini;
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.encoding-translation">
- <simpara>
- <literal>mbstring.encoding_translation</literal> enables the
- transparent character encoding filter for the incoming HTTP queries,
- which performs detection and conversion of the input encoding to the
- internal character encoding.
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.internal-encoding">
- <simpara>
- <literal>mbstring.internal_encoding</literal> defines the default
- internal character encoding.
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.http-input">
- <simpara>
- <literal>mbstring.http_input</literal> defines the default HTTP
- input character encoding.
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.http-output">
- <simpara>
- <literal>mbstring.http_output</literal> defines the default HTTP
- output character encoding.
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.detect-order">
- <simpara>
- <literal>mbstring.detect_order</literal> defines default
- character code detection order. See also
- <function>mb_detect_order</function>.
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.substitute-character">
- <simpara>
- <literal>mbstring.substitute_character</literal> defines
- character to substitute for invalid character encoding.
- </simpara>
- </listitem>
- <listitem id="ini.mbstring.func-overload">
- <simpara>
- <literal>mbstring.func_overload</literal> overloads a set of single byte
- functions by the mbstring counterparts. See
- <link linkend="mbstring.overload"> Funtion overloading</link> for more
- information.
- </simpara>
- </listitem>
- </itemizedlist>
+ <variablelist>
+ <varlistentry id="ini.mbstring.language">
+ <term>
+ <parameter>mbstring.language</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ The default national language setting (NLS) used in mbstring. Note that this
option
+ automagically defines <literal>mbstring.internal_encoding</literal> and
+ <literal>mbstring.internal_encoding</literal> should be placed
+ after <literal>mbstring.language</literal> in &php.ini;
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.encoding-translation">
+ <term>
+ <parameter>mbstring.encoding_translation</parameter>
+ <type>boolean</type>
+ </term>
+ <listitem>
+ <para>
+ Enables the transparent character encoding filter for the incoming HTTP queries,
+ which performs detection and conversion of the input encoding to the
+ internal character encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.internal-encoding">
+ <term>
+ <parameter>mbstring.internal_encoding</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Defines the default internal character encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.http-input">
+ <term>
+ <parameter>mbstring.http_input</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Defines the default HTTP input character encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.http-output">
+ <term>
+ <parameter>mbstring.http_output</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Defines the default HTTP output character encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.detect-order">
+ <term>
+ <parameter>mbstring.detect_order</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Defines default character code detection order. See also
+ <function>mb_detect_order</function>.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.substitute-character">
+ <term>
+ <parameter>mbstring.substitute_character</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Defines character to substitute for invalid character encoding.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.mbstring.func-overload">
+ <term>
+ <parameter>mbstring.func_overload</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Overloads a set of single byte functions by the mbstring counterparts. See
+ <link linkend="mbstring.overload"> Funtion overloading</link> for more
+ information.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
</para>
+
<para>
According to the <ulink
url="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accept-charset">HTML
4.01 specification</ulink>,
Web browsers are allowed to encode a form being submitted with a character
http://cvs.php.net/diff.php/phpdoc/en/reference/nsapi/ini.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/nsapi/ini.xml
diff -u phpdoc/en/reference/nsapi/ini.xml:1.3 phpdoc/en/reference/nsapi/ini.xml:1.4
--- phpdoc/en/reference/nsapi/ini.xml:1.3 Tue Jul 15 14:08:58 2003
+++ phpdoc/en/reference/nsapi/ini.xml Wed Jul 21 04:40:46 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<section id="nsapi.configuration">
&reftitle.runtime;
<para>
@@ -17,7 +17,6 @@
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
- <entry>Function</entry>
</row>
</thead>
<tbody>
@@ -25,12 +24,32 @@
<entry>nsapi.read_timeout</entry>
<entry>60</entry>
<entry>PHP_INI_ALL</entry>
- <entry>sets the time in seconds the plugin is waiting for POST data from the
client</entry>
</row>
</tbody>
</tgroup>
</table>
+ For further details and definition of the PHP_INI_* constants see
+ <function>ini_set</function>.
</para>
+
+ &ini.descriptions.title;
+
+ <para>
+ <variablelist>
+ <varlistentry id="ini.nsapi.read-timeout">
+ <term>
+ <parameter>nsapi.read_timeout</parameter>
+ <type>integer</type>
+ </term>
+ <listitem>
+ <para>
+ Sets the time in seconds the plugin is waiting for POST data from the client.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </para>
+
</section>
<!-- Keep this comment at the end of the file
http://cvs.php.net/diff.php/phpdoc/en/reference/tidy/ini.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/tidy/ini.xml
diff -u phpdoc/en/reference/tidy/ini.xml:1.3 phpdoc/en/reference/tidy/ini.xml:1.4
--- phpdoc/en/reference/tidy/ini.xml:1.3 Sun Jan 18 06:14:20 2004
+++ phpdoc/en/reference/tidy/ini.xml Wed Jul 21 04:40:46 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<section id="tidy.configuration">
&reftitle.runtime;
&extension.runtime;
@@ -12,7 +12,6 @@
<entry>Name</entry>
<entry>Default</entry>
<entry>Changeable</entry>
- <entry>Function</entry>
</row>
</thead>
<tbody>
@@ -20,26 +19,54 @@
<entry>tidy.default_config</entry>
<entry>""</entry>
<entry>PHP_INI_SYSTEM</entry>
- <entry>default path for tidy config file</entry>
</row>
<row>
<entry>tidy.clean_output</entry>
<entry>0</entry>
<entry>PHP_INI_PERDIR</entry>
- <entry>turns on/off the output repairing by Tidy</entry>
</row>
</tbody>
</tgroup>
</table>
For further details and definition of the PHP_INI_* constants see
<function>ini_set</function>.
-</para>
-<warning>
+ </para>
+
+ &ini.descriptions.title;
+
<para>
- Do not turn on <literal>tidy.clean_output</literal> if you are generating
- non-html content such as dynamic images.
+ <variablelist>
+ <varlistentry id="ini.tidy.default-config">
+ <term>
+ <parameter>tidy.default_config</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Default path for tidy config file.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry id="ini.tidy.clean-output">
+ <term>
+ <parameter>tidy.clean_output</parameter>
+ <type>boolean</type>
+ </term>
+ <listitem>
+ <para>
+ Turns on/off the output repairing by Tidy.
+ </para>
+ <warning>
+ <para>
+ Do not turn on <literal>tidy.clean_output</literal> if you are generating
+ non-html content such as dynamic images.
+ </para>
+ </warning>
+ </listitem>
+ </varlistentry>
+ </variablelist>
</para>
-</warning>
+
</section>
<!-- Keep this comment at the end of the file