mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
add basic structure for extension zookeeper
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@340917 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
b70e44d3f3
commit
aa749f118f
4 changed files with 111 additions and 4 deletions
|
@ -232,6 +232,7 @@
|
|||
<listitem><simpara><xref linkend="book.yaz"/></simpara></listitem>
|
||||
<listitem><simpara><xref linkend="book.zip"/></simpara></listitem>
|
||||
<listitem><simpara><xref linkend="book.zlib"/></simpara></listitem>
|
||||
<listitem><simpara><xref linkend="book.zookeeper"/></simpara></listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
|
@ -482,6 +483,7 @@
|
|||
<listitem><para><xref linkend="book.yaf"/></para></listitem>
|
||||
<listitem><para><xref linkend="book.yaml"/></para></listitem>
|
||||
<listitem><para><xref linkend="book.yaz"/></para></listitem>
|
||||
<listitem><para><xref linkend="book.zookeeper"/></para></listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
</section>
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
&reference.zookeeper.setup;
|
||||
&reference.zookeeper.constants;
|
||||
&reference.zookeeper.reference;
|
||||
|
||||
</book>
|
||||
|
||||
|
|
109
reference/zookeeper/constants.xml
Normal file
109
reference/zookeeper/constants.xml
Normal file
|
@ -0,0 +1,109 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 295472 $ -->
|
||||
|
||||
<appendix xml:id="zookeeper.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.constants;
|
||||
&extension.constants;
|
||||
|
||||
<!-- If the extension doesn't define any constants, use this entity -->
|
||||
<!-- &no.constants; -->
|
||||
<para>
|
||||
<variablelist>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>Zookeeper::PERM_READ</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
can read nodes value and list its children
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>Zookeeper::PERM_WRITE</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
can set the nodes value
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>Zookeeper::PERM_CREATE</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
can create children
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>Zookeeper::PERM_DELETE</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
can delete children
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>Zookeeper::PERM_ADMIN</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
can execute set_acl()
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>Zookeeper::PERM_ALL</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
all of the above flags ORd together
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
</variablelist>
|
||||
</para>
|
||||
</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
|
||||
-->
|
||||
|
|
@ -29,10 +29,7 @@
|
|||
<!-- }}} -->
|
||||
|
||||
<!-- {{{ Configuration -->
|
||||
<section xml:id="zookeeper.configuration">
|
||||
&reference.zookeeper.ini;
|
||||
</section>
|
||||
<!-- or &reference.zookeeper.entities.ini; -->
|
||||
<!-- }}} -->
|
||||
|
||||
<!-- {{{ Resources -->
|
||||
|
|
Loading…
Reference in a new issue