mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
fix markup
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279806 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c09a364cd3
commit
7988eb137a
17 changed files with 230 additions and 222 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.41 $ -->
|
||||
<!-- $Revision: 1.42 $ -->
|
||||
<section xml:id="errorfunc.configuration" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.runtime;
|
||||
&extension.runtime;
|
||||
|
@ -144,8 +144,9 @@
|
|||
<link linkend="ini.display-errors">display_errors</link> directive.
|
||||
</para>
|
||||
<para>
|
||||
In PHP 4 and PHP 5 the default value is E_ALL & ~E_NOTICE. This
|
||||
setting does not show <constant>E_NOTICE</constant> level errors. You
|
||||
In PHP 4 and PHP 5 the default value is <constant>E_ALL</constant>
|
||||
& ~<constant>E_NOTICE</constant>.
|
||||
This setting does not show <constant>E_NOTICE</constant> level errors. You
|
||||
may want to show them during development.
|
||||
</para>
|
||||
<note>
|
||||
|
@ -154,8 +155,9 @@
|
|||
about possible bugs in your code. For example, use of unassigned values
|
||||
is warned. It is extremely useful to find typos and
|
||||
to save time for debugging. NOTICE messages will warn you about bad style.
|
||||
For example, $arr[item] is better to be written as $arr['item'] since
|
||||
PHP tries to treat "item" as constant. If it is not a constant, PHP assumes
|
||||
For example, <literal>$arr[item]</literal> is better to be written as
|
||||
<literal>$arr['item']</literal> since PHP tries to treat
|
||||
<literal>"item"</literal> as constant. If it is not a constant, PHP assumes
|
||||
it is a string index for the array.
|
||||
</para>
|
||||
</note>
|
||||
|
@ -196,9 +198,9 @@
|
|||
as part of the output or if they should be hidden from the user.
|
||||
</para>
|
||||
<para>
|
||||
Value "stderr" sends the errors to <literal>stderr</literal> instead of
|
||||
<literal>stdout</literal>. The value is available as of PHP 5.2.4. In
|
||||
earlier versions, this directive was of type <type>boolean</type>.
|
||||
Value <literal>"stderr"</literal> sends the errors to <literal>stderr</literal>
|
||||
instead of <literal>stdout</literal>. The value is available as of PHP
|
||||
5.2.4. In earlier versions, this directive was of type <type>boolean</type>.
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
|
@ -309,7 +311,7 @@
|
|||
If this parameter is set to Off, then memory leaks will not be shown (on
|
||||
stdout or in the log). This has only effect in a debug compile, and if
|
||||
<link linkend="ini.error-reporting">error_reporting</link> includes
|
||||
E_WARNING in the allowed list
|
||||
<constant>E_WARNING</constant> in the allowed list
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -378,8 +380,8 @@
|
|||
The new error format contains a reference to a page describing the error or
|
||||
function causing the error. In case of manual pages you can download the
|
||||
manual in your language and set this ini directive to the URL of your local
|
||||
copy. If your local copy of the manual can be reached by '/manual/' you can
|
||||
simply use <userinput>docref_root=/manual/</userinput>. Additional you have
|
||||
copy. If your local copy of the manual can be reached by <literal>"/manual/"</literal>
|
||||
you can simply use <userinput>docref_root=/manual/</userinput>. Additional you have
|
||||
to set docref_ext to match the fileextensions of your copy
|
||||
<userinput>docref_ext=.html</userinput>. It is possible to use external
|
||||
references. For example you can use
|
||||
|
@ -388,7 +390,7 @@
|
|||
&url=http%3A%2F%2Fwww.php.net%2F"</userinput>
|
||||
</para>
|
||||
<para>
|
||||
Most of the time you want the docref_root value to end with a slash '/'.
|
||||
Most of the time you want the docref_root value to end with a slash <literal>"/"</literal>.
|
||||
But see the second example above which does not have nor need it.
|
||||
</para>
|
||||
<note>
|
||||
|
@ -412,7 +414,7 @@
|
|||
</para>
|
||||
<note>
|
||||
<para>
|
||||
The value of docref_ext must begin with a dot '.'.
|
||||
The value of docref_ext must begin with a dot <literal>"."</literal>.
|
||||
</para>
|
||||
</note>
|
||||
</listitem>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<section xml:id="imap.installation" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.install;
|
||||
<para>
|
||||
|
@ -8,7 +8,7 @@
|
|||
c-client install prefix. From our example above, you would use
|
||||
<option role="configure">--with-imap=/usr/local/imap-2000b</option>.
|
||||
This location depends on where you created this directory according to the
|
||||
description above. Windows users may include the
|
||||
description above. <productname>Windows</productname> users may include the
|
||||
<filename>php_imap.dll</filename> DLL in &php.ini;.
|
||||
IMAP is not supported on systems earlier that Windows 2000. This is because it
|
||||
uses encryption functions in order to enable SSL connections to the mail
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<appendix xml:id="imap.constants" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.constants;
|
||||
&extension.constants;
|
||||
|
@ -89,7 +89,8 @@
|
|||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
For IMAP and NNTP names, open a connection but don't open a mailbox.
|
||||
For <acronym>IMAP</acronym> and <acronym>NNTP</acronym>
|
||||
names, open a connection but don't open a mailbox.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.17 $ -->
|
||||
<!-- $Revision: 1.18 $ -->
|
||||
<refentry xml:id="function.imap-open" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>imap_open</refname>
|
||||
<refpurpose>Open an IMAP stream to a mailbox</refpurpose>
|
||||
<refpurpose>Open an <acronym>IMAP</acronym> stream to a mailbox</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
|
@ -116,15 +116,15 @@
|
|||
<entry><literal>/imap</literal>, <literal>/imap2</literal>,
|
||||
<literal>/imap2bis</literal>, <literal>/imap4</literal>,
|
||||
<literal>/imap4rev1</literal></entry>
|
||||
<entry>equivalent to /service=imap</entry>
|
||||
<entry>equivalent to <literal>/service=imap</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>/pop3</literal></entry>
|
||||
<entry>equivalent to /service=pop3</entry>
|
||||
<entry>equivalent to <literal>/service=pop3</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>/nntp</literal></entry>
|
||||
<entry>equivalent to /service=nntp</entry>
|
||||
<entry>equivalent to <literal>/service=nntp</literal></entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>/norsh</literal></entry>
|
||||
|
@ -133,7 +133,7 @@
|
|||
</row>
|
||||
<row>
|
||||
<entry><literal>/ssl</literal></entry>
|
||||
<entry>use the Secure Socket Layer to encrypt the session</entry>
|
||||
<entry>use the <literal>Secure Socket Layer</literal> to encrypt the session</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry><literal>/validate-cert</literal></entry>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<!-- $Revision: 1.17 $ -->
|
||||
<refentry xml:id="function.imap-reopen" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>imap_reopen</refname>
|
||||
<refpurpose>Reopen IMAP stream to new mailbox</refpurpose>
|
||||
<refpurpose>Reopen <acronym>IMAP</acronym> stream to new mailbox</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
|
@ -48,7 +48,7 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
<constant>OP_ANONYMOUS</constant> - Don't use or update a
|
||||
<filename>.newsrc</filename> for news (NNTP only)
|
||||
<filename>.newsrc</filename> for news (<acronym>NNTP</acronym> only)
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<!-- $Revision: 1.14 $ -->
|
||||
<refentry xml:id="function.imap-status" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>imap_status</refname>
|
||||
|
@ -39,7 +39,7 @@
|
|||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<constant>SA_MESSAGES</constant> - set status->messages to the
|
||||
<constant>SA_MESSAGES</constant> - set <varname>$status->messages</varname> to the
|
||||
number of messages in the mailbox
|
||||
</simpara>
|
||||
</listitem>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.22 $ -->
|
||||
<!-- $Revision: 1.23 $ -->
|
||||
|
||||
<reference xml:id="ref.imap" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>IMAP &Functions;</title>
|
||||
|
@ -15,38 +15,38 @@
|
|||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link xlink:href="&url.rfc;2821">RFC2821</link>: Simple Mail
|
||||
Transfer Protocol (SMTP).
|
||||
<link xlink:href="&url.rfc;2821">RFC2821</link>:
|
||||
<literal>Simple Mail Transfer Protocol</literal> (<acronym>SMTP</acronym>).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link xlink:href="&url.rfc;2822">RFC2822</link>: Standard for
|
||||
ARPA internet text messages.
|
||||
<link xlink:href="&url.rfc;2822">RFC2822</link>:
|
||||
<literal>Standard for ARPA internet text messages</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link xlink:href="&url.rfc;2060">RFC2060</link>: Internet
|
||||
Message Access Protocol (IMAP) Version 4rev1.
|
||||
<link xlink:href="&url.rfc;2060">RFC2060</link>:
|
||||
<literal>Internet Message Access Protocol</literal> (<acronym>IMAP</acronym>) Version 4rev1.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link xlink:href="&url.rfc;1939">RFC1939</link>: Post
|
||||
Office Protocol Version 3 (POP3).
|
||||
<link xlink:href="&url.rfc;1939">RFC1939</link>:
|
||||
<literal>Post Office Protocol Version 3</literal> (<acronym>POP3</acronym>).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link xlink:href="&url.rfc;977">RFC977</link>: Network News
|
||||
Transfer Protocol (NNTP).
|
||||
<link xlink:href="&url.rfc;977">RFC977</link>:
|
||||
<literal>Network News Transfer Protocol</literal> (<acronym>NNTP</acronym>).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<link xlink:href="&url.rfc;2076">RFC2076</link>: Common
|
||||
Internet Message Headers.
|
||||
<link xlink:href="&url.rfc;2076">RFC2076</link>:
|
||||
<literal>Common Internet Message Headers</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -55,13 +55,13 @@
|
|||
xlink:href="&url.rfc;2046">RFC2046</link> , <link
|
||||
xlink:href="&url.rfc;2047">RFC2047</link> , <link
|
||||
xlink:href="&url.rfc;2048">RFC2048</link> & <link
|
||||
xlink:href="&url.rfc;2049">RFC2049</link>: Multipurpose
|
||||
Internet Mail Extensions (MIME).
|
||||
xlink:href="&url.rfc;2049">RFC2049</link>:
|
||||
<literal>Multipurpose Internet Mail Extensions</literal> (<acronym>MIME</acronym>).
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
A detailed overview is also available in the books
|
||||
<link xlink:href="&url.email.book;">Programming Internet Email</link>
|
||||
<link xlink:href="&url.email.book;"><literal>Programming Internet Email</literal></link>
|
||||
by David Wood and <link xlink:href="&url.imap.book;">Managing
|
||||
IMAP</link> by Dianna Mullet & Kevin Mullet.
|
||||
</para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<section xml:id="mysqli.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
|
||||
&reftitle.install;
|
||||
|
@ -109,7 +109,7 @@
|
|||
<filename>c:\php</filename>), and make sure you remove the comment
|
||||
(semi-colon) from the start of the line
|
||||
<literal>extension=php_mysqli.dll</literal>, in the section marked
|
||||
[PHP_MYSQLI].
|
||||
<literal>[PHP_MYSQLI]</literal>.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.21 $ -->
|
||||
<!-- $Revision: 1.22 $ -->
|
||||
<appendix xml:id="mysqli.constants" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.constants;
|
||||
<section>
|
||||
|
@ -66,8 +66,11 @@
|
|||
<term><constant>MYSQLI_CLIENT_INTERACTIVE</constant></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Allow interactive_timeout seconds (instead of wait_timeout seconds) of inactivity before closing the connection.
|
||||
The client's session wait_timeout variable will be set to the value of the session interactive_timeout variable.
|
||||
Allow <literal>interactive_timeout</literal> seconds
|
||||
(instead of <literal>wait_timeout</literal> seconds) of inactivity before
|
||||
closing the connection. The client's session
|
||||
<literal>wait_timeout</literal> variable will be set to
|
||||
the value of the session <literal>interactive_timeout</literal> variable.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<appendix xml:id="ncurses.constants" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.constants;
|
||||
&extension.constants;
|
||||
|
@ -24,35 +24,35 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_BLACK</entry>
|
||||
<entry><constant>NCURSES_COLOR_BLACK</constant></entry>
|
||||
<entry>no color (black)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_WHITE</entry>
|
||||
<entry><constant>NCURSES_COLOR_WHITE</constant></entry>
|
||||
<entry>white</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_RED</entry>
|
||||
<entry><constant>NCURSES_COLOR_RED</constant></entry>
|
||||
<entry>red - supported when terminal is in color mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_GREEN</entry>
|
||||
<entry><constant>NCURSES_COLOR_GREEN</constant></entry>
|
||||
<entry>green - supported when terminal is in color mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_YELLOW</entry>
|
||||
<entry><constant>NCURSES_COLOR_YELLOW</constant></entry>
|
||||
<entry>yellow - supported when terminal is in color mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_BLUE</entry>
|
||||
<entry><constant>NCURSES_COLOR_BLUE</constant></entry>
|
||||
<entry>blue - supported when terminal is in color mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_CYAN</entry>
|
||||
<entry><constant>NCURSES_COLOR_CYAN</constant></entry>
|
||||
<entry>cyan - supported when terminal is in color mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_COLOR_MAGENTA</entry>
|
||||
<entry><constant>NCURSES_COLOR_MAGENTA</constant></entry>
|
||||
<entry>magenta - supported when terminal is in color mode</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
@ -72,351 +72,351 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_F0 - NCURSES_KEY_F64</entry>
|
||||
<entry><constant>NCURSES_KEY_F0</constant> - <constant>NCURSES_KEY_F64</constant></entry>
|
||||
<entry>function keys F1 - F64</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_DOWN</entry>
|
||||
<entry><constant>NCURSES_KEY_DOWN</constant></entry>
|
||||
<entry>down arrow</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_UP</entry>
|
||||
<entry><constant>NCURSES_KEY_UP</constant></entry>
|
||||
<entry>up arrow</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_LEFT</entry>
|
||||
<entry><constant>NCURSES_KEY_LEFT</constant></entry>
|
||||
<entry>left arrow</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_RIGHT</entry>
|
||||
<entry><constant>NCURSES_KEY_RIGHT</constant></entry>
|
||||
<entry>right arrow</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_HOME</entry>
|
||||
<entry><constant>NCURSES_KEY_HOME</constant></entry>
|
||||
<entry>home key (upward+left arrow)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_BACKSPACE</entry>
|
||||
<entry><constant>NCURSES_KEY_BACKSPACE</constant></entry>
|
||||
<entry>backspace</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_DL</entry>
|
||||
<entry><constant>NCURSES_KEY_DL</constant></entry>
|
||||
<entry>delete line</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_IL</entry>
|
||||
<entry><constant>NCURSES_KEY_IL</constant></entry>
|
||||
<entry>insert line</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_DC</entry>
|
||||
<entry><constant>NCURSES_KEY_DC</constant></entry>
|
||||
<entry>delete character</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_IC</entry>
|
||||
<entry><constant>NCURSES_KEY_IC</constant></entry>
|
||||
<entry>insert char or enter insert mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_EIC</entry>
|
||||
<entry><constant>NCURSES_KEY_EIC</constant></entry>
|
||||
<entry>exit insert char mode</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_CLEAR</entry>
|
||||
<entry><constant>NCURSES_KEY_CLEAR</constant></entry>
|
||||
<entry>clear screen</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_EOS</entry>
|
||||
<entry><constant>NCURSES_KEY_EOS</constant></entry>
|
||||
<entry>clear to end of screen</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_EOL</entry>
|
||||
<entry><constant>NCURSES_KEY_EOL</constant></entry>
|
||||
<entry>clear to end of line</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SF</entry>
|
||||
<entry><constant>NCURSES_KEY_SF</constant></entry>
|
||||
<entry>scroll one line forward</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SR</entry>
|
||||
<entry><constant>NCURSES_KEY_SR</constant></entry>
|
||||
<entry>scroll one line backward</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_NPAGE</entry>
|
||||
<entry><constant>NCURSES_KEY_NPAGE</constant></entry>
|
||||
<entry>next page</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_PPAGE</entry>
|
||||
<entry><constant>NCURSES_KEY_PPAGE</constant></entry>
|
||||
<entry>previous page</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_STAB</entry>
|
||||
<entry><constant>NCURSES_KEY_STAB</constant></entry>
|
||||
<entry>set tab</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_CTAB</entry>
|
||||
<entry><constant>NCURSES_KEY_CTAB</constant></entry>
|
||||
<entry>clear tab</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_CATAB</entry>
|
||||
<entry><constant>NCURSES_KEY_CATAB</constant></entry>
|
||||
<entry>clear all tabs</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SRESET</entry>
|
||||
<entry><constant>NCURSES_KEY_SRESET</constant></entry>
|
||||
<entry>soft (partial) reset</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_RESET</entry>
|
||||
<entry><constant>NCURSES_KEY_RESET</constant></entry>
|
||||
<entry>reset or hard reset</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_PRINT</entry>
|
||||
<entry><constant>NCURSES_KEY_PRINT</constant></entry>
|
||||
<entry>print</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_LL</entry>
|
||||
<entry><constant>NCURSES_KEY_LL</constant></entry>
|
||||
<entry>lower left</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_A1</entry>
|
||||
<entry><constant>NCURSES_KEY_A1</constant></entry>
|
||||
<entry>upper left of keypad</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_A3</entry>
|
||||
<entry><constant>NCURSES_KEY_A3</constant></entry>
|
||||
<entry>upper right of keypad</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_B2</entry>
|
||||
<entry><constant>NCURSES_KEY_B2</constant></entry>
|
||||
<entry>center of keypad</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_C1</entry>
|
||||
<entry><constant>NCURSES_KEY_C1</constant></entry>
|
||||
<entry>lower left of keypad</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_C3</entry>
|
||||
<entry><constant>NCURSES_KEY_C3</constant></entry>
|
||||
<entry>lower right of keypad</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_BTAB</entry>
|
||||
<entry><constant>NCURSES_KEY_BTAB</constant></entry>
|
||||
<entry>back tab</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_BEG</entry>
|
||||
<entry><constant>NCURSES_KEY_BEG</constant></entry>
|
||||
<entry>beginning</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_CANCEL</entry>
|
||||
<entry><constant>NCURSES_KEY_CANCEL</constant></entry>
|
||||
<entry>cancel</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_CLOSE</entry>
|
||||
<entry><constant>NCURSES_KEY_CLOSE</constant></entry>
|
||||
<entry>close</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_COMMAND</entry>
|
||||
<entry><constant>NCURSES_KEY_COMMAND</constant></entry>
|
||||
<entry>cmd (command)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_COPY</entry>
|
||||
<entry><constant>NCURSES_KEY_COPY</constant></entry>
|
||||
<entry>copy</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_CREATE</entry>
|
||||
<entry><constant>NCURSES_KEY_CREATE</constant></entry>
|
||||
<entry>create</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_END</entry>
|
||||
<entry><constant>NCURSES_KEY_END</constant></entry>
|
||||
<entry>end</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_EXIT</entry>
|
||||
<entry><constant>NCURSES_KEY_EXIT</constant></entry>
|
||||
<entry>exit</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_FIND</entry>
|
||||
<entry><constant>NCURSES_KEY_FIND</constant></entry>
|
||||
<entry>find</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_HELP</entry>
|
||||
<entry><constant>NCURSES_KEY_HELP</constant></entry>
|
||||
<entry>help</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_MARK</entry>
|
||||
<entry><constant>NCURSES_KEY_MARK</constant></entry>
|
||||
<entry>mark</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_MESSAGE</entry>
|
||||
<entry><constant>NCURSES_KEY_MESSAGE</constant></entry>
|
||||
<entry>message</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_MOVE</entry>
|
||||
<entry><constant>NCURSES_KEY_MOVE</constant></entry>
|
||||
<entry>move</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_NEXT</entry>
|
||||
<entry><constant>NCURSES_KEY_NEXT</constant></entry>
|
||||
<entry>next</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_OPEN</entry>
|
||||
<entry><constant>NCURSES_KEY_OPEN</constant></entry>
|
||||
<entry>open</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_OPTIONS</entry>
|
||||
<entry><constant>NCURSES_KEY_OPTIONS</constant></entry>
|
||||
<entry>options</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_PREVIOUS</entry>
|
||||
<entry><constant>NCURSES_KEY_PREVIOUS</constant></entry>
|
||||
<entry>previous</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_REDO</entry>
|
||||
<entry><constant>NCURSES_KEY_REDO</constant></entry>
|
||||
<entry>redo</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_REFERENCE</entry>
|
||||
<entry><constant>NCURSES_KEY_REFERENCE</constant></entry>
|
||||
<entry>ref (reference)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_REFRESH</entry>
|
||||
<entry><constant>NCURSES_KEY_REFRESH</constant></entry>
|
||||
<entry>refresh</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_REPLACE</entry>
|
||||
<entry><constant>NCURSES_KEY_REPLACE</constant></entry>
|
||||
<entry>replace</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_RESTART</entry>
|
||||
<entry><constant>NCURSES_KEY_RESTART</constant></entry>
|
||||
<entry>restart</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_RESUME</entry>
|
||||
<entry><constant>NCURSES_KEY_RESUME</constant></entry>
|
||||
<entry>resume</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SAVE</entry>
|
||||
<entry><constant>NCURSES_KEY_SAVE</constant></entry>
|
||||
<entry>save</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SBEG</entry>
|
||||
<entry><constant>NCURSES_KEY_SBEG</constant></entry>
|
||||
<entry>shiftet beg (beginning)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SCANCEL</entry>
|
||||
<entry><constant>NCURSES_KEY_SCANCEL</constant></entry>
|
||||
<entry>shifted cancel</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SCOMMAND</entry>
|
||||
<entry><constant>NCURSES_KEY_SCOMMAND</constant></entry>
|
||||
<entry>shifted command</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SCOPY</entry>
|
||||
<entry><constant>NCURSES_KEY_SCOPY</constant></entry>
|
||||
<entry>shifted copy</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SCREATE</entry>
|
||||
<entry><constant>NCURSES_KEY_SCREATE</constant></entry>
|
||||
<entry>shifted create</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SDC</entry>
|
||||
<entry><constant>NCURSES_KEY_SDC</constant></entry>
|
||||
<entry>shifted delete char</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SDL</entry>
|
||||
<entry><constant>NCURSES_KEY_SDL</constant></entry>
|
||||
<entry>shifted delete line</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SELECT</entry>
|
||||
<entry><constant>NCURSES_KEY_SELECT</constant></entry>
|
||||
<entry>select</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SEND</entry>
|
||||
<entry><constant>NCURSES_KEY_SEND</constant></entry>
|
||||
<entry>shifted end</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SEOL</entry>
|
||||
<entry><constant>NCURSES_KEY_SEOL</constant></entry>
|
||||
<entry>shifted end of line</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SEXIT</entry>
|
||||
<entry><constant>NCURSES_KEY_SEXIT</constant></entry>
|
||||
<entry>shifted exit</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SFIND</entry>
|
||||
<entry><constant>NCURSES_KEY_SFIND</constant></entry>
|
||||
<entry>shifted find</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SHELP</entry>
|
||||
<entry><constant>NCURSES_KEY_SHELP</constant></entry>
|
||||
<entry>shifted help</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SHOME</entry>
|
||||
<entry><constant>NCURSES_KEY_SHOME</constant></entry>
|
||||
<entry>shifted home</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SIC</entry>
|
||||
<entry><constant>NCURSES_KEY_SIC</constant></entry>
|
||||
<entry>shifted input</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SLEFT</entry>
|
||||
<entry><constant>NCURSES_KEY_SLEFT</constant></entry>
|
||||
<entry>shifted left arrow</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SMESSAGE</entry>
|
||||
<entry><constant>NCURSES_KEY_SMESSAGE</constant></entry>
|
||||
<entry>shifted message</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SMOVE</entry>
|
||||
<entry><constant>NCURSES_KEY_SMOVE</constant></entry>
|
||||
<entry>shifted move</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SNEXT</entry>
|
||||
<entry><constant>NCURSES_KEY_SNEXT</constant></entry>
|
||||
<entry>shifted next</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SOPTIONS</entry>
|
||||
<entry><constant>NCURSES_KEY_SOPTIONS</constant></entry>
|
||||
<entry>shifted options</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SPREVIOUS</entry>
|
||||
<entry><constant>NCURSES_KEY_SPREVIOUS</constant></entry>
|
||||
<entry>shifted previous</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SPRINT</entry>
|
||||
<entry><constant>NCURSES_KEY_SPRINT</constant></entry>
|
||||
<entry>shifted print</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SREDO</entry>
|
||||
<entry><constant>NCURSES_KEY_SREDO</constant></entry>
|
||||
<entry>shifted redo</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SREPLACE</entry>
|
||||
<entry><constant>NCURSES_KEY_SREPLACE</constant></entry>
|
||||
<entry>shifted replace</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SRIGHT</entry>
|
||||
<entry><constant>NCURSES_KEY_SRIGHT</constant></entry>
|
||||
<entry>shifted right arrow</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SRSUME</entry>
|
||||
<entry><constant>NCURSES_KEY_SRSUME</constant></entry>
|
||||
<entry>shifted resume</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SSAVE</entry>
|
||||
<entry><constant>NCURSES_KEY_SSAVE</constant></entry>
|
||||
<entry>shifted save</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_SSUSPEND</entry>
|
||||
<entry><constant>NCURSES_KEY_SSUSPEND</constant></entry>
|
||||
<entry>shifted suspend</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_UNDO</entry>
|
||||
<entry><constant>NCURSES_KEY_UNDO</constant></entry>
|
||||
<entry>undo</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_MOUSE</entry>
|
||||
<entry><constant>NCURSES_KEY_MOUSE</constant></entry>
|
||||
<entry>mouse event has occurred</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_KEY_MAX</entry>
|
||||
<entry><constant>NCURSES_KEY_MAX</constant></entry>
|
||||
<entry>maximum key value</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
@ -436,45 +436,45 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON1_RELEASED - NCURSES_BUTTON4_RELEASED</entry>
|
||||
<entry><constant>NCURSES_BUTTON1_RELEASED</constant> - <constant>NCURSES_BUTTON4_RELEASED</constant></entry>
|
||||
<entry>button (1-4) released</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON1_PRESSED - NCURSES_BUTTON4_PRESSED</entry>
|
||||
<entry><constant>NCURSES_BUTTON1_PRESSED</constant> - <constant>NCURSES_BUTTON4_PRESSED</constant></entry>
|
||||
<entry>button (1-4) pressed</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON1_CLICKED - NCURSES_BUTTON4_CLICKED</entry>
|
||||
<entry><constant>NCURSES_BUTTON1_CLICKED</constant> - <constant>NCURSES_BUTTON4_CLICKED</constant></entry>
|
||||
<entry>button (1-4) clicked</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON1_DOUBLE_CLICKED -
|
||||
NCURSES_BUTTON4_DOUBLE_CLICKED</entry>
|
||||
<entry><constant>NCURSES_BUTTON1_DOUBLE_CLICKED</constant> -
|
||||
<constant>NCURSES_BUTTON4_DOUBLE_CLICKED</constant></entry>
|
||||
<entry>button (1-4) double clicked</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON1_TRIPLE_CLICKED -
|
||||
NCURSES_BUTTON4_TRIPLE_CLICKED</entry>
|
||||
<entry><constant>NCURSES_BUTTON1_TRIPLE_CLICKED</constant> -
|
||||
<constant>NCURSES_BUTTON4_TRIPLE_CLICKED</constant></entry>
|
||||
<entry>button (1-4) triple clicked</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON_CTRL</entry>
|
||||
<entry><constant>NCURSES_BUTTON_CTRL</constant></entry>
|
||||
<entry>ctrl pressed during click</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON_SHIFT</entry>
|
||||
<entry><constant>NCURSES_BUTTON_SHIFT</constant></entry>
|
||||
<entry>shift pressed during click</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_BUTTON_ALT</entry>
|
||||
<entry><constant>NCURSES_BUTTON_ALT</constant></entry>
|
||||
<entry>alt pressed during click</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_ALL_MOUSE_EVENTS</entry>
|
||||
<entry><constant>NCURSES_ALL_MOUSE_EVENTS</constant></entry>
|
||||
<entry>report all mouse events</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>NCURSES_REPORT_MOUSE_POSITION</entry>
|
||||
<entry><constant>NCURSES_REPORT_MOUSE_POSITION</constant></entry>
|
||||
<entry>report mouse position</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<refentry xml:id="function.ncurses-cbreak" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>ncurses_cbreak</refname>
|
||||
|
@ -21,7 +21,7 @@
|
|||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns &true; or NCURSES_ERR if any error occurred.
|
||||
Returns &true; or <constant>NCURSES_ERR</constant> if any error occurred.
|
||||
</para>
|
||||
</refsect1>
|
||||
<refsect1 role="seealso">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<refentry xml:id="function.ncurses-mousemask" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>ncurses_mousemask</refname>
|
||||
|
@ -18,7 +18,7 @@
|
|||
reported.
|
||||
</para>
|
||||
<para>
|
||||
Mouse events are represented by NCURSES_KEY_MOUSE in the
|
||||
Mouse events are represented by <constant>NCURSES_KEY_MOUSE</constant> in the
|
||||
<function>ncurses_wgetch</function> input stream. To read the event data
|
||||
and pop the event of queue, call <function>ncurses_getmouse</function>.
|
||||
</para>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<!-- splitted from ./en/functions/net-gopher.xml, last change in rev -->
|
||||
<refentry xml:id="function.gopher-parsedir" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
|
@ -48,36 +48,36 @@
|
|||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
type - One of the
|
||||
<literal>type</literal> - One of the
|
||||
<literal>GOPHER_XXX</literal> constants.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
title - The name of the resource.
|
||||
<literal>title</literal> - The name of the resource.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
path - The path of the resource.
|
||||
<literal>path</literal> - The path of the resource.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
host - The domain name of the host that has
|
||||
<literal>host</literal> - The domain name of the host that has
|
||||
this document (or directory).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
port - The port at which to connect on
|
||||
<varname>host</varname>.
|
||||
<literal>port</literal> - The port at which to connect on
|
||||
<literal>host</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</para>
|
||||
<para>
|
||||
Upon failure, the additional <varname>data</varname> entry of the
|
||||
Upon failure, the additional <literal>data</literal> entry of the
|
||||
returned array will hold the parsed line.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<appendix xml:id="network.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.constants;
|
||||
&extension.constants.core;
|
||||
|
@ -14,36 +14,36 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>LOG_CONS</entry>
|
||||
<entry><constant>LOG_CONS</constant></entry>
|
||||
<entry>
|
||||
if there is an error while sending data to the system logger,
|
||||
write directly to the system console
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_NDELAY</entry>
|
||||
<entry><constant>LOG_NDELAY</constant></entry>
|
||||
<entry>
|
||||
open the connection to the logger immediately
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_ODELAY</entry>
|
||||
<entry><constant>LOG_ODELAY</constant></entry>
|
||||
<entry>
|
||||
(default) delay opening the connection until the first
|
||||
message is logged
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_NOWAIT</entry>
|
||||
<entry><constant>LOG_NOWAIT</constant></entry>
|
||||
<entry>
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_PERROR</entry>
|
||||
<entry><constant>LOG_PERROR</constant></entry>
|
||||
<entry>print log message also to standard error</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_PID</entry>
|
||||
<entry><constant>LOG_PID</constant></entry>
|
||||
<entry>include PID with each message</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
@ -61,54 +61,54 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>LOG_AUTH</entry>
|
||||
<entry><constant>LOG_AUTH</constant></entry>
|
||||
<entry>
|
||||
security/authorization messages (use LOG_AUTHPRIV instead
|
||||
security/authorization messages (use <constant>LOG_AUTHPRIV</constant> instead
|
||||
in systems where that constant is defined)
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_AUTHPRIV</entry>
|
||||
<entry><constant>LOG_AUTHPRIV</constant></entry>
|
||||
<entry>security/authorization messages (private)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_CRON</entry>
|
||||
<entry><constant>LOG_CRON</constant></entry>
|
||||
<entry>clock daemon (cron and at)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_DAEMON</entry>
|
||||
<entry><constant>LOG_DAEMON</constant></entry>
|
||||
<entry>other system daemons</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_KERN</entry>
|
||||
<entry><constant>LOG_KERN</constant></entry>
|
||||
<entry>kernel messages</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_LOCAL0 ... LOG_LOCAL7</entry>
|
||||
<entry><constant>LOG_LOCAL0 ... LOG_LOCAL7</constant></entry>
|
||||
<entry>reserved for local use, these are not available in Windows</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_LPR</entry>
|
||||
<entry><constant>LOG_LPR</constant></entry>
|
||||
<entry>line printer subsystem</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_MAIL</entry>
|
||||
<entry><constant>LOG_MAIL</constant></entry>
|
||||
<entry>mail subsystem</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_NEWS</entry>
|
||||
<entry><constant>LOG_NEWS</constant></entry>
|
||||
<entry>USENET news subsystem</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_SYSLOG</entry>
|
||||
<entry><constant>LOG_SYSLOG</constant></entry>
|
||||
<entry>messages generated internally by syslogd</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_USER</entry>
|
||||
<entry><constant>LOG_USER</constant></entry>
|
||||
<entry>generic user-level messages</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_UUCP</entry>
|
||||
<entry><constant>LOG_UUCP</constant></entry>
|
||||
<entry>UUCP subsystem</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
@ -126,35 +126,35 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>LOG_EMERG</entry>
|
||||
<entry><constant>LOG_EMERG</constant></entry>
|
||||
<entry>system is unusable</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_ALERT</entry>
|
||||
<entry><constant>LOG_ALERT</constant></entry>
|
||||
<entry>action must be taken immediately</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_CRIT</entry>
|
||||
<entry><constant>LOG_CRIT</constant></entry>
|
||||
<entry>critical conditions</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_ERR</entry>
|
||||
<entry><constant>LOG_ERR</constant></entry>
|
||||
<entry>error conditions</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_WARNING</entry>
|
||||
<entry><constant>LOG_WARNING</constant></entry>
|
||||
<entry>warning conditions</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_NOTICE</entry>
|
||||
<entry><constant>LOG_NOTICE</constant></entry>
|
||||
<entry>normal, but significant, condition</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_INFO</entry>
|
||||
<entry><constant>LOG_INFO</constant></entry>
|
||||
<entry>informational message</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>LOG_DEBUG</entry>
|
||||
<entry><constant>LOG_DEBUG</constant></entry>
|
||||
<entry>debug-level message</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
|
@ -171,52 +171,52 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
<row>
|
||||
<entry>DNS_A</entry>
|
||||
<entry><constant>DNS_A</constant></entry>
|
||||
<entry>IPv4 Address Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_MX</entry>
|
||||
<entry><constant>DNS_MX</constant></entry>
|
||||
<entry>Mail Exchanger Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_CNAME</entry>
|
||||
<entry><constant>DNS_CNAME</constant></entry>
|
||||
<entry>Alias (Canonical Name) Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_NS</entry>
|
||||
<entry><constant>DNS_NS</constant></entry>
|
||||
<entry>Authoritative Name Server Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_PTR</entry>
|
||||
<entry><constant>DNS_PTR</constant></entry>
|
||||
<entry>Pointer Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_HINFO</entry>
|
||||
<entry><constant>DNS_HINFO</constant></entry>
|
||||
<entry>Host Info Resource (See IANA's
|
||||
<link xlink:href="&url.iana.system-names;">Operating System Names</link>
|
||||
<link xlink:href="&url.iana.system-names;"><literal>Operating System Names</literal></link>
|
||||
for the meaning of these values)</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_SOA</entry>
|
||||
<entry><constant>DNS_SOA</constant></entry>
|
||||
<entry>Start of Authority Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_TXT</entry>
|
||||
<entry><constant>DNS_TXT</constant></entry>
|
||||
<entry>Text Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_ANY</entry>
|
||||
<entry><constant>DNS_ANY</constant></entry>
|
||||
<entry>Any Resource Record. On most systems
|
||||
this returns all resource records, however
|
||||
it should not be counted upon for critical
|
||||
uses. Try DNS_ALL instead.</entry>
|
||||
uses. Try <constant>DNS_ALL</constant> instead.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_AAAA</entry>
|
||||
<entry><constant>DNS_AAAA</constant></entry>
|
||||
<entry>IPv6 Address Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_ALL</entry>
|
||||
<entry><constant>DNS_ALL</constant></entry>
|
||||
<entry>Iteratively query the name server for
|
||||
each available record type.</entry>
|
||||
</row>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.29 $ -->
|
||||
<!-- $Revision: 1.30 $ -->
|
||||
<refentry xml:id="function.dns-get-record" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>dns_get_record</refname>
|
||||
|
@ -30,14 +30,15 @@
|
|||
<listitem>
|
||||
<para>
|
||||
<parameter>hostname</parameter> should be a valid DNS hostname such
|
||||
as "www.example.com". Reverse lookups can be generated using in-addr.arpa
|
||||
notation, but <function>gethostbyaddr</function> is more suitable for
|
||||
as "<literal>www.example.com</literal>". Reverse lookups can be generated
|
||||
using <literal>in-addr.arpa</literal> notation, but
|
||||
<function>gethostbyaddr</function> is more suitable for
|
||||
the majority of reverse lookups.
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
Per DNS standards, email addresses are given in user.host format (for
|
||||
example: hostmaster.example.com as opposed to hostmaster@example.com),
|
||||
Per DNS standards, email addresses are given in <literal>user.host</literal> format (for
|
||||
example: <literal>hostmaster.example.com</literal> as opposed to <literal>hostmaster@example.com</literal>),
|
||||
be sure to check this value and modify if necessary before using it
|
||||
with a functions such as <function>mail</function>.
|
||||
</para>
|
||||
|
@ -131,7 +132,7 @@
|
|||
<row>
|
||||
<entry>ttl</entry>
|
||||
<entry>
|
||||
Time To Live remaining for this record. This will <emphasis>not</emphasis> equal
|
||||
<literal>"Time To Live"</literal> remaining for this record. This will <emphasis>not</emphasis> equal
|
||||
the record's original ttl, but will rather equal the original ttl minus whatever
|
||||
length of time has passed since the authoritative name server was queried.
|
||||
</entry>
|
||||
|
@ -200,8 +201,8 @@
|
|||
referenced by this record.
|
||||
<literal>os</literal>: IANA number designating the Operating System on
|
||||
the machine referenced by this record.
|
||||
See IANA's <link xlink:href="&url.iana.system-names;">Operating System
|
||||
Names</link> for the meaning of these values.
|
||||
See IANA's <link xlink:href="&url.iana.system-names;"><literal>Operating System
|
||||
Names</literal></link> for the meaning of these values.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<!-- $Revision: 1.16 $ -->
|
||||
<refentry xml:id="function.setcookie" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>setcookie</refname>
|
||||
|
@ -48,7 +48,7 @@
|
|||
instead.
|
||||
</para>
|
||||
<para>
|
||||
See <link xlink:href="&spec.cookies;">Netscape cookie specification</link> for
|
||||
See <link xlink:href="&spec.cookies;"><literal>Netscape cookie specification</literal></link> for
|
||||
specifics on how each <function>setcookie</function> parameter works
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<!-- $Revision: 1.14 $ -->
|
||||
<refentry xml:id="function.nsapi-virtual" xmlns="http://docbook.org/ns/docbook">
|
||||
<refnamediv>
|
||||
<refname>nsapi_virtual</refname>
|
||||
|
@ -13,7 +13,8 @@
|
|||
</methodsynopsis>
|
||||
<para>
|
||||
<function>nsapi_virtual</function> is an NSAPI-specific function which
|
||||
is equivalent to <!--#include virtual...--> in SSI
|
||||
is equivalent to <literal><!--#include virtual...--></literal>
|
||||
in <acronym>SSI</acronym>
|
||||
(<filename>.shtml</filename> files). It does an NSAPI sub-request.
|
||||
It is useful for including CGI scripts or .shtml files, or anything
|
||||
else that you'd parse through webserver.
|
||||
|
|
Loading…
Reference in a new issue