mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
initial work on ircg extension docs
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@49431 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
f61467754a
commit
2e552ae911
1 changed files with 600 additions and 0 deletions
600
functions/ircg.xml
Normal file
600
functions/ircg.xml
Normal file
|
@ -0,0 +1,600 @@
|
|||
<reference id="ref.ircg">
|
||||
<title>IRC Gateway Functions</title>
|
||||
<titleabbrev>IRC Gateway</titleabbrev>
|
||||
<partintro>
|
||||
<para>
|
||||
Internet Relay Chat Gateway ...
|
||||
</para>
|
||||
</partintro>
|
||||
|
||||
<refentry id="function.ircg-pconnect">
|
||||
<refnamediv>
|
||||
<refname>ircg_pconnect</refname>
|
||||
<refpurpose>
|
||||
Connect to an IRC server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>resource <function>ircg_pconnect</function></funcdef>
|
||||
<paramdef>string <parameter>username</parameter></paramdef>
|
||||
<paramdef>string <parameter><optional>server_ip</optional></parameter></paramdef>
|
||||
<paramdef>int <parameter><optional>server_port</optional></parameter></paramdef>
|
||||
<paramdef>string <parameter><optional>msg_format</optional></parameter></paramdef>
|
||||
<paramdef>array <parameter><optional>ctcp_messages</optional></parameter></paramdef>
|
||||
<paramdef>array <parameter><optional>user_settings</optional></parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
<function>ircg_pconnect</function> will try to establish a connection to
|
||||
an IRC server and return a connection resource handle for further
|
||||
use.
|
||||
</para>
|
||||
<para>
|
||||
The only mandatory parameter is <parameter>username</parameter>,
|
||||
this will set your initial nicknake on the
|
||||
server. <parameter>server_ip</parameter> and
|
||||
<parameter>server_port</parameter> are optional and default to
|
||||
<literal>127.0.0.1</literal> and <literal>6667</literal>.
|
||||
<note>
|
||||
<para>
|
||||
For now parameter <parameter>server_ip</parameter> will not do
|
||||
any hostname lookups and will only accept IP addresses in
|
||||
numerical form.
|
||||
</para>
|
||||
</note>
|
||||
</para>
|
||||
<para>
|
||||
You can customize the output of IRC messages and events by
|
||||
selection a format string set previously created with
|
||||
<function>ircg_register_format_messages</function>
|
||||
by specifing the sets name in <parameter>msg_format</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
<parameter>ctcp_messages</parameter>
|
||||
</para>
|
||||
<para>
|
||||
<parameter>user_settings</parameter>
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_disconnect</function>,
|
||||
<function>ircg_is_conn_alive</function>,
|
||||
<function>ircg_register_format_messages</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-set-current">
|
||||
<refnamediv>
|
||||
<refname>ircg_set_current</refname>
|
||||
<refpurpose>
|
||||
Set current connection for output
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_set_current</function></funcdef>
|
||||
<paramdef>resource
|
||||
<parameter>connection</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Select the current connection for output in this execution
|
||||
context. Every output sent from the server connected to by
|
||||
<parameter>connection</parameter> will be copied to standard
|
||||
output while using default formating or a formar string set
|
||||
specified by <function>ircg_register_format_messages</function>
|
||||
and selected by <function>irct_lookup_format_messages</function>.
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_register_format_messages</function> and
|
||||
<function>ircg_lookup_format_messages</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-join">
|
||||
<refnamediv>
|
||||
<refname>ircg_join</refname>
|
||||
<refpurpose>
|
||||
Join a channel on a connected server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_join</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>channel</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Join the channel <parameter>channel</parameter> on the server
|
||||
connected to by <parameter>connection</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-part">
|
||||
<refnamediv>
|
||||
<refname>ircg_part</refname>
|
||||
<refpurpose>
|
||||
Leave a channel on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_part</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>channel</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Leave the channel <parameter>channel</parameter> on the server
|
||||
connected to by <parameter>connection</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-msg">
|
||||
<refnamediv>
|
||||
<refname>ircg_msg</refname>
|
||||
<refpurpose>
|
||||
Send message to channel or user on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_msg</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>recipient</parameter></paramdef>
|
||||
<paramdef>string <parameter>message</parameter></paramdef>
|
||||
<paramdef>boolean <parameter><optional>suppress</optional></parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
<function>ircg_msg</function> will send the message to a channel
|
||||
or user on the server connected to by
|
||||
<parameter>connection</parameter>. A
|
||||
<parameter>recipient</parameter> starting with
|
||||
<literal>#</literal> or <literal>&</literal> will send the
|
||||
<parameter>message</parameter> to a channel, anything else will
|
||||
be interpreted as a username.
|
||||
</para>
|
||||
<para>
|
||||
Setting the optional parameter <parameter>suppress</parameter> to
|
||||
a true value will suppress output of your message to your own
|
||||
<parameter>connection</parameter>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-notice">
|
||||
<refnamediv>
|
||||
<refname>ircg_notice</refname>
|
||||
<refpurpose>
|
||||
Send a notice to a user on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_notice</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter></parameter></paramdef>
|
||||
<paramdef>string <parameter>message</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
This function will send the <parameter>message</parameter> text
|
||||
to the user <parameter>nick</parameter> on the server connected
|
||||
to by <parameter>connection</parameter>. Query your IRC
|
||||
documentation of choice for the exact difference between a MSG
|
||||
and a NOTICE.
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-nick">
|
||||
<refnamediv>
|
||||
<refname>ircg_nick</refname>
|
||||
<refpurpose>
|
||||
Change nickname on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_nick</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>nick</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Change your nickname on the given
|
||||
<parameter>connection</parameter> to the one given in
|
||||
<parameter>nick</parameter> if possible.
|
||||
</para>
|
||||
<para>
|
||||
Will return true on success and false on failure.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-topic">
|
||||
<refnamediv>
|
||||
<refname>ircg_topic</refname>
|
||||
<refpurpose>
|
||||
Set topic for channel on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_topic</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>channel</parameter></paramdef>
|
||||
<paramdef>string <parameter>new_topic</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Change the topic for channel <parameter>channel</parameter> on
|
||||
the server connected to by <parameter>connection</parameter> to
|
||||
<parameter>new_topic</parameter>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-channel_mode">
|
||||
<refnamediv>
|
||||
<refname>ircg_channel_mode</refname>
|
||||
<refpurpose>
|
||||
Set channel mode flags for user
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_channel_mode</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>channel</parameter></paramdef>
|
||||
<paramdef>string <parameter>mode_spec</parameter></paramdef>
|
||||
<paramdef>string <parameter>nick</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Set channel mode flags for <parameter>channel</parameter> on
|
||||
server connected to by <parameter>channel</parameter>. Mode flags
|
||||
are passed in <parameter>mode_spec</parameter> and are applied to
|
||||
the user specified by <parameter>nick</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
Mode flags are set or cleared by specifind a mode character and
|
||||
prepending it with a plus or minus character
|
||||
respectively. E.g. operator mode is granted by '+o' and revoked
|
||||
by '-o' passed as <parameter>mode_spec</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-html-encode">
|
||||
<refnamediv>
|
||||
<refname>ircg_html_encode</refname>
|
||||
<refpurpose>
|
||||
Encode HTML preserving output modes as ...
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_html_encode</function></funcdef>
|
||||
<paramdef>string <parameter>html_string</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
...
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-whois">
|
||||
<refnamediv>
|
||||
<refname>ircg_whois</refname>
|
||||
<refpurpose>
|
||||
Query user information for nick on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_whois</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>nick</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
|
||||
</para>
|
||||
<para>
|
||||
See also:
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-kick">
|
||||
<refnamediv>
|
||||
<refname>ircg_kick</refname>
|
||||
<refpurpose>
|
||||
Kick a user out of a channel on server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_kick</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>channel</parameter></paramdef>
|
||||
<paramdef>string <parameter>nick</parameter></paramdef>
|
||||
<paramdef>string <parameter>reason</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Kick user <parameter>nick</parameter> from
|
||||
<parameter>channel</parameter> on server connected to by
|
||||
<parameter>connection</parameter>. <parameter>reason</parameter>
|
||||
should give a short message describing why this action was performed.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-ignore-add">
|
||||
<refnamediv>
|
||||
<refname>ircg_ignore_add</refname>
|
||||
<refpurpose>
|
||||
Add a user to your ignore list on a server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_ignore_add</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>nick</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
This function will add user <parameter>nick</parameter> to your
|
||||
ignore list on the server connected to by
|
||||
<parameter>connection</parameter>. By doing so you will suppress
|
||||
all messages from this user from being send to you.
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_ignore_del</function> .
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-ignore-del">
|
||||
<refnamediv>
|
||||
<refname>ircg_ignore_del</refname>
|
||||
<refpurpose>
|
||||
Remove a user from your ignore list on a server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_ignore_del</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>nick</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
This function remove user <parameter>nick</parameter> to your
|
||||
ignore list on the server connected to by
|
||||
<parameter>connection</parameter>.
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_ignore_add</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-disconnect">
|
||||
<refnamediv>
|
||||
<refname>ircg_disconnect</refname>
|
||||
<refpurpose>
|
||||
Close connection to server
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_disconnect</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
<paramdef>string <parameter>reason</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
<function>ircg_disconnect</function> will close a
|
||||
<parameter>connection</parameter> to a server previously
|
||||
established with <function>ircg-pconnect</function>.
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_pconnect</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-is-conn-alive">
|
||||
<refnamediv>
|
||||
<refname>ircg_is_conn_alive</refname>
|
||||
<refpurpose>
|
||||
Check connection status
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_is_conn_alive</function></funcdef>
|
||||
<paramdef>resource <parameter>connection</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
<function>ircg_is_conn_alive</function> returns true if
|
||||
<parameter>connection</parameter> is still alive and working or
|
||||
false if the server no longer talks to us.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-lookup-format-messages">
|
||||
<refnamediv>
|
||||
<refname>ircg_lookup_format_messages</refname>
|
||||
<refpurpose>
|
||||
Select a set of format strings for display of IRC messages
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_lookup_format_messages</function></funcdef>
|
||||
<paramdef>string <parameter>name</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
Select the set of format strings to use for display of IRC
|
||||
messages and events. Sets may be registered with
|
||||
<function>ircg_register_format_messages</function>, a default set
|
||||
named <literal>ircg</literal> is always available.
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_register_format_messages</function>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.ircg-register-format-messages">
|
||||
<refnamediv>
|
||||
<refname>ircg_register_format_messages</refname>
|
||||
<refpurpose>
|
||||
Register a set of format strings for display of IRC messages
|
||||
</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>boolean <function>ircg_register_format_messages</function></funcdef>
|
||||
<paramdef>string <parameter>name</parameter></paramdef>
|
||||
<paramdef>array <parameter>messages</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
With <function>ircg_register_format_messages</function> you can
|
||||
customize the way your IRC output looks like. You can even
|
||||
register different format string sets and switch between them on
|
||||
the fly with <function>ircg_lookup_format_messages</function>.
|
||||
</para>
|
||||
<para>
|
||||
<itemizedlist>
|
||||
<listitem><simpara>Plain channel message</simpara></listitem>
|
||||
<listitem><simpara>Private message received</simpara></listitem>
|
||||
<listitem><simpara>Private message sent</simpara></listitem>
|
||||
<listitem><simpara>Some user leaves channel</simpara></listitem>
|
||||
<listitem><simpara>Some user enters channel</simpara></listitem>
|
||||
<listitem><simpara>Some user was kicked from the channel</simpara></listitem>
|
||||
<listitem><simpara>Topic has been changed</simpara></listitem>
|
||||
<listitem><simpara>Error</simpara></listitem>
|
||||
<listitem><simpara>Fatal error</simpara></listitem>
|
||||
<listitem><simpara>Join list end(?)</simpara></listitem>
|
||||
<listitem><simpara>Self part(?)</simpara></listitem>
|
||||
<listitem><simpara>Some user changes his nick</simpara></listitem>
|
||||
<listitem><simpara>Some user quits his connection</simpara></listitem>
|
||||
<listitem><simpara>Mass join begin</simpara></listitem>
|
||||
<listitem><simpara>Mass join element</simpara></listitem>
|
||||
<listitem><simpara>Mass join end</simpara></listitem>
|
||||
<listitem><simpara>Whois user</simpara></listitem>
|
||||
<listitem><simpara>Whois server</simpara></listitem>
|
||||
<listitem><simpara>Whois server</simpara></listitem>
|
||||
<listitem><simpara>Whois idle</simpara></listitem>
|
||||
<listitem><simpara>Whois channel</simpara></listitem>
|
||||
<listitem><simpara>Whois end</simpara></listitem>
|
||||
<listitem><simpara>Voice status change on user</simpara></listitem>
|
||||
<listitem><simpara>Operator status change on user</simpara></listitem>
|
||||
<listitem><simpara>Banlist</simpara></listitem>
|
||||
<listitem><simpara>Banlist end</simpara></listitem>
|
||||
</itemizedlist>
|
||||
<itemizedlist>
|
||||
<listitem><simpara>%f - from</simpara></listitem>
|
||||
<listitem><simpara>%t - to</simpara></listitem>
|
||||
<listitem><simpara>%c - channel</simpara></listitem>
|
||||
<listitem><simpara>%r - plain message</simpara></listitem>
|
||||
<listitem><simpara>%m - encoded message</simpara></listitem>
|
||||
<listitem><simpara>%j - js encoded message</simpara></listitem>
|
||||
</itemizedlist>
|
||||
<itemizedlist>
|
||||
<listitem><simpara>1 - mod encode</simpara></listitem>
|
||||
<listitem><simpara>2 - nickname decode</simpara></listitem>
|
||||
</itemizedlist>
|
||||
</para>
|
||||
<para>
|
||||
See also: <function>ircg_lookup_format_messages</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
</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
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"../../manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
-->
|
Loading…
Reference in a new issue