Обновление до английской версии

This commit is contained in:
Sergey Panteleev
2024-07-26 11:14:07 +03:00
parent 10210cc1b5
commit e198bbe8b3
108 changed files with 151 additions and 715 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 389525942dd551c9b1943d404d76c03ab4a6203b Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 1422d543bf028003a543fd1ce920c6a301a93a51 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<sect1 xml:id="migration70.new-features" xmlns:xlink="http://www.w3.org/1999/xlink"> <sect1 xml:id="migration70.new-features" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Новая функциональность</title> <title>Новая функциональность</title>
@ -282,9 +282,18 @@ object(class@anonymous)#2 (0) {
<informalexample> <informalexample>
<programlisting role="php"> <programlisting role="php">
<![CDATA[ <![CDATA[
echo "\u{aa}"; <?php
echo "\u{0000aa}";
echo "\u{9999}"; echo "\u{aa}", PHP_EOL;
echo "\u{0000aa}", PHP_EOL;
echo "\u{9999}", PHP_EOL;
echo <<<EOT
\u{01f418}
EOT;
?>
]]> ]]>
</programlisting> </programlisting>
&example.outputs; &example.outputs;

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="apache.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="apache.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@ -19,13 +19,6 @@
&reference.apache.ini; &reference.apache.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="apache.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: e9366ee458b2900c53a503b1ad97664e1d9a8859 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 50025bb684f4585c82f2c1cfae3eb6cdc9b825f2 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.apcu-exists" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refentry xml:id="function.apcu-exists" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv> <refnamediv>
@ -10,8 +10,8 @@
<refsect1 role="description"> <refsect1 role="description">
&reftitle.description; &reftitle.description;
<methodsynopsis> <methodsynopsis>
<type>mixed</type><methodname>apcu_exists</methodname> <type class="union"><type>bool</type><type>array</type></type><methodname>apcu_exists</methodname>
<methodparam><type>mixed</type><parameter>keys</parameter></methodparam> <methodparam><type class="union"><type>string</type><type>array</type></type><parameter>keys</parameter></methodparam>
</methodsynopsis> </methodsynopsis>
<para> <para>
Проверяет, существуют ли записи. Проверяет, существуют ли записи.

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="apcu.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="apcu.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -51,11 +51,6 @@
&reference.apcu.ini; &reference.apcu.ini;
<section xml:id="apcu.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.array" xmlns="http://docbook.org/ns/docbook"> <book xml:id="book.array" xmlns="http://docbook.org/ns/docbook">
@ -29,7 +29,6 @@
</para> </para>
</preface> </preface>
&reference.array.setup;
&reference.array.constants; &reference.array.constants;
&reference.array.sorting; &reference.array.sorting;
&reference.array.reference; &reference.array.reference;

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 31cacb6f262f455c616094cfe6d09bc0d1df2748 Maintainer: sergey Status: ready --> <!-- EN-Revision: 1de7b5b65f959de3babdd8ea1b060f8cebd60856 Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.array-filter" xmlns="http://docbook.org/ns/docbook"> <refentry xml:id="function.array-filter" xmlns="http://docbook.org/ns/docbook">
<refnamediv> <refnamediv>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="bc.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="bc.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@ -13,13 +13,6 @@
&reference.bc.ini; &reference.bc.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="bc.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="calendar.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="calendar.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@ -9,13 +9,6 @@
&reference.calendar.configure; &reference.calendar.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="calendar.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 46a9cdd2dbef4ec89bf65fad9930e2feb78bbb98 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.classobj" xmlns="http://docbook.org/ns/docbook"> <book xml:id="book.classobj" xmlns="http://docbook.org/ns/docbook">
@ -23,7 +23,6 @@
</para> </para>
</preface> </preface>
&reference.classobj.setup;
&reference.classobj.examples; &reference.classobj.examples;
&reference.classobj.reference; &reference.classobj.reference;

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1714e477c0011315222213efe350786f112c198e Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="com.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="com.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -34,13 +34,6 @@
&reference.com.ini; &reference.com.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="com.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: tony2001 Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tony2001 Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="ctype.setup"> <chapter xml:id="ctype.setup">
@ -15,11 +15,6 @@
&reference.ctype.configure; &reference.ctype.configure;
<section xml:id="ctype.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: d31dda82272eb040ee150ba6be9e357143672d71 Maintainer: tmn Status: ready --> <!-- EN-Revision: 08757002f22252e774c2d975909a69caddf53ebe Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<appendix xml:id="datetime.constants" xmlns="http://docbook.org/ns/docbook"> <appendix xml:id="datetime.constants" xmlns="http://docbook.org/ns/docbook">
&reftitle.constants; &reftitle.constants;

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="datetime.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="datetime.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@ -13,13 +13,6 @@
&reference.datetime.ini; &reference.datetime.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="datetime.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,21 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.dir" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.dir" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
<title>Каталоги</title> <title>Каталоги</title>
<!-- {{{ preface
FIXME: Empty intro?
<preface xml:id="intro.dir">
&reftitle.intro;
<para>
</para>
</preface>
}}} -->
&reference.dir.setup;
&reference.dir.constants; &reference.dir.constants;
&reference.dir.directory; &reference.dir.directory;
&reference.dir.reference; &reference.dir.reference;

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="dom.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="dom.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@ -22,13 +22,6 @@
</section> </section>
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="dom.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: accae99f417f3c414930cc0a585fbcbdd4b0d87d Maintainer: aur Status: ready --> <!-- EN-Revision: 7db96bd04da66aa35db4941e683b785541e6d11d Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.eio-get-last-error" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refentry xml:id="function.eio-get-last-error" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: d715365c098db000eaf7dcd987ee6093f6e83091 Maintainer: tmn Status: ready --> <!-- EN-Revision: 210d382b5b139444fe2e16a5a3211076a65ff2ba Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.trigger-error" xmlns="http://docbook.org/ns/docbook"> <refentry xml:id="function.trigger-error" xmlns="http://docbook.org/ns/docbook">
<refnamediv> <refnamediv>
@ -45,7 +45,7 @@
<term><parameter>error_level</parameter></term> <term><parameter>error_level</parameter></term>
<listitem> <listitem>
<para> <para>
Тип ошибки. Работает только с семейством констант E_USER_*, Тип ошибки. Работает только с семейством констант <constant>E_USER_<replaceable>*</replaceable></constant>,
а значение по умолчанию равно <constant>E_USER_NOTICE</constant>. а значение по умолчанию равно <constant>E_USER_NOTICE</constant>.
</para> </para>
</listitem> </listitem>

