slawek Sat Mar 16 20:35:18 2002 EDT
Modified files:
/phpdoc/pl/features safe-mode.xml
Log:
Updated to EN 1.20
Index: phpdoc/pl/features/safe-mode.xml
diff -u phpdoc/pl/features/safe-mode.xml:1.10 phpdoc/pl/features/safe-mode.xml:1.11
--- phpdoc/pl/features/safe-mode.xml:1.10 Wed Jan 2 02:16:11 2002
+++ phpdoc/pl/features/safe-mode.xml Sat Mar 16 20:35:18 2002
@@ -1,311 +1,314 @@
-<?xml version="1.0" encoding="iso-8859-2"?>
-<!-- EN-Revision: 1.18 Maintainer: slawek Status: ready -->
-<!-- $Revision: 1.10 $ -->
- <chapter id="features.safe-mode">
- <title>Tryb bezpieczny</title>
-
- <para>
- Tryb bezpieczny (safe mode) jest pr�b� rozwi�zania problem�w
- bezpiecze�stwa na wsp�dzielnym serwerze. Co prawda rozwi�zywanie ich na
- poziomie PHP nie jest najlepszym rozwi�zaniem, ale je�li nie ma mo�liwo�ci
- zrobienia tego na poziomie serwera www lub systemu operacyjnego, na wielu
- serwerach, zw�aszcza u us�ugodawc�w internetowych, u�ywa si� trybu
- bezpiecznego.
- </para>
- <para>
- Dyrektywy konfiguracyjne odpowiadaj�ce za tryb bezpieczny:
- <programlisting role="ini">
-<![CDATA[
-safe_mode = Off
-open_basedir =
-safe_mode_exec_dir =
-safe_mode_allowed_env_vars = PHP_
-safe_mode_protected_env_vars = LD_LIBRARY_PATH
-disable_functions =
-]]>
- </programlisting>
- </para>
- <para>
- Gdy opcja <link linkend="ini.safe-mode">safe_mode</link> jest w��czona,
- PHP sprawdza czy w�a�cicielem pliku na kt�rym na kt�rym funkcja chce
- operowa� i w�a�cicielem uruchamianego skryptu jest ten sam u�ytkownik.
- Na przyk�ad:
- <programlisting role="ls">
-<![CDATA[
--rw-rw-r-- 1 rasmus rasmus 33 Jul 1 19:20 script.php
--rw-r--r-- 1 root root 1116 May 26 18:01 /etc/passwd
-]]>
- </programlisting>
- Uruchomienie script.php
- <programlisting role="php">
-<![CDATA[
-<?php
- readfile('/etc/passwd');
-?>
-]]>
- </programlisting>
- z uruchomionym trybem bezpiecznym spowoduje wy�wietlenie b��du:
- <screen>
-<![CDATA[
-Warning: SAFE MODE Restriction in effect. The script whose uid is 500 is not
-allowed to access /etc/passwd owned by uid 0 in /docroot/script.php on line 2
-]]>
- </screen>
- </para>
- <para>
- Je�li zamiast w��cza� opcj� <link linkend="ini.safe-mode">safe_mode</link>
- ustawisz katalog <link linkend="ini.open-basedir">open_basedir</link>,
- wtedy wszystkie operacje plikowe bed� ograniczone do tego katalogu. Na
- przyk�ad (dla httpd.conf Apache'a):
- <programlisting role="ini">
-<![CDATA[
-<Directory /docroot>
-php_admin_value open_basedir /docroot
-</Directory>
-]]>
- </programlisting>
- Uruchomienie tego samego skryptu script.php z ustawionym katalogiem
- <link linkend="ini.open-basedir">open_basedir</link> spowoduje wy�wietlenie:
- <screen>
-<![CDATA[
-Warning: open_basedir restriction in effect. File is in wrong directory in
-/docroot/script.php on line 2
-]]>
- </screen>
- </para>
- <para>
- Mo�esz tak�e wy��czy� pojedyncze funkcje. Je�li do pliku php.ini dodasz:
- <programlisting role="ini">
-<![CDATA[
-disable_functions readfile,system
-]]>
- </programlisting>
- po uruchomieniu skryptu otrzymasz:
- <screen>
-<![CDATA[
-Warning: readfile() has been disabled for security reasons in
-/docroot/script.php on line 2
-]]>
- </screen>
- </para>
-
- <sect1 id="features.safe-mode.functions">
- <title>Funkcje ograniczone/wy��czone w trybie bezpiecznym</title>
- <para>
- Jest to najprawdopodobniej wci�� niekompletna lista funkcji ograniczonych
- przez <link linkend="features.safe-mode">tryb bezpieczny</link>.
- <!-- TODO: add ¬e.sm.*; to the functions mentioned here.
- That entity should link to this section -->
- <table>
- <title>Funkcje ograniczone w trybie bezpiecznym</title>
- <tgroup cols="2">
- <thead>
- <row>
- <entry>Funkcja</entry>
- <entry>Ograniczenia</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry><function>dbmopen</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>dbase_open</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>filepro</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>filepro_rowcount</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>filepro_retrieve</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>ifx_*</function></entry>
- <entry>Podlega ograniczeniom narzuconym przez sql_safe_mode,
- (!= tryb bezpieczny)</entry>
- <!-- TODO: more info on sql-safe-mode -->
- </row>
- <row>
- <entry><function>ingres_*</function></entry>
- <entry>Podlega ograniczeniom narzuconym przez sql_safe_mode,
- (!= tryb bezpieczny)</entry>
- <!-- TODO: more info on sql-safe-mode -->
- </row>
- <row>
- <entry><function>mysql_*</function></entry>
- <entry>Podlega ograniczeniom narzuconym przez sql_safe_mode,
- (!= tryb bezpieczny)</entry>
- <!-- TODO: more info on sql-safe-mode -->
- </row>
- <row>
- <entry><function>pg_loimport</function></entry>
- <entry>&sm.uidcheck;</entry>
- <!-- source TODO: there is no PHP-warning for that safe-mode-restriction -->
- </row>
- <row>
- <entry><function>posix_mkfifo</function></entry>
- <entry>&sm.uidcheck.dir;</entry>
- </row>
- <row>
- <entry><function>putenv</function></entry>
- <entry>Podlega dyrektywom safe_mode_protected_env_vars i
- safe_mode_allowed_env_vars w php.ini. Zobacz r�wnie� dokumantacj�
- do <function>putenv</function></entry>
- <!-- TODO: document those directives in chapters/config.xml -->
- </row>
- <row>
- <entry><function>move_uploaded_file</function></entry>
- <entry>&sm.uidcheck; <!-- TODO: check this --></entry>
- </row>
-
- <!-- TODO: from here on, add warning to the function itself -->
-
- <row>
- <entry><function>chdir</function></entry>
- <entry>&sm.uidcheck.dir;</entry>
- </row>
- <row>
- <entry><function>dl</function></entry>
- <entry>&sm.disabled;</entry>
- </row>
- <row>
- <entry><link linkend="language.operators.execution">lewy
apostrof</link></entry>
- <entry>&sm.disabled;</entry>
- </row>
- <row>
- <entry><function>shell_exec</function> (funkcja r�wnowa�na z
- lewym apostrofem)</entry>
- <entry>&sm.disabled;</entry>
- </row>
- <row>
- <entry><function>exec</function></entry>
- <entry>Mo�esz uruchamia� programy jedynie z katalogu zdefiniowanego
- dyrektyw�
- <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
- Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
- <literal>..</literal> w �cie�ce do programu.</entry>
- </row>
- <row>
- <entry><function>system</function></entry>
- <entry>Mo�na uruchamia� programy jedynie z katalogu zdefiniowanego
- dyrektyw�
- <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
- Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
- <literal>..</literal> w �cie�ce do programu.</entry>
- </row>
- <row>
- <entry><function>passthru</function></entry>
- <entry>Mo�na uruchamia� programy jedynie z katalogu zdefiniowanego
- dyrektyw�
- <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
- Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
- <literal>..</literal> w �cie�ce do programu.</entry>
- </row>
- <row>
- <entry><function>popen</function></entry>
- <entry>Mo�na uruchamia� programy jedynie z katalogu zdefiniowanego
- dyrektyw�
- <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
- Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
- <literal>..</literal> w �cie�ce do programu.</entry>
- <!-- TODO: not sure. popen uses a completely different implementation
- Don't know why, don't know whether it's behaving the same -->
- </row>
- <row>
- <entry><function>mkdir</function></entry>
- <entry>&sm.uidcheck.dir;</entry>
- </row>
- <row>
- <entry><function>rmdir</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>rename</function></entry>
- <entry>&sm.uidcheck; &sm.uidcheck.dir;<!-- on the old name only, it seems. Is
rename preventing moving files? --></entry>
- </row>
- <row>
- <entry><function>unlink</function></entry>
- <entry>&sm.uidcheck; &sm.uidcheck.dir;</entry>
- </row>
- <row>
- <entry><function>copy</function></entry>
- <entry>&sm.uidcheck; &sm.uidcheck.dir; (dla
- <parameter>�r�d�a</parameter> i
- <parameter>przeznaczenia</parameter>) </entry>
- </row>
- <row>
- <entry><function>chgrp</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>chown</function></entry>
- <entry>&sm.uidcheck;</entry>
- </row>
- <row>
- <entry><function>chmod</function></entry>
- <entry>&sm.uidcheck; Dodatkowo, nie mo�na ustawi� bit�w SUID, SGID
- i sticky bit.</entry>
- </row>
- <row>
- <entry><function>touch</function></entry>
- <entry>&sm.uidcheck; &sm.uidcheck.dir;</entry>
- </row>
- <row>
- <entry><function>symlink</function></entry>
- <entry>&sm.uidcheck; &sm.uidcheck.dir; (sprawdzany jest jedynie element
- do kt�rego tworzony jest link)</entry>
- </row>
- <row>
- <entry><function>link</function></entry>
- <entry>&sm.uidcheck; &sm.uidcheck.dir; (sprawdzany jest jedynie element
- do kt�rego tworzony jest link)</entry>
- </row>
- <row>
- <entry><function>getallheaders</function></entry>
- <entry>
- W tybie bezpiecznym, nag�owki zaczynaj�ce si� od 'authorization'
- (wielko�� liter bez znaczenia) nie b�d� zwracane. Uwaga: w
- implementacji dla serwera AOL ta funkcjonalno�� jest uszkodzona
- </entry>
- </row>
- <row>
- <entry>Ka�da funkcja korzystaj�ca z
- <filename>php4/main/fopen_wrappers.c</filename>
- </entry>
- <entry>??</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- </para>
- </sect1>
-
- </chapter>
-
-<!-- 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
--->
+<?xml version="1.0" encoding="iso-8859-2"?>
+<!-- EN-Revision: 1.20 Maintainer: slawek Status: ready -->
+<!-- $Revision: 1.11 $ -->
+ <chapter id="features.safe-mode">
+ <title>Tryb bezpieczny</title>
+
+ <para>
+ Tryb bezpieczny (safe mode) jest pr�b� rozwi�zania problem�w
+ bezpiecze�stwa na wsp�dzielnym serwerze. Co prawda rozwi�zywanie ich na
+ poziomie PHP nie jest najlepszym rozwi�zaniem, ale je�li nie ma mo�liwo�ci
+ zrobienia tego na poziomie serwera www lub systemu operacyjnego, na wielu
+ serwerach, zw�aszcza u us�ugodawc�w internetowych, u�ywa si� trybu
+ bezpiecznego.
+ </para>
+ <para>
+ Dyrektywy konfiguracyjne odpowiadaj�ce za tryb bezpieczny:
+ <programlisting role="ini">
+<![CDATA[
+safe_mode = Off
+open_basedir =
+safe_mode_exec_dir =
+safe_mode_allowed_env_vars = PHP_
+safe_mode_protected_env_vars = LD_LIBRARY_PATH
+disable_functions =
+]]>
+ </programlisting>
+ </para>
+ <para>
+ Gdy opcja <link linkend="ini.safe-mode">safe_mode</link> jest w��czona,
+ PHP sprawdza czy w�a�cicielem pliku na kt�rym na kt�rym funkcja chce
+ operowa� i w�a�cicielem uruchamianego skryptu jest ten sam u�ytkownik.
+ Na przyk�ad:
+ <programlisting role="ls">
+<![CDATA[
+-rw-rw-r-- 1 rasmus rasmus 33 Jul 1 19:20 script.php
+-rw-r--r-- 1 root root 1116 May 26 18:01 /etc/passwd
+]]>
+ </programlisting>
+ Uruchomienie script.php
+ <programlisting role="php">
+<![CDATA[
+<?php
+ readfile('/etc/passwd');
+?>
+]]>
+ </programlisting>
+ z uruchomionym trybem bezpiecznym spowoduje wy�wietlenie b��du:
+ <screen>
+<![CDATA[
+Warning: SAFE MODE Restriction in effect. The script whose uid is 500 is not
+allowed to access /etc/passwd owned by uid 0 in /docroot/script.php on line 2
+]]>
+ </screen>
+ </para>
+ <para>
+ Je�li zamiast w��cza� opcj� <link linkend="ini.safe-mode">safe_mode</link>
+ ustawisz katalog <link linkend="ini.open-basedir">open_basedir</link>,
+ wtedy wszystkie operacje plikowe bed� ograniczone do tego katalogu. Na
+ przyk�ad (dla httpd.conf Apache'a):
+ <programlisting role="ini">
+<![CDATA[
+<Directory /docroot>
+php_admin_value open_basedir /docroot
+</Directory>
+]]>
+ </programlisting>
+ Uruchomienie tego samego skryptu script.php z ustawionym katalogiem
+ <link linkend="ini.open-basedir">open_basedir</link> spowoduje wy�wietlenie:
+ <screen>
+<![CDATA[
+Warning: open_basedir restriction in effect. File is in wrong directory in
+/docroot/script.php on line 2
+]]>
+ </screen>
+ </para>
+ <para>
+ Mo�esz tak�e wy��czy� pojedyncze funkcje. Pami�taj jednak, �e dyrektywa
+ disable_functions mo�e by� u�yta tylko w pliku &php.ini;, co oznacza, �e nie
+ da si� wy��cza� funkcji w sekcjach VirtualHost i Directory w pliku
+ httpd.conf. Je�li do pliku &php.ini; dodasz:
+ <programlisting role="ini">
+<![CDATA[
+disable_functions readfile,system
+]]>
+ </programlisting>
+ po uruchomieniu skryptu otrzymasz:
+ <screen>
+<![CDATA[
+Warning: readfile() has been disabled for security reasons in
+/docroot/script.php on line 2
+]]>
+ </screen>
+ </para>
+
+ <sect1 id="features.safe-mode.functions">
+ <title>Funkcje ograniczone/wy��czone w trybie bezpiecznym</title>
+ <para>
+ Jest to najprawdopodobniej wci�� niekompletna lista funkcji ograniczonych
+ przez <link linkend="features.safe-mode">tryb bezpieczny</link>.
+ <!-- TODO: add ¬e.sm.*; to the functions mentioned here.
+ That entity should link to this section -->
+ <table>
+ <title>Funkcje ograniczone w trybie bezpiecznym</title>
+ <tgroup cols="2">
+ <thead>
+ <row>
+ <entry>Funkcja</entry>
+ <entry>Ograniczenia</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><function>dbmopen</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>dbase_open</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>filepro</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>filepro_rowcount</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>filepro_retrieve</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>ifx_*</function></entry>
+ <entry>Podlega ograniczeniom narzuconym przez sql_safe_mode,
+ (!= tryb bezpieczny)</entry>
+ <!-- TODO: more info on sql-safe-mode -->
+ </row>
+ <row>
+ <entry><function>ingres_*</function></entry>
+ <entry>Podlega ograniczeniom narzuconym przez sql_safe_mode,
+ (!= tryb bezpieczny)</entry>
+ <!-- TODO: more info on sql-safe-mode -->
+ </row>
+ <row>
+ <entry><function>mysql_*</function></entry>
+ <entry>Podlega ograniczeniom narzuconym przez sql_safe_mode,
+ (!= tryb bezpieczny)</entry>
+ <!-- TODO: more info on sql-safe-mode -->
+ </row>
+ <row>
+ <entry><function>pg_loimport</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ <!-- source TODO: there is no PHP-warning for that safe-mode-restriction -->
+ </row>
+ <row>
+ <entry><function>posix_mkfifo</function></entry>
+ <entry>&sm.uidcheck.dir;</entry>
+ </row>
+ <row>
+ <entry><function>putenv</function></entry>
+ <entry>Podlega dyrektywom safe_mode_protected_env_vars i
+ safe_mode_allowed_env_vars w php.ini. Zobacz r�wnie� dokumantacj�
+ do <function>putenv</function></entry>
+ <!-- TODO: document those directives in chapters/config.xml -->
+ </row>
+ <row>
+ <entry><function>move_uploaded_file</function></entry>
+ <entry>&sm.uidcheck; <!-- TODO: check this --></entry>
+ </row>
+
+ <!-- TODO: from here on, add warning to the function itself -->
+
+ <row>
+ <entry><function>chdir</function></entry>
+ <entry>&sm.uidcheck.dir;</entry>
+ </row>
+ <row>
+ <entry><function>dl</function></entry>
+ <entry>&sm.disabled;</entry>
+ </row>
+ <row>
+ <entry><link linkend="language.operators.execution">lewy
+apostrof</link></entry>
+ <entry>&sm.disabled;</entry>
+ </row>
+ <row>
+ <entry><function>shell_exec</function> (funkcja r�wnowa�na z
+ lewym apostrofem)</entry>
+ <entry>&sm.disabled;</entry>
+ </row>
+ <row>
+ <entry><function>exec</function></entry>
+ <entry>Mo�esz uruchamia� programy jedynie z katalogu zdefiniowanego
+ dyrektyw�
+ <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
+ Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
+ <literal>..</literal> w �cie�ce do programu.</entry>
+ </row>
+ <row>
+ <entry><function>system</function></entry>
+ <entry>Mo�na uruchamia� programy jedynie z katalogu zdefiniowanego
+ dyrektyw�
+ <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
+ Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
+ <literal>..</literal> w �cie�ce do programu.</entry>
+ </row>
+ <row>
+ <entry><function>passthru</function></entry>
+ <entry>Mo�na uruchamia� programy jedynie z katalogu zdefiniowanego
+ dyrektyw�
+ <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
+ Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
+ <literal>..</literal> w �cie�ce do programu.</entry>
+ </row>
+ <row>
+ <entry><function>popen</function></entry>
+ <entry>Mo�na uruchamia� programy jedynie z katalogu zdefiniowanego
+ dyrektyw�
+ <link linkend="ini.safe-mode-exec-dir">safe_mode_exec_dir</link>.
+ Ze wzgl�d�w praktycznych obecnie nie ma mo�liwo�ci stosowania
+ <literal>..</literal> w �cie�ce do programu.</entry>
+ <!-- TODO: not sure. popen uses a completely different implementation
+ Don't know why, don't know whether it's behaving the same -->
+ </row>
+ <row>
+ <entry><function>mkdir</function></entry>
+ <entry>&sm.uidcheck.dir;</entry>
+ </row>
+ <row>
+ <entry><function>rmdir</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>rename</function></entry>
+ <entry>&sm.uidcheck; &sm.uidcheck.dir;<!-- on the old name only, it seems. Is
+rename preventing moving files? --></entry>
+ </row>
+ <row>
+ <entry><function>unlink</function></entry>
+ <entry>&sm.uidcheck; &sm.uidcheck.dir;</entry>
+ </row>
+ <row>
+ <entry><function>copy</function></entry>
+ <entry>&sm.uidcheck; &sm.uidcheck.dir; (dla
+ <parameter>�r�d�a</parameter> i
+ <parameter>przeznaczenia</parameter>) </entry>
+ </row>
+ <row>
+ <entry><function>chgrp</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>chown</function></entry>
+ <entry>&sm.uidcheck;</entry>
+ </row>
+ <row>
+ <entry><function>chmod</function></entry>
+ <entry>&sm.uidcheck; Dodatkowo, nie mo�na ustawi� bit�w SUID, SGID
+ i sticky bit.</entry>
+ </row>
+ <row>
+ <entry><function>touch</function></entry>
+ <entry>&sm.uidcheck; &sm.uidcheck.dir;</entry>
+ </row>
+ <row>
+ <entry><function>symlink</function></entry>
+ <entry>&sm.uidcheck; &sm.uidcheck.dir; (sprawdzany jest jedynie element
+ do kt�rego tworzony jest link)</entry>
+ </row>
+ <row>
+ <entry><function>link</function></entry>
+ <entry>&sm.uidcheck; &sm.uidcheck.dir; (sprawdzany jest jedynie element
+ do kt�rego tworzony jest link)</entry>
+ </row>
+ <row>
+ <entry><function>getallheaders</function></entry>
+ <entry>
+ W tybie bezpiecznym, nag�owki zaczynaj�ce si� od 'authorization'
+ (wielko�� liter bez znaczenia) nie b�d� zwracane. Uwaga: w
+ implementacji dla serwera AOL ta funkcjonalno�� jest uszkodzona
+ </entry>
+ </row>
+ <row>
+ <entry>Ka�da funkcja korzystaj�ca z
+ <filename>php4/main/fopen_wrappers.c</filename>
+ </entry>
+ <entry>??</entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </para>
+ </sect1>
+
+ </chapter>
+
+<!-- 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
+-->