svn: /phpdoc/ru/trunk/reference/ xhprof/book.xml xhprof/configure.xml xhprof/constants.xml xhprof/examples.xml xhprof/ini.xml xhprof/reference.xml xhprof/setup.xml xlswriter/book.xml xlswriter/configure.xml xlswriter/constants.xml xlswriter/reference.xml xlswriter/setup.xml xlswriter/xlsx-format.xml xlswriter/xlsx-kernel.xml
[email protected] (Andrey Gromov)
| Newsgroups | php.doc.ru |
|---|---|
| Message-ID | <[email protected]> |
rjhdby Mon, 06 Jan 2020 14:24:18 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=348817
Log:
new
Changed paths:
A phpdoc/ru/trunk/reference/xhprof/book.xml
A phpdoc/ru/trunk/reference/xhprof/configure.xml
A phpdoc/ru/trunk/reference/xhprof/constants.xml
A phpdoc/ru/trunk/reference/xhprof/examples.xml
A phpdoc/ru/trunk/reference/xhprof/ini.xml
A phpdoc/ru/trunk/reference/xhprof/reference.xml
A phpdoc/ru/trunk/reference/xhprof/setup.xml
A phpdoc/ru/trunk/reference/xlswriter/book.xml
A phpdoc/ru/trunk/reference/xlswriter/configure.xml
A phpdoc/ru/trunk/reference/xlswriter/constants.xml
A phpdoc/ru/trunk/reference/xlswriter/reference.xml
A phpdoc/ru/trunk/reference/xlswriter/setup.xml
A phpdoc/ru/trunk/reference/xlswriter/xlsx-format.xml
A phpdoc/ru/trunk/reference/xlswriter/xlsx-kernel.xml
svn-diffs-348817.txt
(text/x-diff, 39.6 KB)
Added: phpdoc/ru/trunk/reference/xhprof/book.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/book.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/book.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 310721 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<book xml:id="book.xhprof" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>Hierarchical Profiler</title>
+ <titleabbrev>Xhprof</titleabbrev>
+
+ <preface xml:id="intro.xhprof">
+ &reftitle.intro;
+ <para>
+ XHProf это легковесный профайлер основанный на иерархии и
+ инструментировании. В процессе сбора данных он отслеживает
+ количество вызовов и инклюзивные метрики рёбер динамического
+ графа вызовов программы. Эксклюзивные метрики, такие как
+ затраченное время, время CPU и потребление памяти, расчитываются
+ в фазе репортинга/постпроцессинга. Профилирование функции может
+ быть сломано вызывающими или вызываемыми функциями.
+ XHProf отслеживает рекурсивные функции путём анализа циклов
+ в графе вызовов в момент сбора данных и избегает зацикленности
+ путём назначения уникальных имён на основе глубины для рекурсивных
+ вызовов.
+ </para>
+ <para>
+ XHProf содержит простой HTML интерфейс (написанный на PHP). UI на
+ основе браузера сильно облегчает просмотр результатов и пересылку
+ их всем желающим. Также поддерживается графическое отображение
+ графа вызовов.
+ </para>
+ <para>
+ Отчёты XHProf часто полезны для анализа структуры запускаемого кода.
+ Иерархическая структура отчётов позволяет определить, к примеру,
+ цепочку вызовов, приведшую к вызову конкретной функции.
+ </para>
+ <para>
+ XHProf поддерживает сравнение двух разных запусков ("diff") или
+ аггрегацию данных нескольких запусков. Сравнительные и
+ аггрегированные отчёты, так же как одиночные, предоставляют
+ как проские, так и иерархические взгляды на результаты
+ профилирования.
+ </para>
+ <para>
+ Дополнительная документация доступна на сайте
+ <link xlink:href="&url.xhprof.docs.facebook;">facebook xhprof</link>.
+ </para>
+ </preface>
+
+ &reference.xhprof.setup;
+ &reference.xhprof.constants;
+ &reference.xhprof.examples;
+ &reference.xhprof.reference;
+
+</book>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/book.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xhprof/configure.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/configure.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/configure.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 310721 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<section xml:id="xhprof.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ &reftitle.install;
+
+ <para>
+ &pecl.info;
+ <link xlink:href="&url.pecl.package;xhprof">&url.pecl.package;xhprof</link>
+ </para>
+
+</section>
+
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/configure.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xhprof/constants.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/constants.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/constants.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 323624 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<appendix xml:id="xhprof.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ &reftitle.constants;
+ &extension.constants;
+ <variablelist>
+ <varlistentry xml:id="constant.xhprof-flags-no-builtins">
+ <term>
+ <constant>XHPROF_FLAGS_NO_BUILTINS</constant>
+ (<type>integer</type>)
+ </term>
+ <listitem>
+ <simpara>
+ Используется для исключения профилирования встроенных функций.
+ </simpara>
+ </listitem>
+ </varlistentry>
+ <varlistentry xml:id="constant.xhprof-flags-cpu">
+ <term>
+ <constant>XHPROF_FLAGS_CPU</constant>
+ (<type>integer</type>)
+ </term>
+ <listitem>
+ <simpara>
+ Используется для добавления в отчёт информации по профилированию
+ <acronym>CPU</acronym>.
+ </simpara>
+ </listitem>
+ </varlistentry>
+ <varlistentry xml:id="constant.xhprof-flags-memory">
+ <term>
+ <constant>XHPROF_FLAGS_MEMORY</constant>
+ (<type>integer</type>)
+ </term>
+ <listitem>
+ <simpara>
+ Используется для добавления в отчёт информации по профилированию памяти.
+ </simpara>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+</appendix>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/constants.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xhprof/examples.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/examples.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/examples.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 310721 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<chapter xml:id="xhprof.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ &reftitle.examples;
+ <example>
+ <title>Примеры использования Xhprof, опционально с GUI</title>
+ <para>
+ В этом примере профайлер запускается, останавливается и использует
+ встроенный GUI интерфейс для сохранения и разбора результатов.
+ Другими словами, исполнение кода расширения завершается
+ на функции <function>xhprof_disable</function>.
+ </para>
+ <programlisting role="php">
+<![CDATA[
+<?php
+xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
+
+for ($i = 0; $i <= 1000; $i++) {
+ $a = $i * $i;
+}
+
+$xhprof_data = xhprof_disable();
+
+$XHPROF_ROOT = "/tools/xhprof/";
+include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
+include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";
+
+$xhprof_runs = new XHProfRuns_Default();
+$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_testing");
+
+echo "http://localhost/xhprof/xhprof_html/index.php?run={$run_id}&source=xhprof_testing\n";
+
+?>
+]]>
+ </programlisting>
+ &example.outputs.similar;
+ <screen>
+<![CDATA[
+http://localhost/xhprof/xhprof_html/index.php?run=t11_4bdf44d21121f&source=xhprof_testing
+]]>
+ </screen>
+ </example>
+</chapter>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/examples.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xhprof/ini.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/ini.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/ini.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 323642 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<section xml:id="xhprof.configuration" xmlns="http://docbook.org/ns/docbook">
+ &reftitle.runtime;
+ &extension.runtime;
+ <para>
+ <table>
+ <title>&ConfigureOptions; Xhprof</title>
+ <tgroup cols="4">
+ <thead>
+ <row>
+ <entry>&Name;</entry>
+ <entry>&Default;</entry>
+ <entry>&Changeable;</entry>
+ <entry>&Changelog;</entry>
+ </row>
+ </thead>
+ <tbody>
+ <row>
+ <entry><link linkend="ini.xhprof.output-dir">xhprof.output_dir</link></entry>
+ <entry>""</entry>
+ <entry><constant>PHP_INI_ALL</constant></entry>
+ <entry></entry>
+ </row>
+ </tbody>
+ </tgroup>
+ </table>
+ </para>
+
+ &ini.descriptions.title;
+
+ <variablelist>
+ <varlistentry xml:id="ini.xhprof.output-dir">
+ <term>
+ <parameter>xhprof.output_dir</parameter>
+ <type>string</type>
+ </term>
+ <listitem>
+ <para>
+ Директория используемая реализацией интерфейса iXHProfRuns
+ по умолчанию (класс XHProfRuns_Default) для сохранения результатов
+ профилирования.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+</section>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/ini.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xhprof/reference.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/reference.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/reference.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 310721 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<reference xml:id="ref.xhprof" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>&Functions; Xhprof</title>
+
+ &reference.xhprof.entities.functions;
+
+</reference>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/reference.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xhprof/setup.xml
===================================================================
--- phpdoc/ru/trunk/reference/xhprof/setup.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xhprof/setup.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 310721 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<chapter xml:id="xhprof.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ &reftitle.setup;
+
+ <section xml:id="xhprof.requirements">
+ &reftitle.required;
+ <para>
+ В целом не требуется, так как xhprof включает интерфейс написанный
+ на PHP. Он используется для сохранения и отображения результатов
+ профилирования в удобнов виде в браузере. Таким образом, включение
+ встроенного в PHP web-сервера позволит использовать xprof максимально
+ продуктивно.
+ </para>
+ <para>
+ Также существует форк GUI интерфейса -
+ <link xlink:href="&url.xhprof.gui.fork1;">&url.xhprof.gui.fork1;</link>
+ </para>
+ </section>
+
+ &reference.xhprof.configure;
+ &reference.xhprof.ini;
+
+ <section xml:id="xhprof.resources">
+ &reftitle.resources;
+ &no.resource;
+ </section>
+
+</chapter>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xhprof/setup.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/book.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/book.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/book.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+
+<book xml:id="book.xlswriter" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>XLSWriter</title>
+
+ <!-- {{{ preface -->
+ <preface xml:id="intro.xlswriter">
+ &reftitle.intro;
+ <para>
+ Расширение для быстрого и эффективного экспорта в xlsx.
+ </para>
+ </preface>
+ <!-- }}} -->
+
+ &reference.xlswriter.setup;
+ &reference.xlswriter.constants;
+ &reference.xlswriter.xlsx-kernel;
+ &reference.xlswriter.xlsx-format;
+
+</book>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
+
Property changes on: phpdoc/ru/trunk/reference/xlswriter/book.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/configure.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/configure.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/configure.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<section xml:id="xlswriter.installation" xmlns="http://docbook.org/ns/docbook">
+ &reftitle.install;
+ <para>
+ По умолчанию поддержка XML-RPC в PHP не включена. Вам необходимо
+ использовать опцию конфигурации
+ <option role="configure">--with-xmlrpc[=DIR]</option> при
+ компиляции PHP для включения поддержки XML-RPC.
+ </para>
+</section>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
+
Property changes on: phpdoc/ru/trunk/reference/xlswriter/configure.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/constants.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/constants.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/constants.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<appendix xml:id="xlswriter.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ &reftitle.constants;
+ &no.constants;
+</appendix>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
+
Property changes on: phpdoc/ru/trunk/reference/xlswriter/constants.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/reference.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/reference.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/reference.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<reference xml:id="ref.xlswriter" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <title>&Functions; XlsWriter</title>
+ &reference.xlswriter.entities.functions;
+</reference>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xlswriter/reference.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/setup.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/setup.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/setup.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<chapter xml:id="xlswriter.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ &reftitle.setup;
+
+ <section xml:id="xlswriter.requirements">
+ &reftitle.required;
+ <para>
+ Для работы XLSWriter необходим PHP версии 7.0 и выше.
+ </para>
+ </section>
+
+ <section xml:id="xlswriter.installation">
+ &reftitle.install;
+ <para>
+ &pecl.info;
+ <link xlink:href="&url.pecl.package;xlswriter">&url.pecl.package;xlswriter</link>
+ </para>
+ </section>
+
+ <section xml:id="xlswriter.resources">
+ &reftitle.resources;
+ <para>
+ Для процедурного использования расширения XLSWriter используется
+ один тип ресурса, возвращаемый функцией
+ <function>fileName</function> или
+ <classname>\Vtiful\Kernel\Format</classname>.
+ </para>
+ </section>
+
+</chapter>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
+
Property changes on: phpdoc/ru/trunk/reference/xlswriter/setup.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/xlsx-format.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/xlsx-format.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/xlsx-format.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,289 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<phpdoc:classref xml:id="class.vtiful-kernel-format" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
+
+ <title>Класс Vtiful\Kernel\Format</title>
+ <titleabbrev>Vtiful\Kernel\Format</titleabbrev>
+
+ <partintro>
+
+<!-- {{{ Class intro -->
+ <section xml:id="vtiful-kernel-format.intro">
+ &reftitle.intro;
+ <para>
+ Возвращает объект форматирования ячейки
+ </para>
+ </section>
+<!-- }}} -->
+
+ <section xml:id="vtiful-kernel-format.synopsis">
+ &reftitle.classsynopsis;
+
+<!-- {{{ Class Synopsis -->
+ <classsynopsis>
+ <ooclass><classname>Vtiful\Kernel\Format</classname></ooclass>
+
+<!-- {{{ Class synopsis -->
+ <classsynopsisinfo>
+ <ooclass>
+ <classname>Vtiful\Kernel\Format</classname>
+ </ooclass>
+ </classsynopsisinfo>
+<!-- }}} -->
+
+ <classsynopsisinfo role="comment">Константы</classsynopsisinfo>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-left">Vtiful\Kernel\Format::FORMAT_ALIGN_LEFT</varname>
+ <initializer>1</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-center">Vtiful\Kernel\Format::FORMAT_ALIGN_CENTER</varname>
+ <initializer>2</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-right">Vtiful\Kernel\Format::FORMAT_ALIGN_RIGHT</varname>
+ <initializer>3</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-fill">Vtiful\Kernel\Format::FORMAT_ALIGN_FILL</varname>
+ <initializer>4</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-justify">Vtiful\Kernel\Format::FORMAT_ALIGN_JUSTIFY</varname>
+ <initializer>5</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-center-across">Vtiful\Kernel\Format::FORMAT_ALIGN_CENTER_ACROSS</varname>
+ <initializer>6</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-distributed">Vtiful\Kernel\Format::FORMAT_ALIGN_DISTRIBUTED</varname>
+ <initializer>7</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-vertical-top">Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_TOP</varname>
+ <initializer>8</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-vertical-bottom">Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_BOTTOM</varname>
+ <initializer>9</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-vertical-center">Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_CENTER</varname>
+ <initializer>10</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-vertical-justify">Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_JUSTIFY</varname>
+ <initializer>11</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.format-align-vertical-distributed">Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_DISTRIBUTED</varname>
+ <initializer>12</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.underline-single">Vtiful\Kernel\Format::UNDERLINE_SINGLE</varname>
+ <initializer>1</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.underline-double">Vtiful\Kernel\Format::UNDERLINE_DOUBLE</varname>
+ <initializer>2</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.underline-single-accounting">Vtiful\Kernel\Format::UNDERLINE_SINGLE_ACCOUNTING</varname>
+ <initializer>3</initializer>
+ </fieldsynopsis>
+ <fieldsynopsis>
+ <modifier>const</modifier>
+ <type>int</type>
+ <varname linkend="vtiful-kernel-format.constants.underline-double-accounting">Vtiful\Kernel\Format::UNDERLINE_DOUBLE_ACCOUNTING</varname>
+ <initializer>4</initializer>
+ </fieldsynopsis>
+
+ <classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
+ <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.vtiful-kernel-format')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
+
+ </classsynopsis>
+<!-- }}} -->
+
+ </section>
+
+<!-- {{{ Class constants -->
+ <section xml:id="vtiful-kernel-format.constants">
+ &reftitle.constants;
+ <variablelist>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-left">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_LEFT</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-center">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_CENTER</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-right">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_RIGHT</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-fill">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_FILL</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-justify">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_JUSTIFY</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-center-across">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_CENTER_ACROSS</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-distributed">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_DISTRIBUTED</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-vertical-top">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_TOP</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-vertical-bottom">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_BOTTOM</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-vertical-center">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_CENTER</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-vertical-justify">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_JUSTIFY</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.format-align-vertical-distributed">
+ <term><constant>Vtiful\Kernel\Format::FORMAT_ALIGN_VERTICAL_DISTRIBUTED</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.underline-single">
+ <term><constant>Vtiful\Kernel\Format::UNDERLINE_SINGLE</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.underline-double">
+ <term><constant>Vtiful\Kernel\Format::UNDERLINE_DOUBLE</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.underline-single-accounting">
+ <term><constant>Vtiful\Kernel\Format::UNDERLINE_SINGLE_ACCOUNTING</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ <varlistentry xml:id="vtiful-kernel-format.constants.underline-double-accounting">
+ <term><constant>Vtiful\Kernel\Format::UNDERLINE_DOUBLE_ACCOUNTING</constant></term>
+ <listitem>
+ <para></para>
+ </listitem>
+ </varlistentry>
+
+ </variablelist>
+ </section>
+<!-- }}} -->
+
+ </partintro>
+
+ &reference.xlswriter.entities.xlsx-format;
+
+</phpdoc:classref>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xlswriter/xlsx-format.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Added: phpdoc/ru/trunk/reference/xlswriter/xlsx-kernel.xml
===================================================================
--- phpdoc/ru/trunk/reference/xlswriter/xlsx-kernel.xml (rev 0)
+++ phpdoc/ru/trunk/reference/xlswriter/xlsx-kernel.xml 2020-01-06 14:24:18 UTC (rev 348817)
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 346395 Maintainer: rjhdby Status: ready -->
+<!-- Reviewed: no -->
+
+<phpdoc:classref xml:id="class.vtiful-kernel-excel" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
+
+ <title>Класс Vtiful\Kernel\Excel</title>
+ <titleabbrev>Vtiful\Kernel\Excel</titleabbrev>
+
+ <partintro>
+
+ <!-- {{{ Vtiful\Kernel\Excel intro -->
+ <section xml:id="vtiful-kernel-excel.intro">
+ &reftitle.intro;
+ <para>
+ Создает файлы xlsx с заданными ячейками
+ </para>
+ </section>
+ <!-- }}} -->
+
+ <section xml:id="vtiful-kernel-excel.synopsis">
+ &reftitle.classsynopsis;
+
+ <!-- {{{ Synopsis -->
+ <classsynopsis>
+ <ooclass><classname>Vtiful\Kernel\Excel</classname></ooclass>
+
+ <!-- {{{ Class synopsis -->
+ <classsynopsisinfo>
+ <ooclass>
+ <classname>Vtiful\Kernel\Excel</classname>
+ </ooclass>
+ </classsynopsisinfo>
+ <!-- }}} -->
+
+ <classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
+ <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.vtiful-kernel-excel')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
+
+ </classsynopsis>
+ <!-- }}} -->
+
+ </section>
+
+ </partintro>
+
+ &reference.xlswriter.entities.xlsx-kernel;
+
+</phpdoc:classref>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->
Property changes on: phpdoc/ru/trunk/reference/xlswriter/xlsx-kernel.xml
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property