View File

@ -1,16 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="errorfunc.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="errorfunc.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
&reference.errorfunc.ini; &reference.errorfunc.ini;
<section xml:id="errorfunc.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="ev.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="ev.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -11,6 +11,7 @@
Поэтому устанавливать библиотеку отдельно не нужно. Поэтому устанавливать библиотеку отдельно не нужно.
</para> </para>
</section> </section>
<section xml:id="ev.installation"> <section xml:id="ev.installation">
&reftitle.install; &reftitle.install;
<para> <para>
@ -18,15 +19,13 @@
</para> </para>
<para> <para>
&pecl.info; &pecl.info;
<link xlink:href="&url.pecl.package;ev">&url.pecl.package;ev</link> <link xlink:href="&url.pecl.package;ev">&url.pecl.package;ev</link>.
.
</para> </para>
</section> </section>
<section xml:id="ev.resources">
&reftitle.resources;
&no.resource; </chapter>
</section> <!-- Keep this comment at the end of the file
</chapter><!-- Keep this comment at the end of the file
Local variables: Local variables:
mode: sgml mode: sgml
sgml-omittag:t sgml-omittag:t

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="event.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="event.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -17,6 +17,7 @@
<link xlink:href="&url.openssl;">OpenSSL</link>. <link xlink:href="&url.openssl;">OpenSSL</link>.
</para> </para>
</section> </section>
<section xml:id="event.installation"> <section xml:id="event.installation">
&reftitle.install; &reftitle.install;
<para> <para>
@ -27,10 +28,7 @@
<link xlink:href="&url.pecl.package;event">&url.pecl.package;event</link>. <link xlink:href="&url.pecl.package;event">&url.pecl.package;event</link>.
</para> </para>
</section> </section>
<section xml:id="event.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 762fd781b63e37a13eb616602f715898dd237955 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="exif.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="exif.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -31,13 +30,6 @@
&reference.exif.ini; &reference.exif.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="exif.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: d197a1438a0849defa89a2595af1a32ef8c3802c Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="ffi.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="ffi.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -98,11 +97,6 @@
</para> </para>
</section> </section>
<section xml:id="ffi.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="filter.setup"> <chapter xml:id="filter.setup">
&reftitle.setup; &reftitle.setup;
@ -9,11 +8,6 @@
&reference.filter.ini; &reference.filter.ini;
<section xml:id="filter.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 46a9cdd2dbef4ec89bf65fad9930e2feb78bbb98 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.funchand" xmlns="http://docbook.org/ns/docbook"> <book xml:id="book.funchand" xmlns="http://docbook.org/ns/docbook">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
<title>Управление функциями</title> <title>Управление функциями</title>
@ -13,7 +12,6 @@
</para> </para>
</preface> </preface>
&reference.funchand.setup;
&reference.funchand.reference; &reference.funchand.reference;
</book> </book>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="gearman.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="gearman.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -21,14 +20,6 @@
&reference.gearman.configure; &reference.gearman.configure;
<!-- }}} --> <!-- }}} -->
<section xml:id="gearman.resources">
&reftitle.resources;
&no.resource;
<para>
<!-- Mention the resource here. -->
</para>
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 52090e795ec07853c5a0b8278005af033e64adc4 Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="geoip.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="geoip.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -33,11 +32,6 @@
&reference.geoip.ini; &reference.geoip.ini;
<section xml:id="geoip.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="gettext.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="gettext.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -19,13 +18,6 @@
&reference.gettext.configure; &reference.gettext.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="gettext.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: bfl Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: bfl Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="gnupg.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="gnupg.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -17,13 +17,6 @@
&reference.gnupg.configure; &reference.gnupg.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="gnupg.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 68c2c871505aadf983f16113c5b077b335ce8d76 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 463a6ab5443c687b0d386860cedb4b146b9e956c Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.hrtime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.hrtime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="bundled" ?> <?phpdoc extension-membership="pecl" ?>
<title>Время высокого разрешения</title> <title>Время высокого разрешения</title>
<titleabbrev>HRTime</titleabbrev> <titleabbrev>HRTime</titleabbrev>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="ibase.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="ibase.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -13,13 +12,6 @@
&reference.ibase.ini; &reference.ibase.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="ibase.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: af4410a7e15898c3dbe83d6ea38246745ed9c6fb Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="iconv.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="iconv.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -25,13 +24,6 @@
&reference.iconv.ini; &reference.iconv.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="iconv.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 2272b929a19c63d1fbdf16a87ddbbb28a28fd833 Maintainer: alien Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: alien Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="imagick.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="imagick.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -47,13 +47,6 @@
&reference.imagick.ini; &reference.imagick.ini;
<!-- {{{ Resources -->
<section xml:id="imagick.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 4e6f0774f03131cbeeb8c21019a690bf97fd22b6 Maintainer: tmn Status: ready --> <!-- EN-Revision: c8a8981a9df9a1564a4b9a79e84583d41a7b6ac5 Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.ini-get-all" xmlns="http://docbook.org/ns/docbook"> <refentry xml:id="function.ini-get-all" xmlns="http://docbook.org/ns/docbook">
<refnamediv> <refnamediv>
@ -170,7 +170,8 @@ Array
&reftitle.notes; &reftitle.notes;
<note> <note>
<para> <para>
Функция <function>ini_get_all</function> игнорирует «массивы» ini-опций наподобие pdo.dsn.*. Функция <function>ini_get_all</function> игнорирует «массивы» ini-опций наподобие
<literal>pdo.dsn.<replaceable>*</replaceable></literal>.
</para> </para>
</note> </note>
</refsect1> </refsect1>

View File

@ -1,17 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: bfl Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: bfl Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="info.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="info.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
&reference.info.ini; &reference.info.ini;
<section xml:id="info.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 6681b88ea0429a139546ea9c71bb808e722c17b0 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="intl.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="intl.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -23,13 +23,6 @@
&reference.intl.ini; &reference.intl.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="intl.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ce1856e7b95807615565d2f1427582e107c450a9 Maintainer: irker Status: ready --> <!-- EN-Revision: 9f2e30a00afda6d6b6a3e19b13956150c2eaf2c1 Maintainer: irker Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.json-decode" xmlns="http://docbook.org/ns/docbook"> <refentry xml:id="function.json-decode" xmlns="http://docbook.org/ns/docbook">
<refnamediv> <refnamediv>
@ -337,6 +337,7 @@ object(stdClass)#1 (1) {
<simplelist> <simplelist>
<member><function>json_encode</function></member> <member><function>json_encode</function></member>
<member><function>json_last_error</function></member> <member><function>json_last_error</function></member>
<member><function>json_last_error_msg</function></member>
</simplelist> </simplelist>
</para> </para>
</refsect1> </refsect1>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 19e8122137a1d42ed60f17fe2c0c2b69b0b2d16b Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 9f2e30a00afda6d6b6a3e19b13956150c2eaf2c1 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.json-encode" xmlns="http://docbook.org/ns/docbook"> <refentry xml:id="function.json-encode" xmlns="http://docbook.org/ns/docbook">
<refnamediv> <refnamediv>
@ -417,6 +417,7 @@ string(2) "12"
<member><interfacename>JsonSerializable</interfacename></member> <member><interfacename>JsonSerializable</interfacename></member>
<member><function>json_decode</function></member> <member><function>json_decode</function></member>
<member><function>json_last_error</function></member> <member><function>json_last_error</function></member>
<member><function>json_last_error_msg</function></member>
<member><function>serialize</function></member> <member><function>serialize</function></member>
</simplelist> </simplelist>
</para> </para>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: irker Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: irker Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="json.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="json.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -18,12 +18,8 @@
</para> </para>
</section> </section>
<section xml:id="json.resources"> </chapter>
&reftitle.resources; <!-- Keep this comment at the end of the file
&no.resource;
</section>
</chapter><!-- Keep this comment at the end of the file
Local variables: Local variables:
mode: sgml mode: sgml
sgml-omittag:t sgml-omittag:t

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="libxml.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="libxml.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -76,13 +75,6 @@
</section> </section>
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="libxml.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="lua.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="lua.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -26,13 +26,6 @@
</para> </para>
</section> </section>
<section xml:id="lua.resources">
&reftitle.resources;
&no.resource;
<para>
</para>
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="luasandbox.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="luasandbox.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -44,11 +44,6 @@ sudo apt-get install php-luasandbox
</para> </para>
</section> </section>
<section xml:id="luasandbox.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="lzf.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="lzf.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -8,13 +8,6 @@
&reference.lzf.configure; &reference.lzf.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="lzf.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 57d1b0df36cc1da4fae0113979343405eff223fd Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="mail.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="mail.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -26,13 +25,6 @@
&reference.mail.ini; &reference.mail.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="mail.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 19e8122137a1d42ed60f17fe2c0c2b69b0b2d16b Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.math" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.math" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
@ -37,7 +37,6 @@
</preface> </preface>
<!-- }}} --> <!-- }}} -->
&reference.math.setup;
&reference.math.constants; &reference.math.constants;
&reference.math.reference; &reference.math.reference;

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="mbstring.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="mbstring.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -13,13 +12,6 @@
&reference.mbstring.ini; &reference.mbstring.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="mbstring.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 7916455ba0cdb65c1590977df92ad2dd99f4c79f Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="memcached.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="memcached.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -25,11 +24,6 @@
&reference.memcached.ini; &reference.memcached.ini;
<!-- }}} --> <!-- }}} -->
<section xml:id="memcached.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="mhash.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="mhash.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -19,13 +18,6 @@
&reference.mhash.configure; &reference.mhash.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="mhash.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,17 +1,10 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: bfl Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: bfl Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="misc.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="misc.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
&reference.misc.ini; &reference.misc.ini;
<section xml:id="misc.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: ed851c6bbc75edca2706ea43f224278dd0538a6f Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="mysqli.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="mysqli.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -45,13 +44,6 @@
&reference.mysqli.ini; &reference.mysqli.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="mysqli.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="oauth.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="oauth.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -21,11 +20,6 @@
&reference.oauth.configure; &reference.oauth.configure;
<!-- }}} --> <!-- }}} -->
<section xml:id="oauth.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="opcache.setup"> <chapter xml:id="opcache.setup">
&reftitle.setup; &reftitle.setup;
@ -9,11 +8,6 @@
&reference.opcache.ini; &reference.opcache.ini;
<sect1 xml:id="opcache.resources">
&reftitle.resources;
&no.resource;
</sect1>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Created with Liquid Technologies Online Tools 1.0 (https://www.liquid-technologies.com) --> <!-- EN-Revision: 434366e9284206b3b073a49bddf7c42e85427aa0 Maintainer: aur Status: ready -->
<!-- EN-Revision: d2a7eed49af798a7b5694e040cdcb0b251b30ed6 Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<appendix xml:id="openssl.constants" xmlns="http://docbook.org/ns/docbook"> <appendix xml:id="openssl.constants" xmlns="http://docbook.org/ns/docbook">
&reftitle.constants; &reftitle.constants;
@ -192,11 +191,11 @@
(<type>int</type>) (<type>int</type>)
</entry> </entry>
<entry> <entry>
Добавляет заголовок «Content-Type: text/plain» к зашифрованному Добавляет заголовок «Content-Type: <literal>text/plain</literal>» к зашифрованному
и подписанному сообщению. и подписанному сообщению.
При расшифровке или проверке флаг удаляет заголовки При расшифровке или проверке флаг удаляет заголовки
из вывода. Возникнет ошибка, если расшифрованное или проверенное сообщение из вывода. Возникнет ошибка, если расшифрованное или проверенное сообщение
не относится к MIME-типу text/plain. не относится к <acronym>MIME</acronym>-типу <literal>text/plain</literal>.
</entry> </entry>
</row> </row>
<row xml:id="constant.pkcs7-binary"> <row xml:id="constant.pkcs7-binary">

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 5bc68add3da3cd18c40f851e944b15095d3a26aa Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 6ad22de1921790bfccc8c9a2590a48ab63bf8dd3 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.openssl-decrypt" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refentry xml:id="function.openssl-decrypt" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv> <refnamediv>
@ -61,7 +61,8 @@
<para> <para>
<parameter>options</parameter> можно задать одной из констант: <parameter>options</parameter> можно задать одной из констант:
<constant>OPENSSL_RAW_DATA</constant>, <constant>OPENSSL_RAW_DATA</constant>,
<constant>OPENSSL_ZERO_PADDING</constant>. <constant>OPENSSL_ZERO_PADDING</constant>
или <constant>OPENSSL_DONT_ZERO_PAD_KEY</constant>.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 5bc68add3da3cd18c40f851e944b15095d3a26aa Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 6ad22de1921790bfccc8c9a2590a48ab63bf8dd3 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<refentry xml:id="function.openssl-encrypt" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <refentry xml:id="function.openssl-encrypt" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv> <refnamediv>
@ -63,7 +63,8 @@
<para> <para>
<parameter>options</parameter> можно задать одной из констант: <parameter>options</parameter> можно задать одной из констант:
<constant>OPENSSL_RAW_DATA</constant>, <constant>OPENSSL_RAW_DATA</constant>,
<constant>OPENSSL_ZERO_PADDING</constant>. <constant>OPENSSL_ZERO_PADDING</constant>
или <constant>OPENSSL_DONT_ZERO_PAD_KEY</constant>.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: af7044e82ac0abe745ce3dfe2169e69a7e8e342f Maintainer: mch Status: ready --> <!-- EN-Revision: 7976e4688f783f37c8a90f59ac8f9a365d179160 Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<appendix xml:id="outcontrol.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <appendix xml:id="outcontrol.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.constants; &reftitle.constants;
@ -210,6 +210,7 @@
<listitem> <listitem>
<para> <para>
Указывает, что обработчик вывода успешно обработал буфер. Указывает, что обработчик вывода успешно обработал буфер.
Доступно, начиная с PHP 8.4.0.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>

View File

@ -1,16 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="outcontrol.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="outcontrol.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
&reference.outcontrol.ini; &reference.outcontrol.ini;
<section xml:id="outcontrol.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="password.setup" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="password.setup" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -27,11 +27,6 @@
</para> </para>
</section> </section>
<section xml:id="password.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="pcntl.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="pcntl.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -9,13 +8,6 @@
&reference.pcntl.configure; &reference.pcntl.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="pcntl.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="pcre.setup"> <chapter xml:id="pcre.setup">
&reftitle.setup; &reftitle.setup;
@ -8,11 +8,6 @@
&reference.pcre.ini; &reference.pcre.ini;
<section xml:id="pcre.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="pdo.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="pdo.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -13,13 +12,6 @@
&reference.pdo.ini; &reference.pdo.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="pdo.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: northcat Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: northcat Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="posix.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="posix.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -9,13 +8,6 @@
&reference.posix.configure; &reference.posix.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="posix.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="radius.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="radius.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -9,13 +8,6 @@
&reference.radius.configure; &reference.radius.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="radius.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 4c873e06af079a77438393a39948beb93d256784 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.random" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.random" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
@ -13,7 +13,6 @@
</para> </para>
</preface> </preface>
&reference.random.setup;
&reference.random.constants; &reference.random.constants;
&reference.random.examples; &reference.random.examples;
&reference.random.reference; &reference.random.reference;

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: edeff454567efd08214e3e4f9ca52035a7855464 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="readline.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="readline.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -29,13 +28,6 @@
&reference.readline.ini; &reference.readline.ini;
<!-- {{{ Resources -->
<section xml:id="readline.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="recode.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="recode.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -28,13 +28,6 @@
&reference.recode.configure; &reference.recode.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="recode.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1f7a0e4af85d1b74595626afa1ca774c896e8388 Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.reflection" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.reflection" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
@ -22,7 +22,6 @@
</para> </para>
</preface> </preface>
&reference.reflection.setup;
&reference.reflection.constants; &reference.reflection.constants;
&reference.reflection.examples; &reference.reflection.examples;
&reference.reflection.extending; &reference.reflection.extending;

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="rnp.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="rnp.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -15,11 +15,6 @@
&reference.rnp.configure; &reference.rnp.configure;
<section xml:id="rnp.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="rpminfo.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="rpminfo.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -19,14 +19,6 @@
</para> </para>
</section> </section>
<section xml:id="rpminfo.resources">
&reftitle.resources;
&no.resource;
<para>
</para>
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="rrd.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="rrd.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -31,11 +31,6 @@
</para> </para>
</section> </section>
<section xml:id="rrd.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: aef9aa5be8db161359d42860c226ba9e285cadcf Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="runkit7.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="runkit7.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -29,11 +29,6 @@
&reference.runkit7.ini; &reference.runkit7.ini;
<section xml:id="runkit7.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 96c9d88bad9a7d7d44bfb7f26c226df7ee9ddf26 Maintainer: aur Status: ready--> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready-->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="session.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="session.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -29,11 +28,6 @@
&reference.session.ini; &reference.session.ini;
<section xml:id="session.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="simplexml.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="simplexml.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -16,13 +15,6 @@
&reference.simplexml.configure; &reference.simplexml.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="simplexml.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="snmp.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="snmp.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -30,13 +30,6 @@
</section> </section>
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="snmp.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 383b579aef7ccf8e553603db99fd3c4a89bddabe Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="soap.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="soap.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -18,11 +17,6 @@
&reference.soap.ini; &reference.soap.ini;
<!-- }}} --> <!-- }}} -->
<section xml:id="soap.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: lex Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: lex Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="sodium.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="sodium.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -46,11 +45,6 @@
</section> </section>
<section xml:id="sodium.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,13 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="solr.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="solr.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
<section xml:id="solr.requirements"> <section xml:id="solr.requirements">
&reftitle.required; &reftitle.required;
<!-- Use &no.requirement; if there no requirement -->
<para> <para>
Модули libxml и curl также требуется включить, чтобы открыть доступ к модулю Apache Solr. Модули libxml и curl также требуется включить, чтобы открыть доступ к модулю Apache Solr.
</para> </para>
@ -45,12 +43,6 @@
</section> </section>
<!-- }}} --> <!-- }}} -->
<section xml:id="solr.resources">
&reftitle.resources;
&no.resource;
<!-- Use &no.resource; if there no resources -->
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: e579f9c9383e9dbc293343287086e988c17d0321 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.spl" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.spl" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
@ -21,7 +21,6 @@
</para> </para>
</preface> </preface>
&reference.spl.setup;
&reference.spl.constants; &reference.spl.constants;
&reference.spl.datastructures; &reference.spl.datastructures;
&reference.spl.iterators; &reference.spl.iterators;
@ -31,11 +30,6 @@
&reference.spl.files; &reference.spl.files;
&reference.spl.miscellaneous; &reference.spl.miscellaneous;
<!-- TODO: Not documented
&reference.spl.splfixedarray;
&reference.spl.splobjectstorage;
-->
</book> </book>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: d53376863ca956f3c3dccacb548b6e8494af92ad Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="sqlite3.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="sqlite3.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@ -21,11 +21,6 @@
&reference.sqlite3.ini; &reference.sqlite3.ini;
<!-- }}} --> <!-- }}} -->
<section xml:id="sqlite3.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="ssdeep.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="ssdeep.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -22,11 +22,6 @@
</para> </para>
</section> </section>
<section xml:id="ssdeep.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="stats.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="stats.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -29,13 +29,6 @@
</section> </section>
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="stats.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: shein Status: ready --> <!-- EN-Revision: 523a0692f739594aaea8aa3f226f0f4e78b5ae67 Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.strings" xmlns="http://docbook.org/ns/docbook"> <book xml:id="book.strings" xmlns="http://docbook.org/ns/docbook">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
<title>Строки</title> <title>Строки</title>
@ -11,7 +10,7 @@
<para> <para>
Функции для работы со строками обрабатывают строки по-своему. Функции для работы со строками обрабатывают строки по-своему.
Отдельные специализированные функции описываются разделами Отдельные специализированные функции описываются разделами
о регулярных выражениях и <link linkend="book.url">об обработке URL-адресов</link>. <link linkend="book.pcre">о регулярных выражениях</link> и <link linkend="book.url">об обработке URL-адресов</link>.
</para> </para>
<para> <para>
Информацию о поведении строк даёт глава «<link linkend="language.types.string">Строки</link>» Информацию о поведении строк даёт глава «<link linkend="language.types.string">Строки</link>»

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="strings.setup"> <chapter xml:id="strings.setup">
&reftitle.setup; &reftitle.setup;
@ -13,11 +13,6 @@
</simpara> </simpara>
</section> </section>
<section xml:id="strings.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="svm.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="svm.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -40,14 +40,6 @@ ldconfig --print | grep libsvm
</para> </para>
</section> </section>
<section xml:id="svm.resources">
&reftitle.resources;
&no.resource;
<para>
</para>
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="svn.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="svn.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -20,21 +19,6 @@
&reference.svn.configure; &reference.svn.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="svn.resources">
&reftitle.resources;
<!-- FIXME: Wtf?
<para>
Subversion's lower-level svn_fs_* functions make use of resources
that reference local file-system repositories. They can probably be
created using <function>svn_repos_fs</function> and
<function>svn_fs_revision_root</function>. (verify?)
</para>
-->
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="swoole.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="swoole.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -12,11 +12,4 @@
&reference.swoole.ini; &reference.swoole.ini;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="swoole.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 46a9cdd2dbef4ec89bf65fad9930e2feb78bbb98 Maintainer: sergey Status: ready --> <!-- EN-Revision: 4110331afec1fc2bfe27525341a5f96e0804692f Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.sync" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <book xml:id="book.sync" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<?phpdoc extension-membership="pecl" ?> <?phpdoc extension-membership="pecl" ?>
<title>Sync</title> <title>Sync</title>
@ -10,7 +9,7 @@
<preface xml:id="intro.sync"> <preface xml:id="intro.sync">
&reftitle.intro; &reftitle.intro;
<para> <para>
Модуль 'sync' вводит объекты кросс-платформенной синхронизации в PHP. Модуль <literal>sync</literal> вводит объекты кросс-платформенной синхронизации в PHP.
Именованные и неименованные объекты Mutex, Semaphore, Event, Reader-Writer и именованные объекты Shared Memory Именованные и неименованные объекты Mutex, Semaphore, Event, Reader-Writer и именованные объекты Shared Memory
обеспечивают синхронизацию на уровне ОС как на платформах с поддержкой интерфейса POSIX (например, Linux), обеспечивают синхронизацию на уровне ОС как на платформах с поддержкой интерфейса POSIX (например, Linux),
так и на Windows-платформах. так и на Windows-платформах.

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: sergey Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: sergey Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="sync.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="sync.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -21,11 +20,6 @@
</para> </para>
</section> </section>
<section xml:id="sync.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="taint.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="taint.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -23,14 +22,6 @@
&reference.taint.ini; &reference.taint.ini;
<!-- }}} --> <!-- }}} -->
<section xml:id="taint.resources">
&reftitle.resources;
&no.resource;
<para>
</para>
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="tcpwrap.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="tcpwrap.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -8,14 +8,6 @@
&reference.tcpwrap.configure; &reference.tcpwrap.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="tcpwrap.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: f4c6da6b22bb587767cbdaa8ca003bc4aadd18f3 Maintainer: aur Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: aur Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="tidy.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="tidy.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -21,13 +21,6 @@
&reference.tidy.ini; &reference.tidy.ini;
<!-- {{{ Resources -->
<section xml:id="tidy.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,17 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: tmn Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: tmn Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="tokenizer.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="tokenizer.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
&reference.tokenizer.configure; &reference.tokenizer.configure;
<section xml:id="tokenizer.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 482fe6f482209ef03c55003cb7e0ea4734e82b8b Maintainer: lex Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: lex Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="uopz.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="uopz.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -120,11 +120,6 @@
</note> </note>
</section> </section>
<section xml:id="uopz.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: shein Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: shein Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<book xml:id="book.url" xmlns="http://docbook.org/ns/docbook"> <book xml:id="book.url" xmlns="http://docbook.org/ns/docbook">
<?phpdoc extension-membership="core" ?> <?phpdoc extension-membership="core" ?>
<title>URL</title> <title>URL</title>
@ -13,7 +12,6 @@
</para> </para>
</preface> </preface>
&reference.url.setup;
&reference.url.constants; &reference.url.constants;
&reference.url.reference; &reference.url.reference;
</book> </book>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: f9c4a68ef4f89e51e6d9b905ad3ddb6492386dd3 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="v8js.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="v8js.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -15,11 +15,6 @@
&reference.v8js.ini; &reference.v8js.ini;
<section xml:id="v8js.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,18 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 605553e228c78a9368736f4ff36d185cf7e6eb22 Maintainer: irker Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: irker Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<!-- Updated by: mch -->
<chapter xml:id="var.setup"> <chapter xml:id="var.setup">
&reftitle.setup; &reftitle.setup;
&reference.var.ini; &reference.var.ini;
<section xml:id="var.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="varnish.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="varnish.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -28,11 +28,6 @@
</para> </para>
</section> </section>
<section xml:id="varnish.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="win32service.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="win32service.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -32,13 +31,6 @@
</section> </section>
<!-- }}} --> <!-- }}} -->
<!-- {{{ Ресурсы -->
<section xml:id="win32service.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
<section xml:id="win32service.security"> <section xml:id="win32service.security">
<title xmlns="http://docbook.org/ns/docbook">Вопросы безопасности</title> <title xmlns="http://docbook.org/ns/docbook">Вопросы безопасности</title>
<para> <para>

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: fdd77c27aafa5820c7841328f5ecd21e0a0c2f8a Maintainer: rjhdby Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="wincache.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="wincache.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -329,10 +328,7 @@ filesize=wincache_filesize
</example> </example>
</para> </para>
</section> </section>
<section xml:id="wincache.resources">
&reftitle.resources;
&no.resource;
</section>
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: mch Status: ready --> <!-- EN-Revision: f8f7abd6d2641f88867ce92d1357af0bde5793b8 Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="xattr.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="xattr.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -16,8 +15,8 @@
<para> <para>
Функции модуля работают только с файловыми системами, которые поддерживают Функции модуля работают только с файловыми системами, которые поддерживают
расширенные атрибуты и включают атрибуты в момент монтирования. Вот некоторые расширенные атрибуты и включают атрибуты в момент монтирования. Вот некоторые
распространённые файловые системы, которые поддерживают расширенные атрибуты: ext2, ext3, распространённые файловые системы, которые поддерживают расширенные атрибуты: <literal>ext2</literal>, <literal>ext3</literal>,
reiserfs, jfs и xfs. <literal>reiserfs</literal>, <literal>jfs</literal> и <literal>xfs</literal>.
</para> </para>
</note> </note>
</section> </section>
@ -27,13 +26,6 @@
&reference.xattr.configure; &reference.xattr.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="xattr.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 765b2d6eec7dfbaeed900b32aa91a1360d73df42 Maintainer: mch Status: ready --> <!-- EN-Revision: 48ce43fe79fa0c9f31f187ea8ec995b4cb13037e Maintainer: mch Status: ready -->
<!-- Reviewed: no --> <!-- Reviewed: no -->
<chapter xml:id="xdiff.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> <chapter xml:id="xdiff.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.setup; &reftitle.setup;
@ -24,13 +23,6 @@
&reference.xdiff.configure; &reference.xdiff.configure;
<!-- }}} --> <!-- }}} -->
<!-- {{{ Resources -->
<section xml:id="xdiff.resources">
&reftitle.resources;
&no.resource;
</section>
<!-- }}} -->
</chapter> </chapter>
<!-- Keep this comment at the end of the file <!-- Keep this comment at the end of the file
Local variables: Local variables:

Some files were not shown because too many files have changed in this diff Show More