diff options
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | doc/Makefile.am | 16 | ||||
-rwxr-xr-x | doc/buildxml.pl | 169 | ||||
-rw-r--r-- | doc/en/Makefile.am | 59 | ||||
-rw-r--r-- | doc/en/weechat.en.xml | 3483 | ||||
-rw-r--r-- | doc/fr/Makefile.am | 59 | ||||
-rw-r--r-- | doc/fr/weechat.fr.xml | 3542 | ||||
-rw-r--r-- | doc/weechat-doc.css | 49 | ||||
-rw-r--r-- | doc/weechat-html-one.xsl | 27 | ||||
-rw-r--r-- | doc/weechat-html.xsl | 27 | ||||
-rw-r--r-- | weechat/configure.in | 2 | ||||
-rw-r--r-- | weechat/doc/Makefile.am | 16 | ||||
-rwxr-xr-x | weechat/doc/buildxml.pl | 169 | ||||
-rw-r--r-- | weechat/doc/en/Makefile.am | 59 | ||||
-rw-r--r-- | weechat/doc/en/weechat.en.xml | 3483 | ||||
-rw-r--r-- | weechat/doc/fr/Makefile.am | 59 | ||||
-rw-r--r-- | weechat/doc/fr/weechat.fr.xml | 3542 | ||||
-rw-r--r-- | weechat/doc/weechat-doc.css | 49 | ||||
-rw-r--r-- | weechat/doc/weechat-html-one.xsl | 27 | ||||
-rw-r--r-- | weechat/doc/weechat-html.xsl | 27 |
20 files changed, 14844 insertions, 22 deletions
diff --git a/configure.in b/configure.in index 99794c467..3c98ee91f 100644 --- a/configure.in +++ b/configure.in @@ -402,6 +402,8 @@ esac AC_OUTPUT([Makefile doc/Makefile + doc/fr/Makefile + doc/en/Makefile src/Makefile src/common/Makefile src/irc/Makefile diff --git a/doc/Makefile.am b/doc/Makefile.am index ec9d20969..66ab6651e 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (c) 2003-2005 FlashCode <flashcode@flashtux.org> +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,17 +12,11 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # -man_MANS = weechat-curses.1 - -info_TEXINFOS = weechat_doc_fr.texi weechat_doc_en.texi \ - weechat_doc_es.texi weechat_doc_pt.texi +SUBDIRS = fr en -#weechat_TEXINFOS = weechat_doc_fr.texi weechat_doc_en.texi \ -# weechat_doc_es.texi weechat_doc_pt.texi - -AM_MAKEINFOHTMLFLAGS = --no-split --number-sections +man_MANS = weechat-curses.1 -EXTRA_DIST = $(man_MANS) +EXTRA_DIST = $(man_MANS) weechat-doc.css weechat-html-one.xsl weechat-html.xsl diff --git a/doc/buildxml.pl b/doc/buildxml.pl new file mode 100755 index 000000000..0b578c2bf --- /dev/null +++ b/doc/buildxml.pl @@ -0,0 +1,169 @@ +#!/usr/bin/perl +# +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +# +# Build some XML code for WeeChat doc +# with weechat-curses command +# + +@all_lang = ("fr_FR", "en_US"); +%all_encodings = ("fr_FR" => "iso-8859-1", + "en_US" => "iso-8859-1"); +%all_types = ("fr_FR" => "type", + "en_US" => "type", + "es_ES" => "tipo"); +%all_values = ("fr_FR" => "valeurs", + "en_US" => "values", + "es_ES" => "valores"); +%all_default = ("fr_FR" => "valeur par défaut", + "en_US" => "default values", + "es_ES" => "valor por defecto"); +%all_desc = ("fr_FR" => "description", + "en_US" => "description", + "es_ES" => "descripción"); + +foreach $lng (@all_lang) +{ + create_commands ($lng, $all_encodings{$lng}, + "weechat-curses -w | tail +3", "weechat_commands"); + create_commands ($lng, $all_encodings{$lng}, + "weechat-curses -i | tail +3", "irc_commands"); + create_key_func ($lng, $all_encodings{$lng}, + "weechat-curses -f | tail +3", "key_functions"); + create_config ($lng, $all_encodings{$lng}, + "weechat-curses -c | tail +3", "config"); + print "\n"; +} + +sub create_commands +{ + $lang = $_[0]; + $lang2 = substr ($lang, 0, 2); + $encoding = $_[1]; + $command = $_[2]; + $file = $_[3]; + print "Creating $lang2/$file.xml ($lang)...\n"; + open XML, ">$lang2/$file.xml" or die "Error: can't write file!"; + print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n"; + + $started = 0; + $ENV{"LANG"} = $lang; + foreach (`$command`) + { + if (/\* (.*)/) + { + print XML "</programlisting>\n" if ($started == 1); + $started = 1; + print XML "<command>$1</command>\n"; + print XML "<programlisting>"; + } + else + { + chomp ($_); + print XML "$_\n"; + } + } + print XML "</programlisting>\n"; + close XML; + iconv_file ($lang2."/".$file, $encoding); +} + +sub create_key_func +{ + $lang = $_[0]; + $lang2 = substr ($lang, 0, 2); + $encoding = $_[1]; + $command = $_[2]; + $file = $_[3]; + print "Creating $lang2/$file.xml ($lang)...\n"; + open XML, ">$lang2/$file.xml" or die "Error: can't write file!"; + print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n"; + + $ENV{"LANG"} = $lang; + foreach (`$command`) + { + if (/\* (.*): (.*)/) + { + print XML "<row>\n"; + print XML " <entry><literal>$1</literal></entry>\n"; + print XML " <entry>$2</entry>\n"; + print XML "</row>\n"; + } + } + close XML; + iconv_file ($lang2."/".$file, $encoding); +} + +sub create_config +{ + $lang = $_[0]; + $lang2 = substr ($lang, 0, 2); + $encoding = $_[1]; + $command = $_[2]; + $file = $_[3]; + print "Creating $lang2/$file.xml ($lang)...\n"; + open XML, ">$lang2/$file.xml" or die "Error: can't write file!"; + print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n"; + $type = ""; + $values = ""; + $default = ""; + $desc = ""; + + $ENV{"LANG"} = $lang; + foreach (`weechat-curses -c`) + { + if (/\* (.*):/) + { + print XML "<row>\n"; + print XML " <entry><option>$1</option></entry>\n"; + } + elsif (/ \. $all_types{$lang}: (.*)/) + { + $type = $1; + } + elsif (/ \. $all_values{$lang}: (.*)/) + { + $values = $1; + } + elsif (/ \. $all_default{$lang}: (.*)/) + { + $default = $1; + } + elsif (/ \. $all_desc{$lang}: (.*)/) + { + $_ = $1; + s/(.*)/\u$1/; + $desc = $_; + print XML " <entry>".$type."</entry>\n"; + print XML " <entry>".$values."</entry>\n"; + print XML " <entry>".$default."</entry>\n"; + print XML " <entry>".$desc."</entry>\n"; + print XML "</row>\n"; + } + } + close XML; + iconv_file ($lang2."/".$file, $encoding); +} + +sub iconv_file +{ + print "Converting $_[0].xml to $_[1]...\n"; + system ("iconv -t $encoding -o $_[0].xml.$_[1] $_[0].xml"); + system ("mv $_[0].xml.$_[1] $_[0].xml"); +} diff --git a/doc/en/Makefile.am b/doc/en/Makefile.am new file mode 100644 index 000000000..6baa7cc0d --- /dev/null +++ b/doc/en/Makefile.am @@ -0,0 +1,59 @@ +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +LANGCODE = en +BOOK = weechat.$(LANGCODE) +BOOK_INCLUDE = weechat_commands.xml irc_commands.xml key_functions.xml config.xml + +EXTRA_DIST = $(BOOK).xml $(BOOK_INCLUDE) + +docdir = $(datadir)/doc/$(PACKAGE) + +all-local: html-stamp + +# HTML output with chunks (many pages) + +html: html-stamp + +html-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html.xsl ../weechat-doc.css + mkdir -p html/ + xsltproc -o html/ ../weechat-html.xsl $(BOOK).xml || true + cp ../weechat-doc.css html/ + touch html-stamp + +# HTML output, all in one page + +html1: html1-stamp + +html1-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html-one.xsl ../weechat-doc.css + mkdir -p html1/ + xsltproc -o html1/$(BOOK).html ../weechat-html-one.xsl $(BOOK).xml || true + cp ../weechat-doc.css html1/ + touch html1-stamp + +# install docs + +install-data-hook: + $(mkinstalldirs) $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + $(INSTALL_DATA) html/* $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + +# clean + +clean-local: + -rm -f *.html *.pdf *.txt + -rm -rf html/ html1/ + -rm -f html-stamp html1-stamp diff --git a/doc/en/weechat.en.xml b/doc/en/weechat.en.xml new file mode 100644 index 000000000..6ac8678c7 --- /dev/null +++ b/doc/en/weechat.en.xml @@ -0,0 +1,3483 @@ +<?xml version="1.0" encoding="iso-8859-1"?> + +<!-- + +WeeChat documentation (english version) + +Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org> + +This manual is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This manual is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +--> + +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"file:///usr/share/xml/docbook/schema/dtd/4.2/docbookx.dtd" +[ + <!ENTITY config.xml SYSTEM "config.xml"> + <!ENTITY weechat_commands.xml SYSTEM "weechat_commands.xml"> + <!ENTITY irc_commands.xml SYSTEM "irc_commands.xml"> + <!ENTITY key_functions.xml SYSTEM "key_functions.xml"> +]> + +<book lang="en"> + + <bookinfo> + + <title>WeeChat 0.1.7-cvs - User guide</title> + <subtitle>Fast, light and extensible IRC client</subtitle> + + <author> + <firstname>Sébastien</firstname> + <surname>Helleu</surname> + <email>flashcode AT flashtux.org</email> + </author> + + <copyright> + <year>2006</year> + <holder>Sébastien Helleu</holder> + </copyright> + + <legalnotice> + <para> + This manual is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + </para> + <para> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </para> + <para> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA + </para> + </legalnotice> + + <abstract> + <para> + This manual documents WeeChat IRC client, it is part of WeeChat. + </para> + <para> + Latest version of this document can be found on this page: + <ulink url="http://weechat.flashtux.org/doc.php"> + http://weechat.flashtux.org/doc.php + </ulink> + </para> + </abstract> + + </bookinfo> + + <!-- =========================== Introduction =========================== --> + + <chapter id="chapIntroduction"> + <title>Introduction</title> + + <para> + This chapter describes WeeChat and pre-requisites for its installation. + </para> + + <section id="secDescription"> + <title>Description</title> + + <para> + WeeChat (Wee Enhanced Environment for Chat) is a free + <acronym>IRC</acronym> client, fast and light, designed for many + operating systems. + </para> + + <para> + Main features are: + <itemizedlist> + <listitem> + <para> + multi-servers connection (with SSL, IPv6, proxy) + </para> + </listitem> + <listitem> + <para> + many GUI: Curses, wxWidgets, Gtk and Qt + </para> + </listitem> + <listitem> + <para> + small, fast and light + </para> + </listitem> + <listitem> + <para> + customizable and extensible with plugins and scripts + </para> + </listitem> + <listitem> + <para> + compliant with <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2810.txt">2810</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2811.txt">2811</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> and + <ulink url="http://www.ietf.org/rfc/rfc2813.txt">2813</ulink> + </para> + </listitem> + <listitem> + <para> + multi-platform (GNU/Linux, *BSD, MacOS X, Windows and other) + </para> + </listitem> + <listitem> + <para> + 100% GPL, free software + </para> + </listitem> + </itemizedlist> + </para> + + <para> + WeeChat homepage is here: + <ulink url="http://weechat.flashtux.org"> + http://weechat.flashtux.org + </ulink> + </para> + + </section> + + <section id="secPreRequis"> + <title>Pre-requisites</title> + + <para> + In order to install WeeChat, you <emphasis>need</emphasis>: + <itemizedlist> + <listitem> + <para> + a running GNU/Linux system (with compiler tools for source + package) + </para> + </listitem> + <listitem> + <para> + "root" privileges (to install WeeChat) + </para> + </listitem> + <listitem> + <para> + according to GUI, one of the following libraries: + <itemizedlist> + <listitem> + <para> + Curses: ncurses library + </para> + </listitem> + <listitem> + <para> + Gtk: <emphasis>*** GUI not developed ***</emphasis> + </para> + </listitem> + <listitem> + <para> + WxWidgets: <emphasis>*** GUI not developed ***</emphasis> + </para> + </listitem> + <listitem> + <para> + Qt: <emphasis>*** GUI not developed ***</emphasis> + </para> + </listitem> + </itemizedlist> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + </chapter> + + <!-- =========================== Installation =========================== --> + + <chapter id="chapInstallation"> + <title>Installation</title> + + <para> + This chapter explains how to install WeeChat. + </para> + + <section id="secBinaryPackages"> + <title>Binary packages</title> + + <para> + Binary packages are available for these distributions: + <itemizedlist> + <listitem> + <para> + Debian (or any Debian compatible distribution): + <userinput>apt-get install weechat</userinput> + </para> + </listitem> + <listitem> + <para> + Mandriva/RedHat (or any RPM compatible distribution): + <userinput> + rpm -i /chemin/weechat-x.y.z-1.i386.rpm + </userinput> + </para> + </listitem> + <listitem> + <para> + Gentoo : + <userinput>emerge weechat</userinput> + </para> + </listitem> + </itemizedlist> + + For other distributions, please look at your manual for + installation instructions. + </para> + + </section> + + <section id="secSourcePackage"> + <title>Source package</title> + + <para> + All you have to do is to run in a console or a terminal: +<screen><prompt>$ </prompt><userinput>./configure</userinput> +<prompt>$ </prompt><userinput>make</userinput></screen> + </para> + <para> + Then get root privileges and install WeeChat: +<screen><prompt>$ </prompt><userinput>su</userinput> +(enter root password) +<prompt># </prompt><userinput>make install</userinput></screen> + </para> + + </section> + + <section id="secCVSSources"> + <title>CVS sources</title> + + <para> + Warning: CVS sources are for advanced users: it may not compile + or not be stable. You're warned! + </para> + + <para> + To get CVS sources, issue this command: +<screen><prompt>$ </prompt><userinput>cvs -z3 -d:pserver:anonymous@cvs.savannah.nongnu.org:/sources/weechat co weechat</userinput></screen> + </para> + + <para> + Execute this script: + <userinput>./autogen.sh</userinput> + </para> + + <para> + Then follow instructions for source package + (see <xref linkend="secSourcePackage" />) + </para> + + </section> + + </chapter> + + <!-- ============================== Usage =============================== --> + + <chapter id="chapUsage"> + <title>Usage</title> + + <para> + This chapter explains how to run WeeChat, the default key bindings + used, internal and IRC commands, setup file, and FIFO pipe use. + </para> + + <section id="secRunWeeChat"> + <title>Run WeeChat</title> + + <para> + Command line arguments: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Parameter</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>-a, --no-connect</literal></entry> + <entry> + Disable auto-connect to servers at startup + </entry> + </row> + <row> + <entry><literal>-c, --config</literal></entry> + <entry> + Display config help (list of options) + </entry> + </row> + <row> + <entry><literal>-f, --key-functions</literal></entry> + <entry> + Display WeeChat internal functions for keys + </entry> + </row> + <row> + <entry><literal>-h, --help</literal></entry> + <entry> + Display help + </entry> + </row> + <row> + <entry><literal>-i, --irc-commands</literal></entry> + <entry> + Display IRC commands list + </entry> + </row> + <row> + <entry><literal>-k, --keys</literal></entry> + <entry> + Display WeeChat default keys + </entry> + </row> + <row> + <entry><literal>-l, --license</literal></entry> + <entry> + Display WeeChat license + </entry> + </row> + <row> + <entry><literal>-p, --no-plugin</literal></entry> + <entry> + Disable plugins auto-load + </entry> + </row> + <row> + <entry><literal>-v, --version</literal></entry> + <entry> + Display WeeChat version + </entry> + </row> + <row> + <entry><literal>-w, --weechat-commands</literal></entry> + <entry> + Display WeeChat commands list + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + It is also possible to give URL for one or many IRC servers, as + follow: + <screen>irc[6][s]://[pseudo[:mot_passe]@]irc.example.org[:port][/channel][,channel[...]</screen> + Example to join #weechat and #toto on + "<literal>irc.freenode.net</literal>" server, default port (6667), + with "nono" nick: + <screen><prompt>$ </prompt><userinput>weechat-curses irc://nono@irc.freenode.net/#weechat,#toto</userinput></screen> + </para> + + <para> + To start WeeChat, issue this command: + <itemizedlist> + <listitem> + <para> + for Curses GUI: <userinput>weechat-curses</userinput> + </para> + </listitem> + <listitem> + <para> + for Gtk GUI: <userinput>weechat-gtk</userinput> + </para> + </listitem> + <listitem> + <para> + for wxWidgets GUI: <userinput>weechat-wxwidgets</userinput> + </para> + </listitem> + <listitem> + <para> + for Qt GUI: <userinput>weechat-qt</userinput> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + When you run WeeChat for the first time, a default configuration + file is created, with default options. + The default configuration file is: + "<literal>~/.weechat/weechat.rc</literal>" + </para> + + <para> + You can edit thie file at your convenience to configure WeeChat + (ONLY if WeeChat is not running), or you can set parameters with + "<literal>/set</literal>" command in WeeChat + (see <xref linkend="secWeeChatCommands" />) + </para> + + </section> + + <section id="secKeyboardShortcuts"> + <title>Key bindings</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Key</entry> + <entry>Action</entry> + </row> + </thead> + <tbody> + <row> + <entry>Left arrow</entry> + <entry> + Go to previous char in command line + </entry> + </row> + <row> + <entry>Right arrow</entry> + <entry> + Go to next char in command line + </entry> + </row> + <row> + <entry>Ctrl + left arrow</entry> + <entry> + Go to previous word in command line + </entry> + </row> + <row> + <entry>Ctrl + right arrow</entry> + <entry> + Go to next word in command line + </entry> + </row> + <row> + <entry>Home / Ctrl + A</entry> + <entry> + Go to the beginning of command line + </entry> + </row> + <row> + <entry>End / Ctrl + E</entry> + <entry> + Go to the end of command line + </entry> + </row> + <row> + <entry>Ctrl + K</entry> + <entry> + Delete from cursor until end of command line + </entry> + </row> + <row> + <entry>Ctrl + L</entry> + <entry> + Redraw whole window + </entry> + </row> + <row> + <entry>Ctrl + U</entry> + <entry> + Delete from cursor until beginning of command line + </entry> + </row> + <row> + <entry>Ctrl + W</entry> + <entry> + Delete previous word of command line + </entry> + </row> + <row> + <entry>Backspace</entry> + <entry> + Delete previous char in command line + </entry> + </row> + <row> + <entry>Delete</entry> + <entry> + Delete next char in command line + </entry> + </row> + <row> + <entry>Tab</entry> + <entry> + Complete command or nick + (Tab again: find next completion) + </entry> + </row> + <row> + <entry>Any char</entry> + <entry> + Insert char at cursor position in command line + </entry> + </row> + <row> + <entry>Enter</entry> + <entry> + Execute command or send message + </entry> + </row> + <row> + <entry>Up arrow / Down arrow</entry> + <entry> + Call again last commands/messages + </entry> + </row> + <row> + <entry>Ctrl + up arrow / Ctrl + down arrow</entry> + <entry> + Call again last commands/messages in global history + (common for all buffers) + </entry> + </row> + <row> + <entry>PageUp / PageDown</entry> + <entry> + Show buffer history + </entry> + </row> + <row> + <entry>F5 / Alt + left arrow</entry> + <entry> + Switch to previous buffer + </entry> + </row> + <row> + <entry>F6 / Alt + right arrow</entry> + <entry> + Switch to next buffer + </entry> + </row> + <row> + <entry>F7</entry> + <entry> + Switch to previous window + </entry> + </row> + <row> + <entry>F8</entry> + <entry> + Switch to next window + </entry> + </row> + <row> + <entry>F10</entry> + <entry> + Remove last infobar message + </entry> + </row> + <row> + <entry>F11 / F12</entry> + <entry> + Scroll nicklist + </entry> + </row> + <row> + <entry>Alt + Home / Alt + End</entry> + <entry> + Go to the beginning / the end of nicklist + </entry> + </row> + <row> + <entry>Alt + A</entry> + <entry> + Switch to next buffer with activity + (with priority: highlight, message, other) + </entry> + </row> + <row> + <entry>Alt + B</entry> + <entry> + Go to previous word in command line + </entry> + </row> + <row> + <entry>Alt + D</entry> + <entry> + Delete next word in command line + </entry> + </row> + <row> + <entry>Alt + F</entry> + <entry> + Go to next word in command line + </entry> + </row> + <row> + <entry>Alt + H</entry> + <entry> + Clear hotlist + (activity notification on other buffers) + </entry> + </row> + <row> + <entry>Alt + J then Alt + D</entry> + <entry> + Display DCC buffer + </entry> + </row> + <row> + <entry>Alt + J then Alt + L</entry> + <entry> + Switch to last buffer + </entry> + </row> + <row> + <entry>Alt + J then Alt + S</entry> + <entry> + Switch to server buffer + </entry> + </row> + <row> + <entry>Alt + J puis Alt + X</entry> + <entry> + Switch to first channel of next buffer + (or server buffer if no channel is opened) + </entry> + </row> + <row> + <entry>Alt + digit (0-9)</entry> + <entry> + Switch to buffer by number (0 = 10) + </entry> + </row> + <row> + <entry>Alt + J then number (01-99)</entry> + <entry> + Switch to buffer by number + </entry> + </row> + <row> + <entry>Alt + K</entry> + <entry> + Grab a key and insert its code in command line + </entry> + </row> + <row> + <entry>Alt + N</entry> + <entry> + Scroll to next highlight + </entry> + </row> + <row> + <entry>Alt + P</entry> + <entry> + Scroll to previous highlight + </entry> + </row> + <row> + <entry>Alt + R</entry> + <entry> + Delete entire command line + </entry> + </row> + <row> + <entry>Alt + S</entry> + <entry> + Switch servers on servers buffer + (if option "look_one_server_buffer" is enabled) + </entry> + </row> + <row> + <entry>Alt + U</entry> + <entry> + Scroll to first unread line in buffer + </entry> + </row> + <row> + <entry>Alt + W then Alt + flèche</entry> + <entry> + Switch to window with direction + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secWeeChatIRCCommands"> + <title>WeeChat / IRC commands</title> + + <para> + This chapter lists all WeeChat and IRC commands. + </para> + + <section id="secWeeChatCommands"> + <title>WeeChat commands</title> + + <para> + &weechat_commands.xml; + </para> + + </section> + + <section id="secKeyFunctions"> + <title>Key functions</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Function</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &key_functions.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secIRCCommands"> + <title>IRC commands</title> + + <para> + &irc_commands.xml; + </para> + + </section> + + </section> + + <section id="secConfigurationFile"> + <title>Configuration file</title> + + <para> + List of options for config file: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Option</entry> + <entry>Type</entry> + <entry>Values</entry> + <entry>Default</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &config.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + Colors for Curses GUI are: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Keyword</entry> + <entry>Color</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>default</literal></entry> + <entry>default color (transparent for background)</entry> + </row> + <row> + <entry><literal>black</literal></entry> + <entry>black</entry> + </row> + <row> + <entry><literal>red</literal></entry> + <entry>dark red</entry> + </row> + <row> + <entry><literal>lightred</literal></entry> + <entry>light red</entry> + </row> + <row> + <entry><literal>green</literal></entry> + <entry>dark green</entry> + </row> + <row> + <entry><literal>lightgreen</literal></entry> + <entry>light green</entry> + </row> + <row> + <entry><literal>brown</literal></entry> + <entry>brown</entry> + </row> + <row> + <entry><literal>yellow</literal></entry> + <entry>yellow</entry> + </row> + <row> + <entry><literal>blue</literal></entry> + <entry>dark blue</entry> + </row> + <row> + <entry><literal>lightblue</literal></entry> + <entry>light blue</entry> + </row> + <row> + <entry><literal>magenta</literal></entry> + <entry>dark magenta</entry> + </row> + <row> + <entry><literal>lightmagenta</literal></entry> + <entry>light magenta</entry> + </row> + <row> + <entry><literal>cyan</literal></entry> + <entry>dark cyan</entry> + </row> + <row> + <entry><literal>lightcyan</literal></entry> + <entry>light cyan</entry> + </row> + <row> + <entry><literal>white</literal></entry> + <entry>white</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secFIFOpipe"> + <title>FIFO pipe</title> + + <para> + You can remote control WeeChat, by sending commands or text to a + FIFO pipe (you have to enable option "irc_fifo_pipe", it is disabled + by default). + </para> + + <para> + The FIFO pipe is located in "<literal>~/.weechat/</literal>" and is + called "weechat_fifo_xxxxx" (where xxxxx is the process ID (PID) of + running WeeChat). So if many WeeChat are running, you have many FIFO + pipes, one for each session. + </para> + + <para> + The syntax for the FIFO pipe commands/text is: + <screen>server,channel *text or command here</screen> + where server and channel are optional, but if channel is here, server + should be too. + </para> + + <para> + Some examples: + <itemizedlist> + <listitem> + <para> + nick change on freenode to "mynick|out" : + <screen><prompt>$ </prompt><userinput>echo "freenode */nick mynick|out" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + display text on #weechat channel: + <screen><prompt>$ </prompt><userinput>echo "freenode,#weechat *hello everybody!" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + display text on current channel (buffer displayed by WeeChat): + <screen><prompt>$ </prompt><userinput>echo "*hello!" >~/.weechat/weechat_fifo_12345</userinput></screen> + <emphasis>Warning:</emphasis> this is dangerous and you should + not do that except if you know what you do! + </para> + </listitem> + <listitem> + <para> + send two commands to unload/reload Perl scripts (you have to + separate them with "\n"): + <screen><prompt>$ </prompt><userinput>echo -e "freenode */perl unload\nfreenode */perl autoload" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + You can write a script to send command to all running WeeChat at same + time, for example: +<screen> +#!/bin/sh +if [ $# -eq 1 ]; then + for fifo in $(/bin/ls ~/.weechat/weechat_fifo_* 2>/dev/null); do + echo -e "$1" >$fifo + done +fi +</screen> + If the script is called "auto_weechat_command", you can run it with: + <screen><prompt>$ </prompt><userinput>./auto_weechat_command "freenode,#weechat *hello"</userinput></screen> + </para> + + </section> + + </chapter> + + <!-- ============================ Extensions ============================ --> + + <chapter id="chapPlugins"> + <title>Plugins</title> + + <para> + This chapter describes WeeChat plugins interface (API) and + the default scripts plugins (Perl, Python, Ruby), provided with + WeeChat. + </para> + + <section id="secPluginsInWeeChat"> + <title>Plugins in WeeChat</title> + + <para> + A plugin is a C program which can call WeeChat functions defined in + an interface. + </para> + + <para> + This C program does not need WeeChat sources to compile and can be + dynamically loaded into WeeChat with command + <command>/plugin</command>. + </para> + + <para> + The plugin has to be a dynamic library, for dynamic loading by + operating system. + Under GNU/Linux, the file has ".so" extension, ".dll" under + Windows. + </para> + + </section> + + <section id="secWriteAPlugin"> + <title>Write a plugin</title> + + <para> + The plugin has to include "weechat-plugin.h" file (available in + WeeChat source code). + This file defines structures and types used to communicate with + WeeChat. + </para> + + <para> + The plugin must have some variables and functions (mandatory, + without them the plugin can't load): + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Variable</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>char plugin_name[]</literal></entry> + <entry>plugin name</entry> + </row> + <row> + <entry><literal>char plugin_version[]</literal></entry> + <entry>plugin version</entry> + </row> + <row> + <entry><literal>char plugin_description[]</literal></entry> + <entry>short description of plugin</entry> + </row> + </tbody> + </tgroup> + </informaltable> + + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Function</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>int weechat_plugin_init (t_weechat_plugin *plugin)</literal></entry> + <entry> + function called when plugin is loaded, must return + PLUGIN_RC_OK if successful, PLUGIN_RC_KO if error + (if error, plugin will NOT be loaded) + </entry> + </row> + <row> + <entry><literal>void weechat_plugin_end (t_weechat_plugin *plugin)</literal></entry> + <entry>function called when plugin is unloaded</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <section id="secAPIFunctions"> + <title>API functions</title> + + <section id="secAPI_ascii_strcasecmp"> + <title>ascii_strcasecmp</title> + + <para> + Prototype: + <command> + int ascii_strcasecmp (t_weechat_plugin *plugin, + char *string1, char *string2) + </command> + </para> + <para> + Locale and case independent string comparison. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>string1</option>: first string for comparison + </para> + </listitem> + <listitem> + <para> + <option>string2</option>: second string for comparison + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: difference between two strings: negative if + string1 < string2, zero if string1 == string2, positive if + string1 > string2 + </para> + <para> + Example: + <screen>if (plugin->ascii_strcasecmp (plugin, "abc", "def") != 0) ...</screen> + </para> + </section> + + <section id="secAPI_ascii_strncasecmp"> + <title>ascii_strncasecmp</title> + + <para> + Prototype: + <command> + int ascii_strncasecmp (t_weechat_plugin *plugin, + char *string1, char *string2, int max) + </command> + </para> + <para> + Locale and case independent string comparison, for "max" chars. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin struct + </para> + </listitem> + <listitem> + <para> + <option>string1</option>: first string for comparison + </para> + </listitem> + <listitem> + <para> + <option>string2</option>: second string for comparison + </para> + </listitem> + <listitem> + <para> + <option>max</option>: max number of chars for comparison + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: difference between two strings: negative if + string1 < string2, zero if string1 == string2, positive if + string1 > string2 + </para> + <para> + Example: + <screen>if (plugin->ascii_strncasecmp (plugin, "abc", "def", 2) != 0) ...</screen> + </para> + </section> + + <section id="secAPI_explode_string"> + <title>explode_string</title> + + <para> + Prototype: + <command> + char **explode_string (t_weechat_plugin *plugin, char *string, + char *separators, int num_items_max, int *num_items) + </command> + </para> + <para> + Explode a string according to one or more delimiter(s). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin struct + </para> + </listitem> + <listitem> + <para> + <option>string</option>: string to explode + </para> + </listitem> + <listitem> + <para> + <option>separators</option>: delimiters used for explosion + </para> + </listitem> + <listitem> + <para> + <option>num_items_max</option>: maximum number of items + created (0 = no limit) + </para> + </listitem> + <listitem> + <para> + <option>num_items</option>: pointer to int which will + contain number of items created + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: array of strings, NULL if problem. + </para> + <para> + Note: result has to be free by a call to "free_exloded_string" + after use. + </para> + <para> + Example: +<screen> +char **argv; +int argc; +argv = plugin->explode_string (plugin, string, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_free_exploded_string"> + <title>free_exploded_string</title> + + <para> + Prototype: + <command> + char **free_exploded_string (t_weechat_plugin *plugin, + char **string) + </command> + </para> + <para> + Free memory used by a string explosion. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>string</option>: string exploded by + "explode_string" function + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: +<screen> +char *argv; +int argc; +argv = plugin->explode_string (plugin, string, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_exec_on_files"> + <title>exec_on_files</title> + + <para> + Prototype: + <command> + void exec_on_files (t_weechat_plugin *plugin, char *repertoire, + int (*callback)(t_weechat_plugin *, char *)) + </command> + </para> + <para> + Execute a function on all files of a directory. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer tu plugin structure + </para> + </listitem> + <listitem> + <para> + <option>directory</option>: directory for searching files + </para> + </listitem> + <listitem> + <para> + <option>callback</option>: function called for each file + found + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: +<screen> +int callback (t_weechat_plugin *plugin, char *file) +{ + plugin->printf_server (plugin, "file: %s", file); + return 1; +} +... +plugin->exec_on_files (plugin, "/tmp", &callback); +</screen> + </para> + </section> + + <section id="secAPI_printf"> + <title>printf</title> + + <para> + Prototype: + <command> + void printf (t_weechat_plugin *plugin, + char *server, char *channel, char *message, ...) + </command> + </para> + <para> + Display a message on a WeeChat buffer, identified by server and + channel (both may be NULL for current buffer). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server to find + buffer for message display (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel to find buffer + for message display (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Examples: +<screen> +plugin->printf (plugin, NULL, NULL, "hello"); +plugin->printf (plugin, NULL, "#weechat", "hello"); +plugin->printf (plugin, "freenode", "#weechat", "hello"); +</screen> + </para> + </section> + + <section id="secAPI_printf_server"> + <title>printf_server</title> + + <para> + Prototype: + <command> + void printf_server (t_weechat_plugin *plugin, + char *message, ...) + </command> + </para> + <para> + Display a message on current server buffer. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: <screen>plugin->printf_server (plugin, "hello");</screen> + </para> + </section> + + <section id="secAPI_printf_infobar"> + <title>printf_infobar</title> + + <para> + Prototype: + <command> + void printf_infobar (t_weechat_plugin *plugin, + int time, char *message, ...) + </command> + </para> + <para> + Display a message in infobar for a specified time. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>time</option>: time (in seconds) for displaying + message (0 = never erased) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: +<screen> +plugin->printf_infobar (plugin, 5, "hello"); +</screen> + </para> + </section> + + <section id="secAPI_msg_handler_add"> + <title>msg_handler_add</title> + + <para> + Prototype: + <command> + t_plugin_handler *msg_handler_add (t_weechat_plugin + *plugin, char *message, t_plugin_handler_func *function, + char *handler_args, void *handler_pointer) + </command> + </para> + <para> + Add an IRC message handler, called when an IRC message is + received. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>message</option>: name of IRC message. + To know list of IRC messages, please consult + <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> and + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function called when message + is received + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option>: arguments given to function + when called + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option>: pointer given to function + when called + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: pointer to new message handler. + </para> + <para> + Note: function called when message is received has to return + one of following values: + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal>: function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal>: function successfully + completed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal>: message + will not be sent to WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal>: message + will not be sent to other plugins + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal>: message + will not be sent to WeeChat neither other plugins + </para> + </listitem> + </itemizedlist> + </para> + <para> + Example: +<screen> +int msg_kick (t_weechat_plugin *plugin, char *server, char *command, + char *arguments, char *handler_args, void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, "KICK received"); + return PLUGIN_RC_OK; +} +... +plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); +</screen> + </para> + </section> + + <section id="secAPI_cmd_handler_add"> + <title>cmd_handler_add</title> + + <para> + Prototype: + <command> + t_plugin_handler *cmd_handler_add (t_weechat_plugin + *plugin, char *command, char *description, char *arguments, + char *arguments_description, char *completion_template, + t_plugin_handler_func *fonction, char *handler_args, + void *handler_pointer) + </command> + </para> + <para> + Add a WeeChat command handler, called when user uses command + (for example /command). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>command</option>: the new command name, which + may be an existing command (be careful, replaced command + will not be available until plugin is unloaded) + </para> + </listitem> + <listitem> + <para> + <option>description</option>: short command description + (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>arguments</option>: short description of command + arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option>: long description + of command arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>completion_template</option>: template for + completion, like "<literal>abc|%w def|%i</literal>" + which means "abc" or a WeeChat command for first argument, + "def" or IRC command for second. + An empty string lets WeeChat complete any argument with + a nick from current channel, NULL disable completion for + all command arguments. + </para> + <para> + Following codes can be used: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Code</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>%-</literal></entry> + <entry>no completion for argument</entry> + </row> + <row> + <entry><literal>%a</literal></entry> + <entry>alias</entry> + </row> + <row> + <entry><literal>%A</literal></entry> + <entry> + alias and commandes (WeeChat, IRC and plugins) + </entry> + </row> + <row> + <entry><literal>%c</literal></entry> + <entry>current channel</entry> + </row> + <row> + <entry><literal>%C</literal></entry> + <entry>channels of current server</entry> + </row> + <row> + <entry><literal>%f</literal></entry> + <entry>filename</entry> + </row> + <row> + <entry><literal>%h</literal></entry> + <entry>plugins commands</entry> + </row> + <row> + <entry><literal>%i</literal></entry> + <entry>IRC commands (sent)</entry> + </row> + <row> + <entry><literal>%I</literal></entry> + <entry>IRC commands (received)</entry> + </row> + <row> + <entry><literal>%k</literal></entry> + <entry>key functions</entry> + </row> + <row> + <entry><literal>%n</literal></entry> + <entry>nicks of current channel</entry> + </row> + <row> + <entry><literal>%o</literal></entry> + <entry>setup options</entry> + </row> + <row> + <entry><literal>%p</literal></entry> + <entry>default "part" message</entry> + </row> + <row> + <entry><literal>%q</literal></entry> + <entry>default "quit" message</entry> + </row> + <row> + <entry><literal>%s</literal></entry> + <entry>current server name</entry> + </row> + <row> + <entry><literal>%S</literal></entry> + <entry>all servers names</entry> + </row> + <row> + <entry><literal>%t</literal></entry> + <entry>topic of current channel</entry> + </row> + <row> + <entry><literal>%v</literal></entry> + <entry>setup option value</entry> + </row> + <row> + <entry><literal>%w</literal></entry> + <entry>WeeChat commands</entry> + </row> + <row> + <entry><literal>%y</literal></entry> + <entry>default "away" message</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function called when command + is executed + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option>: arguments given to function + when called + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option>: pointer given to function + when called + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: pointer to new command handler. + </para> + <para> + Note: function called when command is executed has to return + one of following values: + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal>: function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal>: function successfulle + completed + </para> + </listitem> + </itemizedlist> + </para> + <para> + Example: +<screen> +int cmd_test (t_weechat_plugin *plugin, char *server, + char *command, char *arguments, char *handler_args, + void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, + "test command, nick: %s", + (arguments) ? arguments : "none"); + return PLUGIN_RC_OK; +} +... +plugin->cmd_handler_add (plugin, "test", "Test command", + "[nick]", "nick: nick of channel", + "%n", &cmd_test, NULL, NULL); +</screen> + </para> + </section> + + <section id="secAPI_handler_remove"> + <title>handler_remove</title> + + <para> + Prototype: + <command> + void handler_remove (t_weechat_plugin *plugin, + t_plugin_handler *handler) + </command> + </para> + <para> + Remove a handler. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>handler</option>: handler to remove + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: + <screen>plugin->handler_remove (plugin, my_handler);</screen> + </para> + </section> + + <section id="secAPI_handler_remove_all"> + <title>handler_remove_all</title> + + <para> + Prototype: + <command> + void handler_remove_all (t_weechat_plugin *plugin) + </command> + </para> + <para> + Remove all handlers for a plugin. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: + <screen>plugin->handler_remove_all (plugin);</screen> + </para> + </section> + + <section id="secAPI_exec_command"> + <title>exec_command</title> + + <para> + Prototype: + <command> + void exec_command (t_weechat_plugin + *plugin, char *server, char *channel, char *command) + </command> + </para> + <para> + Execute a WeeChat command (or send a message to a channel). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + executing command (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel for executing + command (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>command</option>: command + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Examples: +<screen> +plugin->exec_command (plugin, NULL, NULL, "/help nick"); +plugin->exec_command (plugin, "freenode", "#weechat", "hello"); +</screen> + </para> + </section> + + <section id="secAPI_get_info"> + <title>get_info</title> + + <para> + Prototype: + <command> + char *get_info (t_weechat_plugin *plugin, + char *info, char *server) + </command> + </para> + <para> + Return an info about WeeChat or a channel. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>info</option> : name of info to read: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Info</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>version</literal></entry> + <entry>WeeChat's version</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>nick</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry> + name of channel (NULL for a server or private) + </entry> + </row> + <row> + <entry><literal>server</literal></entry> + <entry>name of server</entry> + </row> + <row> + <entry><literal>away</literal></entry> + <entry>"away" flag</entry> + </row> + <row> + <entry><literal>weechat_dir</literal></entry> + <entry> + WeeChat home dir + (by default: ~/.weechat/) + </entry> + </row> + <row> + <entry><literal>weechat_libdir</literal></entry> + <entry>WeeChat system lib directory</entry> + </row> + <row> + <entry><literal>weechat_sharedir</literal></entry> + <entry>WeeChat system share directory</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + reading info (if needed) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: information asked, NULL if not found. + </para> + <para> + Note: result has to be free by a call to "free" function after + use. + </para> + <para> + Examples: +<screen> +char *version = plugin->get_info (plugin, "version", NULL); +char *nick = plugin->get_info (plugin, "nick", "freenode"); +</screen> + </para> + </section> + + <section id="secAPI_get_dcc_info"> + <title>get_dcc_info</title> + + <para> + Prototype: + <command> + t_plugin_info_dcc *get_dcc_info (t_weechat_plugin *plugin) + </command> + </para> + <para> + Return list of DCC currently active or finished. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: linked list of DCC. + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Field</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>server</literal></entry> + <entry>IRC server</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry>IRC channel</entry> + </row> + <row> + <entry><literal>type</literal></entry> + <entry> + DCC type: + 0 = chat received, + 1 = chat sent, + 2 = file received, + 3 = file sent + </entry> + </row> + <row> + <entry><literal>status</literal></entry> + <entry> + DCC status: + 0 = waiting, + 1 = connecting, + 2 = active, + 3 = finished, + 4 = failed, + 5 = interrupted by user + </entry> + </row> + <row> + <entry><literal>start_time</literal></entry> + <entry>date/time of DCC creation</entry> + </row> + <row> + <entry><literal>start_transfer</literal></entry> + <entry>date/time of DCC transfert start</entry> + </row> + <row> + <entry><literal>addr</literal></entry> + <entry>IP address of remote user</entry> + </row> + <row> + <entry><literal>port</literal></entry> + <entry>port used for DCC</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>remote nick</entry> + </row> + <row> + <entry><literal>filename</literal></entry> + <entry>file name</entry> + </row> + <row> + <entry><literal>local_filename</literal></entry> + <entry>local file name</entry> + </row> + <row> + <entry><literal>size</literal></entry> + <entry>file size</entry> + </row> + <row> + <entry><literal>pos</literal></entry> + <entry>position in file</entry> + </row> + <row> + <entry><literal>start_resume</literal></entry> + <entry>start position after interruption</entry> + </row> + <row> + <entry><literal>bytes_per_sec</literal></entry> + <entry> + number of bytes per second since transfert start + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + <para> + Note: result has to be free by a call to "free_dcc_info" function + after use. + </para> + <para> + Examples: +<screen> +t_plugin_dcc_info *dcc_info = plugin->get_dcc_info (plugin); +for (ptr_dcc = dcc_info; ptr_dcc; ptr_dcc = ptr_dcc->next_dcc) +{ + plugin->printf_server (plugin, "DCC type=%d, with: %s", + ptr_dcc->type, ptr_dcc->nick); +} +if (dcc_info) + plugin->free_dcc_info (plugin, dcc_info); +</screen> + </para> + </section> + + <section id="secAPI_free_dcc_info"> + <title>free_dcc_info</title> + + <para> + Prototype : + <command> + void free_dcc_info (t_weechat_plugin *plugin, + t_plugin_dcc_info *dcc_info) + </command> + </para> + <para> + Free memory used by a DCC list. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>dcc_info</option>: pointer to DCC list returned by + "get_dcc_info" function + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: + <screen>plugin->free_dcc_info (plugin, dcc_info);</screen> + </para> + </section> + + <section id="secAPI_get_config"> + <title>get_config</title> + + <para> + Prototype : + <command> + char *get_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Return value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: option value, NULL if not found. + </para> + <para> + Note: result has to be free by a call to "free" function after + use. + </para> + <para> + Examples: +<screen> +char *value1 = plugin->get_config (plugin, "look_set_title"); +char *value2 = plugin->get_config (plugin, "freenode.server_autojoin"); +</screen> + </para> + </section> + + <section id="secAPI_set_config"> + <title>set_config</title> + + <para> + Prototype: + <command> + int set_config (t_weechat_plugin *plugin, + char *option, char *value) + </command> + </para> + <para> + Update value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an + error occured. + </para> + <para> + Example: +<screen> +plugin->set_config (plugin, "look_nicklist", "off"); +</screen> + </para> + </section> + + <section id="secAPI_get_plugin_config"> + <title>get_plugin_config</title> + + <para> + Prototype: + <command> + char *get_plugin_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Return value of a plugin option. + Option is read from file "<literal>~/.weechat/plugins.rc</literal>" + and is like: "<literal>plugin.option=value</literal>" + (note: plugin name is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: option value, NULL if not found. + </para> + <para> + Note: result has to be free by a call to "free" function after + use. + </para> + <para> + Example: +<screen> +char *value = plugin->get_plugin_config (plugin, "my_var"); +</screen> + </para> + </section> + + <section id="secAPI_set_plugin_config"> + <title>set_plugin_config</title> + + <para> + Prototype: + <command> + int set_plugin_config (t_weechat_plugin *plugin, + char *option, char *value) + </command> + </para> + <para> + Update value of a plugin option. + Option is written in file "<literal>~/.weechat/plugins.rc</literal>" + and is like: "<literal>plugin.option=value</literal>" + (note: plugin name is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an + error occurred. + </para> + <para> + Example : +<screen> +plugin->set_plugin_config (plugin, "my_var", "value"); +</screen> + </para> + </section> + + </section> + + <section id="secCompilePlugin"> + <title>Compile plugin</title> + + <para> + Compile does not need WeeChat sources, only file + "<literal>weechat-plugin.h</literal>". + </para> + + <para> + To compile a plugin which has one file "toto.c" (sous GNU/Linux): +<screen> +<prompt>$ </prompt><userinput>gcc -fPIC -Wall -c toto.c</userinput> +<prompt>$ </prompt><userinput>gcc -shared -fPIC -o libtoto.so toto.o</userinput> +</screen> + </para> + + </section> + + <section id="secLoadPlugin"> + <title>Load plugin into WeeChat</title> + + <para> + Copy "libtoto.so" file into system plugins dir (for example + "<literal>/usr/local/lib/weechat/plugins</literal>") or into + user's plugins dir (for example + "<literal>/home/xxxxx/.weechat/plugins</literal>"). + </para> + + <para> + Under WeeChat: + <screen><userinput>/plugin load toto</userinput></screen> + </para> + + </section> + + <section id="secPluginExample"> + <title>Plugin example</title> + + <para> + Full example of plugin, which adds a /double command, which displays + two times arguments on current channel (ok that's not very useful, but + that's just an example!): +<screen> +#include <stdlib.h> + +#include "weechat-plugin.h" + +char plugin_name[] = "Double"; +char plugin_version[] = "0.1"; +char plugin_description[] = "Test plugin for WeeChat"; + +/* gestionnaire de commande "/double" */ + +int double_cmd (t_weechat_plugin *plugin, char *server, + char *command, char *arguments, + char *handler_args, void *handler_pointer) +{ + if (arguments && arguments[0] && (arguments[0] != '/')) + { + plugin->exec_command (plugin, NULL, NULL, arguments); + plugin->exec_command (plugin, NULL, NULL, arguments); + } + return PLUGIN_RC_OK; +} + +int weechat_plugin_init (t_weechat_plugin *plugin) +{ + plugin->cmd_handler_add (plugin, "double", + "Display two times a message", + "msg", + "msg: message to display two times", + NULL, + &double_cmd, + NULL, NULL); + return PLUGIN_RC_OK; +} + +void weechat_plugin_end (t_weechat_plugin *plugin) +{ + /* nothing done here */ +} +</screen> + </para> + + </section> + + </section> + + <section id="secScriptsPlugins"> + <title>Scripts plugins</title> + + <para> + Three plugins are provided with WeeChat to use script languages: + Perl, Python and Ruby. + </para> + + <section id="secLoadUnloadScripts"> + <title>Load / unload scripts</title> + + <para> + Scripts are loaded and unloaded with <command>/perl</command>, + <command>/python</command> and <command>/ruby</command> commands + (type <command>/help</command> in WeeChat for help about commands). + </para> + + <para> + Examples: + <itemizedlist> + <listitem> + <para> + Load a Perl script: + <command><userinput>/perl load /tmp/test.pl</userinput></command> + </para> + </listitem> + <listitem> + <para> + List all loaded Perl scripts: + <command><userinput>/perl</userinput></command> + </para> + </listitem> + <listitem> + <para> + Load a Python script: + <command><userinput>/python load /tmp/test.py</userinput></command> + </para> + </listitem> + <listitem> + <para> + List all loaded Python scripts: + <command><userinput>/python</userinput></command> + </para> + </listitem> + <listitem> + <para> + Load a Ruby script: + <command><userinput>/ruby load /tmp/test.rb</userinput></command> + </para> + </listitem> + <listitem> + <para> + List all loaded Ruby scripts: + <command><userinput>/ruby</userinput></command> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secWeeChatScriptsAPI"> + <title>WeeChat / scripts API</title> + + <section> + <title>register</title> + + <para> + Perl prototype: + <command> + weechat::register ( name, version, end_function, description ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.register ( name, version, end_function, description ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.register ( name, version, end_function, description ) + </command> + </para> + <para> + This is first function to call in script. + All WeeChat scripts have to call this function. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>name</option>: unique name to identify script + (each script must have unique name) + </para> + </listitem> + <listitem> + <para> + <option>version</option>: script version + </para> + </listitem> + <listitem> + <para> + <option>end_function</option>: function called when script is + unloaded (optional parameter, empty string means nothing is + called at the end) + </para> + </listitem> + <listitem> + <para> + <option>description</option>: short description of script + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if script was registered, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::register ("test", "1.0", "end_test", "Test script!"); + +# python +weechat.register ("test", "1.0", "end_test", "Test script!") + +# ruby +Weechat.register ("test", "1.0", "end_test", "Test script!") +</screen> + </para> + </section> + + <section> + <title>print</title> + + <para> + Perl prototype: + <command> + weechat::print ( message, [channel, [server]] ) + </command> + </para> + <para> + Python prototype: + <command> + weechat.prnt ( message, [channel, [server]] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.print ( message, [channel, [server]] ) + </command> + </para> + <para> + Display a message on a WeeChat buffer, identified by server + and channel. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel to find buffer + for message display + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server to find + buffer for message display + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::print ("message"); +weechat::print ("message", "#weechat"); +weechat::print ("message", "#weechat", "freenode"); + +# python +weechat.prnt ("message") +weechat.prnt ("message", "#weechat") +weechat.prnt ("message", "#weechat", "freenode") + +# ruby +Weechat.print ("message") +Weechat.print ("message", "#weechat") +Weechat.print ("message", "#weechat", "freenode") +</screen> + </para> + </section> + + <section> + <title>print_infobar</title> + + <para> + Perl prototype: + <command> + weechat::print_infobar ( time, message ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.print_infobar ( time, message ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.print_infobar ( time, message ) + </command> + </para> + <para> + Display a message in infobar for a specified time. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>time</option>: time (in seconds) for displaying + message (0 = never erased) + </para> + </listitem> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::print_infobar (5, "message"); + +# python +weechat.print_infobar (5, "message") + +# ruby +Weechat.print_infobar (5, "message") +</screen> + </para> + </section> + + <section> + <title>add_message_handler</title> + + <para> + Perl prototype: + <command> + weechat::add_message_handler ( message, function ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.add_message_handler ( message, function ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.add_message_handler ( message, function ) + </command> + </para> + <para> + Add an IRC message handler, called when an IRC message is + received. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>message</option>: name of IRC message. To know list + of IRC messages, please consult <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> and + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function called when message is + received + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::add_message_handler ("privmsg", my_function); +sub my_function +{ + weechat::print ("server=$_[0]\n"); + ($null, $channel, $message) = split ":",$_[1],3; + ($mask, $null, $channel) = split " ", $channel; + weechat::print ("mask=$mask, channel=$channel, msg=$message\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_message_handler ("privmsg", my_function) +def ma_fonction(server, args): + weechat.prnt("server="+serveur) + null, channel, message = string.split(args, ":", 2) + masque, null, channel = string.split(string.strip(channel), " ", 2) + weechat.prnt("mask="+mask+", canal="+channel+", message="+message) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Note: function called when message is received has to return one + of following values (prefixed by weechat::" for Perl, "weechat." + for Python or "Weechat." for Ruby): + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal>: function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal>: function successfully + completed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal>: message + will not be sent to WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal>: message + will not be sent to other plugins + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal>: message + will not be sent to WeeChat neither other plugins + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>add_command_handler</title> + + <para> + Perl prototype: + <command> + weechat::add_command_handler ( command, function, + [description, arguments, arguments_description, + completion_template] ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.add_command_handler ( command, function, + [description, arguments, arguments_description, + completion_template] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.add_command_handler ( command, function, + [description, arguments, arguments_description, + completion_template] ) + </command> + </para> + <para> + Add a WeeChat command handler, called when user uses command + (for example /command). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>command</option>: the new command name, which + may be an existing command (be careful, replaced command + will not be available until script is unloaded) + </para> + </listitem> + <listitem> + <para> + <option>function</option>: fonction appelée lorsque la + commande est exécutée + </para> + </listitem> + <listitem> + <para> + <option>arguments</option>: short description of command + arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option>: long description + of command arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>completion_template</option>: template for + completion, like "<literal>abc|%w def|%i</literal>" which + means "abc" or a WeeChat command for first argument, + "def" or IRC command for second. + (see <xref linkend="secAPI_cmd_handler_add" />) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::add_command_handler ("command", my_command); +sub my_command +{ + weechat::print("Server: $_[0], arguments: $_[1]\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_command_handler ("command", my_command) +def ma_commande(server, args): + weechat.prnt("server:"+serveur+" arguments:"+args) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Notes: function called when command is executed has to return one + of following values (prefixed by "weechat::" for Perl, "weechat." + for Python or "Weechat." for Ruby): + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : function successfully + completed + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>remove_handler</title> + + <para> + Perl prototype: + <command> + weechat::remove_handler ( name, function ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.remove_handler ( name, function ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.remove_handler ( name, function ) + </command> + </para> + <para> + Remove a handler. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>name</option>: name of IRC message or command + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::remove_handler ("command", my_command); + +# python +weechat.remove_handler ("command", my_command) + +# ruby +Weechat.remove_handler ("command", my_command) +</screen> + </para> + </section> + + <section> + <title>command</title> + + <para> + Perl prototype: + <command> + weechat::command ( command, [channel, [server]] ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.command ( command, [channel, [server]] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.command ( command, [channel, [server]] ) + </command> + </para> + <para> + Execute a WeeChat command (or send a message to a channel). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>command</option>: command + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel for executing + command + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + executing command + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::command ("hello everybody!"); +weechat::command ("/kick toto please leave this channel", "#weechat"); +weechat::command ("/nick newnick", "", "freenode"); + +# python +weechat.command ("hello everybody!") +weechat.command ("/kick toto please leave this channel", "#weechat") +weechat.command ("/nick newnick", "", "freenode") + +# ruby +Weechat.command ("hello everybody!") +Weechat.command ("/kick toto please leave this channel", "#weechat") +Weechat.command ("/nick newnick", "", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_info</title> + + <para> + Perl prototype: + <command> + weechat::get_info ( name, [server] ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_info ( name, [server] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.get_info ( name, [server] ) + </command> + </para> + <para> + Return an info about WeeChat or a channel. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>name</option>: name of info to read + (see <xref linkend="secAPI_get_info" />) + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + reading info (if needed) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: information asked, empty string if an error + occured + </para> + <para> + Examples: +<screen> +# perl +$version = get_info("version"); +$nick = get_info("nick", "freenode"); + +# python +version = weechat.get_info ("version") +nick = weechat.get_info ("nick", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_dcc_info</title> + + <para> + Perl prototype: + <command> + weechat::get_dcc_info ( ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_dcc_info ( ) + </command> + </para> + <para> + Ruby prototype : + <command> + Weechat.get_dcc_info ( ) + </command> + </para> + <para> + Return list of DCC currently active or finished. + </para> + <para> + Return value: list of DCC + (see <xref linkend="secAPI_get_dcc_info" />). + </para> + </section> + + <section> + <title>get_config</title> + + <para> + Perl prototype: + <command> + weechat::get_config ( option ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_config ( option ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.get_config ( option ) + </command> + </para> + <para> + Return value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: option value, empty string if not found. + </para> + <para> + Examples: +<screen> +# perl +$value1 = weechat::get_config ("look_nicklist"); +$value2 = weechat::get_config ("freenode.server_autojoin"); + +# python +value1 = weechat.get_config ("look_nicklist") +value2 = weechat.get_config ("freenode.server_autojoin") +</screen> + </para> + </section> + + <section> + <title>set_config</title> + + <para> + Perl prototype: + <command> + weechat::set_config ( option, value ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.set_config ( option, value ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.set_config ( option, value ) + </command> + </para> + <para> + Update value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an error + occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::set_config ("look_nicklist", "off"); +weechat::set_config ("freenode.server_autojoin, "#weechat"); + +# python +weechat.set_config ("look_nicklist", "off") +weechat.set_config ("freenode.server_autojoin, "#weechat") + +# ruby +Weechat.set_config ("look_nicklist", "off") +Weechat.set_config ("freenode.server_autojoin, "#weechat") +</screen> + </para> + </section> + + <section> + <title>get_plugin_config</title> + + <para> + Perl prototype: + <command> + weechat::get_plugin_config ( option ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Return value of a plugin option. Option is read from file + "<literal>~/.weechat/plugins.rc</literal>" and is like: + "<literal>plugin.option=value</literal>" (note: plugin name + is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: value of option, empty string if not found. + </para> + <para> + Examples : +<screen> +# perl +$value = weechat::get_plugin_config ("my_var"); + +# python +value = weechat.get_plugin_config ("my_var") +</screen> + </para> + </section> + + <section> + <title>set_plugin_config</title> + + <para> + Perl prototype: + <command> + weechat::set_plugin_config ( option, valeur ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Update value of a plugin option. Option is written in file + "<literal>~/.weechat/plugins.rc</literal>" and is like: + "<literal>plugin.option=value</literal>" (note: plugin name + is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an error + occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::set_plugin_config ("my_var", "value"); + +# python +weechat.set_plugin_config ("my_var", "value") + +# ruby +Weechat.set_plugin_config ("my_var", "value") +</screen> + </para> + </section> + + </section> + + </section> + + </chapter> + + <!-- ======================== Auteurs / Support ========================= --> + + <chapter id="chapAuthorsSupport"> + <title>Authors / Support</title> + + <para> + This chapter lists authors and contributors for WeeChat, and + shows ways to get support. + </para> + + <section id="secAuthors"> + <title>Authors</title> + + <para> + WeeChat is developed by: + <itemizedlist> + <listitem> + <para> + <emphasis>FlashCode (Sébastien Helleu)</emphasis> + <email>flashcode AT flashtux.org</email> - + main developer + </para> + </listitem> + <listitem> + <para> + <emphasis>Kolter</emphasis> + <email>kolter AT free.fr</email> - + developer + </para> + </listitem> + <listitem> + <para> + <emphasis>Ptitlouis</emphasis> + <email>ptitlouis AT sysif.net</email> - + Debian packager + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secContributors"> + <title>Contributors</title> + + <para> + Following people contributed to WeeChat: + <itemizedlist> + <listitem> + <para> + <emphasis>Jiri Golembiovsky</emphasis> - + czech translation + </para> + </listitem> + <listitem> + <para> + <emphasis>Rudolf Polzer</emphasis> - + patches + </para> + </listitem> + <listitem> + <para> + <emphasis>Jim Ramsay</emphasis> - + patches + </para> + </listitem> + <listitem> + <para> + <emphasis>Pistos</emphasis> - + patches + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secSupport"> + <title>Get support</title> + + <para> + Before asking for support, be sure you've read documentation and FAQ + provided with WeeChat (documentation is this document, if you don't + read all lines until this sentence, you can start again!) + </para> + + <para> + <itemizedlist> + <listitem> + <para> + IRC: server "<literal>irc.freenode.net</literal>", + channel "<literal>#weechat</literal>" + </para> + </listitem> + <listitem> + <para> + WeeChat forum: + <ulink url="http://forums.flashtux.org"> + http://forums.flashtux.org + </ulink> + </para> + </listitem> + <listitem> + <para> + Mailing list: + <itemizedlist> + <listitem> + <para> + To subscribe: + <ulink url="http://mail.nongnu.org/mailman/listinfo/weechat-support"> + http://mail.nongnu.org/mailman/listinfo/weechat-support + </ulink> + </para> + </listitem> + <listitem> + <para> + To send a mail on mailing list: + <email>weechat-support@nongnu.org</email> + </para> + </listitem> + </itemizedlist> + Mailing list archives are available here: + <ulink url="http://mail.nongnu.org/archive/html/weechat-support"> + http://mail.nongnu.org/archive/html/weechat-support + </ulink> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + </chapter> + +</book> diff --git a/doc/fr/Makefile.am b/doc/fr/Makefile.am new file mode 100644 index 000000000..52e9ad23b --- /dev/null +++ b/doc/fr/Makefile.am @@ -0,0 +1,59 @@ +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +LANGCODE = fr +BOOK = weechat.$(LANGCODE) +BOOK_INCLUDE = weechat_commands.xml irc_commands.xml key_functions.xml config.xml + +EXTRA_DIST = $(BOOK).xml $(BOOK_INCLUDE) + +docdir = $(datadir)/doc/$(PACKAGE) + +all-local: html-stamp + +# HTML output with chunks (many pages) + +html: html-stamp + +html-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html.xsl ../weechat-doc.css + mkdir -p html/ + xsltproc -o html/ ../weechat-html.xsl $(BOOK).xml || true + cp ../weechat-doc.css html/ + touch html-stamp + +# HTML output, all in one page + +html1: html1-stamp + +html1-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html-one.xsl ../weechat-doc.css + mkdir -p html1/ + xsltproc -o html1/$(BOOK).html ../weechat-html-one.xsl $(BOOK).xml || true + cp ../weechat-doc.css html1/ + touch html1-stamp + +# install docs + +install-data-hook: + $(mkinstalldirs) $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + $(INSTALL_DATA) html/* $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + +# clean + +clean-local: + -rm -f *.html *.pdf *.txt + -rm -rf html/ html1/ + -rm -f html-stamp html1-stamp diff --git a/doc/fr/weechat.fr.xml b/doc/fr/weechat.fr.xml new file mode 100644 index 000000000..e809b9c04 --- /dev/null +++ b/doc/fr/weechat.fr.xml @@ -0,0 +1,3542 @@ +<?xml version="1.0" encoding="iso-8859-1"?> + +<!-- + +WeeChat documentation (french version) + +Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org> + +This manual is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This manual is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +--> + +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"file:///usr/share/xml/docbook/schema/dtd/4.2/docbookx.dtd" +[ + <!ENTITY config.xml SYSTEM "config.xml"> + <!ENTITY weechat_commands.xml SYSTEM "weechat_commands.xml"> + <!ENTITY irc_commands.xml SYSTEM "irc_commands.xml"> + <!ENTITY key_functions.xml SYSTEM "key_functions.xml"> +]> + +<book lang="fr"> + + <bookinfo> + + <title>WeeChat 0.1.7-cvs - Guide utilisateur</title> + <subtitle>Client IRC rapide, léger et extensible</subtitle> + + <author> + <firstname>Sébastien</firstname> + <surname>Helleu</surname> + <email>flashcode AT flashtux.org</email> + </author> + + <copyright> + <year>2006</year> + <holder>Sébastien Helleu</holder> + </copyright> + + <legalnotice> + <para> + This manual is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + </para> + <para> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </para> + <para> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA + </para> + </legalnotice> + + <abstract> + <para> + Ce manuel documente le client IRC WeeChat, il fait partie de WeeChat. + </para> + <para> + La dernière version de ce document peut être téléchargée + sur cette page : + <ulink url="http://weechat.flashtux.org/doc.php"> + http://weechat.flashtux.org/doc.php + </ulink> + </para> + </abstract> + + </bookinfo> + + <!-- =========================== Introduction =========================== --> + + <chapter id="chapIntroduction"> + <title>Introduction</title> + + <para> + Ce chapître décrit WeeChat et les pré-requis pour son installation. + </para> + + <section id="secDescription"> + <title>Description</title> + + <para> + WeeChat (Wee Enhanced Environment for Chat) est un client + <acronym>IRC</acronym> libre, rapide et léger, conçu pour + différents systèmes d'exploitation. + </para> + + <para> + Ses principales caractéristiques sont les suivantes : + <itemizedlist> + <listitem> + <para> + connexion multi-serveurs (avec SSL, IPv6, proxy) + </para> + </listitem> + <listitem> + <para> + plusieurs interfaces : Curses, wxWidgets, Gtk et Qt + </para> + </listitem> + <listitem> + <para> + petit, rapide et léger + </para> + </listitem> + <listitem> + <para> + paramétrable et extensible avec des extensions et des scripts + </para> + </listitem> + <listitem> + <para> + conforme aux <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2810.txt">2810</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2811.txt">2811</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> et + <ulink url="http://www.ietf.org/rfc/rfc2813.txt">2813</ulink> + </para> + </listitem> + <listitem> + <para> + multi-plateformes (GNU/Linux, *BSD, MacOS X, Windows et + d'autres systèmes) + </para> + </listitem> + <listitem> + <para> + 100% GPL, logiciel libre + </para> + </listitem> + </itemizedlist> + </para> + + <para> + La page d'accueil de WeeChat est ici : + <ulink url="http://weechat.flashtux.org"> + http://weechat.flashtux.org + </ulink> + </para> + + </section> + + <section id="secPreRequis"> + <title>Pré-requis</title> + + <para> + Pour installer WeeChat, vous <emphasis>devez</emphasis> avoir : + <itemizedlist> + <listitem> + <para> + un système GNU/Linux (avec le compilateur et les outils + associés pour le paquet des sources) + </para> + </listitem> + <listitem> + <para> + droits "root" (pour installer WeeChat) + </para> + </listitem> + <listitem> + <para> + selon l'interface, une des bibliothèques + suivantes : + <itemizedlist> + <listitem> + <para> + Curses : la bibliothèque ncurses + </para> + </listitem> + <listitem> + <para> + Gtk : <emphasis>*** interface non développée ***</emphasis> + </para> + </listitem> + <listitem> + <para> + WxWidgets : <emphasis>*** interface non développée ***</emphasis> + </para> + </listitem> + <listitem> + <para> + Qt : <emphasis>*** interface non développée ***</emphasis> + </para> + </listitem> + </itemizedlist> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + </chapter> + + <!-- =========================== Installation =========================== --> + + <chapter id="chapInstallation"> + <title>Installation</title> + + <para> + Ce chapître explique comment installer WeeChat. + </para> + + <section id="secPaquetsBinaires"> + <title>Paquets binaires</title> + + <para> + Les paquets binaires sont disponibles pour les distributions + suivantes : + <itemizedlist> + <listitem> + <para> + Debian (ou toute distribution compatible Debian) : + <userinput>apt-get install weechat</userinput> + </para> + </listitem> + <listitem> + <para> + Mandriva/RedHat (ou toute distribution compatible avec les RPM) : + <userinput> + rpm -i /chemin/weechat-x.y.z-1.i386.rpm + </userinput> + </para> + </listitem> + <listitem> + <para> + Gentoo : + <userinput>emerge weechat</userinput> + </para> + </listitem> + </itemizedlist> + + Pour les autres distributions supportées, merci de vous + référer au manuel de la distribution pour la méthode d'installation. + </para> + + </section> + + <section id="secPaquetSource"> + <title>Paquet source</title> + + <para> + Tapez simplement dans une console ou un terminal : +<screen><prompt>$ </prompt><userinput>./configure</userinput> +<prompt>$ </prompt><userinput>make</userinput></screen> + </para> + <para> + Obtenez les droits root et installez WeeChat : +<screen><prompt>$ </prompt><userinput>su</userinput> +(entrez le mot de passe root) +<prompt># </prompt><userinput>make install</userinput></screen> + </para> + + </section> + + <section id="secSourcesCVS"> + <title>Sources CVS</title> + + <para> + Attention : les sources CVS sont réservées aux utilisateurs + avancés : il se peut que WeeChat ne compile pas et qu'il soit + très instable. Vous êtes prévenus ! + </para> + + <para> + Pour récupérer les sources CVS, tapez cette commande : +<screen><prompt>$ </prompt><userinput>cvs -z3 -d:pserver:anonymous@cvs.savannah.nongnu.org:/sources/weechat co weechat</userinput></screen> + </para> + + <para> + Exécutez ce script : + <userinput>./autogen.sh</userinput> + </para> + + <para> + Suivez alors les instructions du paquet source + (voir <xref linkend="secPaquetSource" />) + </para> + + </section> + + </chapter> + + <!-- =========================== Utilisation ============================ --> + + <chapter id="chapUtilisation"> + <title>Utilisation</title> + + <para> + Ce chapître explique comment lancer WeeChat, les touches utilisées par + défaut, les commandes internes et IRC, le fichier de configuration et + l'utilisation du tube FIFO. + </para> + + <section id="secLancerWeeChat"> + <title>Lancer WeeChat</title> + + <para> + Paramètres de ligne de commande : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Paramètre</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>-a, --no-connect</literal></entry> + <entry> + Supprimer la connexion automatique aux serveurs lors du démarrage + </entry> + </row> + <row> + <entry><literal>-c, --config</literal></entry> + <entry> + Afficher l'aide sur le fichier de config (liste des options) + </entry> + </row> + <row> + <entry><literal>-f, --key-functions</literal></entry> + <entry> + Afficher la liste des fonctions internes WeeChat pour les touches + </entry> + </row> + <row> + <entry><literal>-h, --help</literal></entry> + <entry> + Afficher l'aide + </entry> + </row> + <row> + <entry><literal>-i, --irc-commands</literal></entry> + <entry> + Afficher la liste des commandes IRC + </entry> + </row> + <row> + <entry><literal>-k, --keys</literal></entry> + <entry> + Afficher les touches par défaut de WeeChat + </entry> + </row> + <row> + <entry><literal>-l, --license</literal></entry> + <entry> + Afficher la licence de WeeChat + </entry> + </row> + <row> + <entry><literal>-p, --no-plugin</literal></entry> + <entry> + Supprimer le chargement automatique des extensions au + démarrage + </entry> + </row> + <row> + <entry><literal>-v, --version</literal></entry> + <entry> + Afficher la version de WeeChat + </entry> + </row> + <row> + <entry><literal>-w, --weechat-commands</literal></entry> + <entry> + Afficher la liste des commandes WeeChat + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + Il est également possible de passer une URL pour un ou plusieurs + serveurs IRC, de la forme : + <screen>irc[6][s]://[pseudo[:mot_passe]@]irc.exemple.org[:port][/canal][,canal[...]</screen> + Exemple pour rejoindre #weechat et #toto sur le serveur + "<literal>irc.freenode.net</literal>", port par défaut (6667), sous + le pseudo "nono" : + <screen><prompt>$ </prompt><userinput>weechat-curses irc://nono@irc.freenode.net/#weechat,#toto</userinput></screen> + </para> + + <para> + Pour lancer WeeChat, tapez cette commande : + <itemizedlist> + <listitem> + <para> + pour l'interface Curses : <userinput>weechat-curses</userinput> + </para> + </listitem> + <listitem> + <para> + pour l'interface Gtk : <userinput>weechat-gtk</userinput> + </para> + </listitem> + <listitem> + <para> + pour l'interface wxWidgets : <userinput>weechat-wxwidgets</userinput> + </para> + </listitem> + <listitem> + <para> + pour l'interface Qt : <userinput>weechat-qt</userinput> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + Lorsque vous lancez WeeChat pour la première fois, un fichier de + configuration par défaut est créé, avec les options par défaut. + Le fichier de configuration par défaut est : + "<literal>~/.weechat/weechat.rc</literal>" + </para> + + <para> + Vous pouvez éditer ce fichier pour configurer WeeChat à votre + convenance (SEULEMENT si WeeChat ne tourne pas), ou vous pouvez + modifier les paramètres dans WeeChat avec la commande + "<literal>/set</literal>" + (voir <xref linkend="secCommandesWeeChat" />) + </para> + + </section> + + <section id="secRaccourcisClavier"> + <title>Raccourcis clavier</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Touche</entry> + <entry>Action</entry> + </row> + </thead> + <tbody> + <row> + <entry>Flèche gauche</entry> + <entry> + Aller au caractère précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Flèche droite</entry> + <entry> + Aller au caractère suivant sur la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + flèche gauche</entry> + <entry> + Aller au mot précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + flèche droite</entry> + <entry> + Aller au mot suivant sur la ligne de commande + </entry> + </row> + <row> + <entry>Home / Ctrl + A</entry> + <entry> + Aller au début de la ligne de commande + </entry> + </row> + <row> + <entry>End / Ctrl + E</entry> + <entry> + Aller à la fin de la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + K</entry> + <entry> + Effacer du curseur jusqu'à la fin de la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + L</entry> + <entry> + Réafficher toute la fenêtre + </entry> + </row> + <row> + <entry>Ctrl + U</entry> + <entry> + Effacer du curseur jusqu'au début de la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + W</entry> + <entry> + Effacer le mot précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Backspace</entry> + <entry> + Effacer le caractère précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Delete</entry> + <entry> + Effacer le caractère suivant sur la ligne de commande + </entry> + </row> + <row> + <entry>Tab</entry> + <entry> + Compléter la commande ou le pseudo + (Tab de nouveau: trouver la complétion suivante) + </entry> + </row> + <row> + <entry>Tout caractère</entry> + <entry> + Insérer le caractère à la position du curseur + sur la ligne de commande + </entry> + </row> + <row> + <entry>Entrée</entry> + <entry> + Exécuter la commande ou envoyer le message + </entry> + </row> + <row> + <entry>Flèche haut / flèche bas</entry> + <entry> + Rappeler les dernières commandes ou messages + </entry> + </row> + <row> + <entry>Ctrl + flèche haut / Ctrl + flèche bas</entry> + <entry> + Rappeler les dernières commandes ou messages dans + l'historique global (commun à tous les tampons) + </entry> + </row> + <row> + <entry>PageUp / PageDown</entry> + <entry> + Afficher l'historique du tampon + </entry> + </row> + <row> + <entry>F5 / Alt + flèche gauche</entry> + <entry> + Aller au tampon précédent + </entry> + </row> + <row> + <entry>F6 / Alt + flèche droite</entry> + <entry> + Aller au tampon suivant + </entry> + </row> + <row> + <entry>F7</entry> + <entry> + Aller à la fenêtre précédente + </entry> + </row> + <row> + <entry>F8</entry> + <entry> + Aller à la fenêtre suivante + </entry> + </row> + <row> + <entry>F10</entry> + <entry> + Effacer le dernier message de la barre d'infos + </entry> + </row> + <row> + <entry>F11 / F12</entry> + <entry> + Faire défiler la liste des pseudos + </entry> + </row> + <row> + <entry>Alt + Home / Alt + End</entry> + <entry> + Aller au début / à la fin de la liste des pseudos + </entry> + </row> + <row> + <entry>Alt + A</entry> + <entry> + Sauter au prochain tampon avec activité + (avec priorité : highlight, message, autre) + </entry> + </row> + <row> + <entry>Alt + B</entry> + <entry> + Aller au mot précédent + </entry> + </row> + <row> + <entry>Alt + D</entry> + <entry> + Effacer le mot suivant + </entry> + </row> + <row> + <entry>Alt + F</entry> + <entry> + Aller au mot suivant + </entry> + </row> + <row> + <entry>Alt + H</entry> + <entry> + Vider la hotlist + (notification d'actitivé sur les autres tampons) + </entry> + </row> + <row> + <entry>Alt + J puis Alt + D</entry> + <entry> + Afficher le tampon des DCC + </entry> + </row> + <row> + <entry>Alt + J puis Alt + L</entry> + <entry> + Sauter au dernier tampon + </entry> + </row> + <row> + <entry>Alt + J puis Alt + S</entry> + <entry> + Sauter au tampon du serveur + </entry> + </row> + <row> + <entry>Alt + J puis Alt + X</entry> + <entry> + Sauter au premier canal du serveur suivant + (ou tampon du serveur si aucun canal n'est ouvert) + </entry> + </row> + <row> + <entry>Alt + chiffre (0-9)</entry> + <entry> + Sauter au tampon qui porte ce numéro (0 = 10) + </entry> + </row> + <row> + <entry>Alt + J puis nombre (01-99)</entry> + <entry> + Sauter au tampon qui porte ce numéro + </entry> + </row> + <row> + <entry>Alt + K</entry> + <entry> + Capturer une touche et insérer son code sur la ligne + de commande + </entry> + </row> + <row> + <entry>Alt + N</entry> + <entry> + Se positionner sur le highlight suivant + </entry> + </row> + <row> + <entry>Alt + P</entry> + <entry> + Se positionner sur le highlight précédent + </entry> + </row> + <row> + <entry>Alt + R</entry> + <entry> + Effacer entièrement la ligne de commande + </entry> + </row> + <row> + <entry>Alt + S</entry> + <entry> + Changer de serveur sur le tampon des serveurs + (si l'option "look_one_server_buffer" est activée) + </entry> + </row> + <row> + <entry>Alt + U</entry> + <entry> + Se positionner sur la première ligne non lue du tampon + </entry> + </row> + <row> + <entry>Alt + W puis Alt + flèche</entry> + <entry> + Sauter à une fenêtre avec une direction + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secCommandesWeeChatIRC"> + <title>Commandes WeeChat / IRC</title> + + <para> + Ce chapître liste toutes les commandes WeeChat et IRC. + </para> + + <section id="secCommandesWeeChat"> + <title>Commandes WeeChat</title> + + <para> + &weechat_commands.xml; + </para> + + </section> + + <section id="secFonctionsTouches"> + <title>Fonctions pour les touches</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Fonction</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &key_functions.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secCommandesIRC"> + <title>Commandes IRC</title> + + <para> + &irc_commands.xml; + </para> + + </section> + + </section> + + <section id="secFichierConfiguration"> + <title>Fichier de configuration</title> + + <para> + Liste des options du fichier de configuration : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Option</entry> + <entry>Type</entry> + <entry>Valeurs</entry> + <entry>Défaut</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &config.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + Les couleurs pour l'interface Curses sont : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Mot clé</entry> + <entry>Couleur</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>default</literal></entry> + <entry>couleur par défaut (transparent pour le fond)</entry> + </row> + <row> + <entry><literal>black</literal></entry> + <entry>noir</entry> + </row> + <row> + <entry><literal>red</literal></entry> + <entry>rouge foncé</entry> + </row> + <row> + <entry><literal>lightred</literal></entry> + <entry>rouge clair</entry> + </row> + <row> + <entry><literal>green</literal></entry> + <entry>vert foncé</entry> + </row> + <row> + <entry><literal>lightgreen</literal></entry> + <entry>vert clair</entry> + </row> + <row> + <entry><literal>brown</literal></entry> + <entry>marron</entry> + </row> + <row> + <entry><literal>yellow</literal></entry> + <entry>jaune</entry> + </row> + <row> + <entry><literal>blue</literal></entry> + <entry>bleu foncé</entry> + </row> + <row> + <entry><literal>lightblue</literal></entry> + <entry>bleu clair</entry> + </row> + <row> + <entry><literal>magenta</literal></entry> + <entry>violet foncé</entry> + </row> + <row> + <entry><literal>lightmagenta</literal></entry> + <entry>violet clair</entry> + </row> + <row> + <entry><literal>cyan</literal></entry> + <entry>cyan foncé</entry> + </row> + <row> + <entry><literal>lightcyan</literal></entry> + <entry>cyan clair</entry> + </row> + <row> + <entry><literal>white</literal></entry> + <entry>blanc</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secTubeFIFO"> + <title>Tube FIFO</title> + + <para> + Vous pouvez contrôler WeeChat à distance, en envoyant des commandes + ou du texte dans un tube FIFO (l'option "irc_fifo_pipe" doit être + activée, elle est désactivée par défaut). + </para> + + <para> + Le tube FIFO est dans le répertoire "<literal>~/.weechat/</literal>" + et s'appelle "weechat_fifo_xxxxx" (où xxxxx est l'ID du processus + (PID) du WeeChat qui tourne). Donc si plusieurs WeeChat tournent, il + y a plusieurs tubes FIFO, un pour chaque session. + </para> + + <para> + La syntaxe pour envoyer des commandes ou du texte dans le tube FIFO + est la suivante : + <screen>serveur,canal *texte ou commande ici</screen> + où le serveur et le canal sont facultatifs, mais si le canal est là, + le serveur doit l'être aussi. + </para> + + <para> + Quelques exemples : + <itemizedlist> + <listitem> + <para> + changement du pseudo sur freenode en "pseudo|absent" : + <screen><prompt>$ </prompt><userinput>echo "freenode */nick pseudo|absent" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + affichage de texte sur le canal #weechat : + <screen><prompt>$ </prompt><userinput>echo "freenode,#weechat *bonjour tout le monde !" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + affichage de texte sur le canal courant (le tampon affiché + par WeeChat) : + <screen><prompt>$ </prompt><userinput>echo "*bonjour !" >~/.weechat/weechat_fifo_12345</userinput></screen> + <emphasis>Attention :</emphasis> ceci est dangereux et vous ne + devriez pas le faire sauf si vous savez ce que vous faites ! + </para> + </listitem> + <listitem> + <para> + envoyer deux commandes pour décharger/recharger les scripts Perl + (vous devez les séparer par "\n") : + <screen><prompt>$ </prompt><userinput>echo -e "freenode */perl unload\nfreenode */perl autoload" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + Vous pouvez écrire un script qui envoie les commandes à tous les + WeeChat qui tournent en même temps, par exemple : +<screen> +#!/bin/sh +if [ $# -eq 1 ]; then + for fifo in $(/bin/ls ~/.weechat/weechat_fifo_* 2>/dev/null); do + echo -e "$1" >$fifo + done +fi +</screen> + Si le script s'appelle "auto_weechat_command", vous pouvez le lancer + ainsi : + <screen><prompt>$ </prompt><userinput>./auto_weechat_command "freenode,#weechat *bonjour"</userinput></screen> + </para> + + </section> + + </chapter> + + <!-- ============================ Extensions ============================ --> + + <chapter id="chapExtensions"> + <title>Extensions</title> + + <para> + Ce chapître décrit l'interface des extensions (API) et les extensions + pour scripts (Perl, Python, Ruby), fournies avec WeeChat. + </para> + + <section id="secLesExtensionsDansWeeChat"> + <title>Les extensions dans WeeChat</title> + + <para> + Une extension ("plugin" en anglais) est un programme écrit en C + qui peut appeler des fonctions de WeeChat définies dans une interface. + </para> + + <para> + Ce programme C n'a pas besoin des sources WeeChat pour être + compilé et peut être chargé/déchargé dynamiquement dans + WeeChat via la commande <command>/plugin</command>. + </para> + + <para> + L'extension doit être au format bibliothèque, chargeable + dynamiquement par le systême d'exploitation. + Sous GNU/Linux, il s'agit d'un fichier ayant pour extension ".so", + sous Windows ".dll". + </para> + + </section> + + <section id="secEcrireUneExtension"> + <title>Ecrire une extension</title> + + <para> + L'extension doit inclure le fichier "weechat-plugin.h" + (disponible dans les sources de WeeChat). + Ce fichier définit les structures et types dont l'extension aura + besoin pour communiquer avec WeeChat. + </para> + + <para> + L'extension doit comporter certaines variables et fonctions + obligatoires (sans quoi l'extension ne peut être chargée) : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Variable</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>char plugin_name[]</literal></entry> + <entry>le nom de l'extension</entry> + </row> + <row> + <entry><literal>char plugin_version[]</literal></entry> + <entry>la version de l'extension</entry> + </row> + <row> + <entry><literal>char plugin_description[]</literal></entry> + <entry>une courte description de l'extension</entry> + </row> + </tbody> + </tgroup> + </informaltable> + + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Fonction</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>int weechat_plugin_init (t_weechat_plugin *plugin)</literal></entry> + <entry> + fonction appelée au chargement de l'extension + qui doit renvoyer PLUGIN_RC_OK en cas de succès, + PLUGIN_RC_KO en cas d'erreur (si erreur, l'extension + ne sera PAS chargée) + </entry> + </row> + <row> + <entry><literal>void weechat_plugin_end (t_weechat_plugin *plugin)</literal></entry> + <entry>fonction appelée au déchargement de l'extension</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <section id="secFonctionsInterface"> + <title>Fonctions de l'interface (API)</title> + + <section id="secAPI_ascii_strcasecmp"> + <title>ascii_strcasecmp</title> + + <para> + Prototype : + <command> + int ascii_strcasecmp (t_weechat_plugin *plugin, + char *chaine1, char *chaine2) + </command> + </para> + <para> + Effectue une comparaison entre deux chaînes, sans tenir compte des + majuscules/minuscules ni de la locale. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine1</option> : la première chaîne à comparer + </para> + </listitem> + <listitem> + <para> + <option>chaine2</option> : la deuxième chaîne à comparer + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la différence entre les deux chaînes : négatif + si chaine1 < chaine2, zéro si chaine1 == chaine2, positif si + chaine1 > chaine2 + </para> + <para> + Exemple : + <screen>if (plugin->ascii_strcasecmp (plugin, "abc", "def") != 0) ...</screen> + </para> + </section> + + <section id="secAPI_ascii_strncasecmp"> + <title>ascii_strncasecmp</title> + + <para> + Prototype : + <command> + int ascii_strncasecmp (t_weechat_plugin *plugin, + char *chaine1, char *chaine2, int max) + </command> + </para> + <para> + Effectue une comparaison entre deux chaînes, sans tenir compte des + majuscules/minuscules ni de la locale, en comparant au plus "max" + caractères. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine1</option> : la première chaîne à comparer + </para> + </listitem> + <listitem> + <para> + <option>chaine2</option> : la deuxième chaîne à comparer + </para> + </listitem> + <listitem> + <para> + <option>max</option> : nombre de caractères max à comparer + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la différence entre les deux chaînes : négatif + si chaine1 < chaine2, zéro si chaine1 == chaine 2, positif si + chaine1 > chaine2 + </para> + <para> + Exemple : + <screen>if (plugin->ascii_strncasecmp (plugin, "abc", "def", 2) != 0) ...</screen> + </para> + </section> + + <section id="secAPI_explode_string"> + <title>explode_string</title> + + <para> + Prototype : + <command> + char **explode_string (t_weechat_plugin *plugin, char *chaine, + char *separateurs, int num_items_max, int *num_items) + </command> + </para> + <para> + Explose une chaîne en plusieurs selon un/des délimiteur(s). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine</option> : la chaîne à exploser + </para> + </listitem> + <listitem> + <para> + <option>separateurs</option> : les délimiteurs utilisés + pour exploser la chaîne + </para> + </listitem> + <listitem> + <para> + <option>num_items_max</option> : nombre maximum de + sous-chaînes créées (0 = pas de limite) + </para> + </listitem> + <listitem> + <para> + <option>num_items</option> : pointeur vers un entier qui + contiendra le nombre de sous-chaînes créées en retour + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : un tableau de chaînes, ou NULL si un problème + a été rencontré. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free_exploded_string" après utilisation. + </para> + <para> + Exemple : +<screen> +char **argv; +int argc; +argv = plugin->explode_string (plugin, chaine, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_free_exploded_string"> + <title>free_exploded_string</title> + + <para> + Prototype : + <command> + char **free_exploded_string (t_weechat_plugin *plugin, + char **chaine) + </command> + </para> + <para> + Libère la mémoire utilisée pour une explosion de chaîne. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine</option> : la chaîne explosée par la fonction + "explode_string" + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : +<screen> +char *argv; +int argc; +argv = plugin->explode_string (plugin, chaine, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_exec_on_files"> + <title>exec_on_files</title> + + <para> + Prototype : + <command> + void exec_on_files (t_weechat_plugin *plugin, char *repertoire, + int (*callback)(t_weechat_plugin *, char *)) + </command> + </para> + <para> + Exécute une fonction sur tous les fichiers d'un répertoire. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>repertoire</option> : le répertoire où les fichiers + sont recherchés + </para> + </listitem> + <listitem> + <para> + <option>callback</option> : une fonction appelée pour chaque + fichier trouvé + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : +<screen> +int callback (t_weechat_plugin *plugin, char *fichier) +{ + plugin->printf_server (plugin, "fichier: %s", fichier); + return 1; +} +... +plugin->exec_on_files (plugin, "/tmp", &callback); +</screen> + </para> + </section> + + <section id="secAPI_printf"> + <title>printf</title> + + <para> + Prototype : + <command> + void printf (t_weechat_plugin *plugin, + char *serveur, char *canal, char *message, ...) + </command> + </para> + <para> + Affiche un message sur un tampon WeeChat, identifié par le serveur + et le canal (tous deux pouvant être NULL pour le tampon courant). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur pour + trouver le tampon dans lequel afficher (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal pour trouver le + tampon dans lequel afficher (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemples : +<screen> +plugin->printf (plugin, NULL, NULL, "hello"); +plugin->printf (plugin, NULL, "#weechat", "hello"); +plugin->printf (plugin, "freenode", "#weechat", "hello"); +</screen> + </para> + </section> + + <section id="secAPI_printf_server"> + <title>printf_server</title> + + <para> + Prototype : + <command> + void printf_server (t_weechat_plugin *plugin, + char *message, ...) + </command> + </para> + <para> + Affiche un message sur le tampon du serveur courant. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : <screen>plugin->printf_server (plugin, "hello");</screen> + </para> + </section> + + <section id="secAPI_printf_infobar"> + <title>printf_infobar</title> + + <para> + Prototype : + <command> + void printf_infobar (t_weechat_plugin *plugin, + int temps, char *message, ...) + </command> + </para> + <para> + Affiche un message sur la barre d'infos pour un temps déterminé. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>temps</option> : temps (en secondes) pendant lequel + le message est affiché (0 = jamais effacé) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : <screen>plugin->printf_infobar (plugin, 5, "hello");</screen> + </para> + </section> + + <section id="secAPI_msg_handler_add"> + <title>msg_handler_add</title> + + <para> + Prototype : + <command> + t_plugin_handler *msg_handler_add (t_weechat_plugin + *plugin, char *message, t_plugin_handler_func *fonction, + char *handler_args, void *handler_pointer) + </command> + </para> + <para> + Ajoute un gestionnaire de messages IRC, appelé dès qu'un message + IRC est reçu. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>message</option> : nom du message IRC pour lequel la + fonction est appelée. + Pour connaître la liste des messages IRC disponibles, merci + de consulter les <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> et + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque le + message est reçu + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option> : paramètres passés à la + fonction appelée + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option> : pointeur passé à la + fonction appelée + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : le pointeur vers le nouveau gestionnaire de + messages. + </para> + <para> + Note : la fonction appelée lorsque le message est reçu doit + renvoyer une des valeurs suivantes : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal> : le message + ne sera pas transmis à WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal> : le message + ne sera pas transmis à d'autres extensions + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal> : le message + ne sera ni transmis à WeeChat ni à d'autres extensions + </para> + </listitem> + </itemizedlist> + </para> + <para> + Exemple : +<screen> +int msg_kick (t_weechat_plugin *plugin, char *serveur, char *commande, + char *arguments, char *handler_args, void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, "KICK reçu"); + return PLUGIN_RC_OK; +} +... +plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); +</screen> + </para> + </section> + + <section id="secAPI_cmd_handler_add"> + <title>cmd_handler_add</title> + + <para> + Prototype : + <command> + t_plugin_handler *cmd_handler_add (t_weechat_plugin + *plugin, char *commande, char *description, char *arguments, + char *arguments_description, char *modele_completion, + t_plugin_handler_func *fonction, char *handler_args, + void *handler_pointer) + </command> + </para> + <para> + Ajoute un gestionnaire de commande WeeChat, appelé dès que + l'utilisateur utilise la commande (par exemple /commande). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>commande</option> : nom de la nouvelle commande, + qui peut être une commande déjà existante (attention la + commande remplacée ne sera plus disponible jusqu'à ce que + l'extension soit déchargée) + </para> + </listitem> + <listitem> + <para> + <option>description</option> : brève description de la + commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>arguments</option> : brève description des + paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option> : longue description + des paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>modele_completion</option> : modèle pour la + complétion sous la forme "<literal>abc|%w def|%i</literal>" + qui signigie "abc" ou une commande WeeChat pour le premier + paramètre, et "def" ou une commande IRC pour le deuxième. + Une chaîne vide indique à WeeChat de compléter tout + paramètre avec un pseudo du canal courant, une valeur NULL + désactive toute complétion pour tous les paramètres de la + commande. + </para> + <para> + Les codes suivants peuvent être utilisés : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Code</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>%-</literal></entry> + <entry>aucune complétion pour le paramètre</entry> + </row> + <row> + <entry><literal>%a</literal></entry> + <entry>alias</entry> + </row> + <row> + <entry><literal>%A</literal></entry> + <entry> + alias et commandes (WeeChat, IRC et extensions) + </entry> + </row> + <row> + <entry><literal>%c</literal></entry> + <entry>canal courant</entry> + </row> + <row> + <entry><literal>%C</literal></entry> + <entry>canaux du serveur courant</entry> + </row> + <row> + <entry><literal>%f</literal></entry> + <entry>nom de fichier</entry> + </row> + <row> + <entry><literal>%h</literal></entry> + <entry>commandes définies par des extensions</entry> + </row> + <row> + <entry><literal>%i</literal></entry> + <entry>commandes IRC (envoyées)</entry> + </row> + <row> + <entry><literal>%I</literal></entry> + <entry>commandes IRC (reçues)</entry> + </row> + <row> + <entry><literal>%k</literal></entry> + <entry>fonctions associées aux touches</entry> + </row> + <row> + <entry><literal>%n</literal></entry> + <entry>pseudos du canal courant</entry> + </row> + <row> + <entry><literal>%o</literal></entry> + <entry>options de configuration</entry> + </row> + <row> + <entry><literal>%p</literal></entry> + <entry>message de "part" par défaut</entry> + </row> + <row> + <entry><literal>%q</literal></entry> + <entry>message de "quit" par défaut</entry> + </row> + <row> + <entry><literal>%s</literal></entry> + <entry>nom du serveur courant</entry> + </row> + <row> + <entry><literal>%S</literal></entry> + <entry>tous les serveurs</entry> + </row> + <row> + <entry><literal>%t</literal></entry> + <entry>titre du canal courant</entry> + </row> + <row> + <entry><literal>%v</literal></entry> + <entry>valeur d'une option de configuration</entry> + </row> + <row> + <entry><literal>%w</literal></entry> + <entry>commandes WeeChat</entry> + </row> + <row> + <entry><literal>%y</literal></entry> + <entry>message d'absence ("away") par défaut</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque la + commande est exécutée + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option> : paramètres passés à la + fonction appelée + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option> : pointeur passé à la + fonction appelée + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : le pointeur vers le nouveau gestionnaire de + commande. + </para> + <para> + Note : la fonction appelée lorsque la commande est exécutée doit + renvoyer une des valeurs suivantes : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + </itemizedlist> + </para> + <para> + Exemple : +<screen> +int cmd_test (t_weechat_plugin *plugin, char *serveur, + char *commande, char *arguments, char *handler_args, + void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, + "commande test, pseudo: %s", + (arguments) ? arguments : "aucun"); + return PLUGIN_RC_OK; +} +... +plugin->cmd_handler_add (plugin, "test", "Commande test", + "[pesudo]", "pseudo: un pseudo du canal", + "%n", &cmd_test, NULL, NULL); +</screen> + </para> + + </section> + + <section id="secAPI_handler_remove"> + <title>handler_remove</title> + + <para> + Prototype : + <command> + void handler_remove (t_weechat_plugin *plugin, + t_plugin_handler *handler) + </command> + </para> + <para> + Supprime un gestionnaire. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>handler</option> : le gestionnaire à supprimer + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : + <screen>plugin->handler_remove (plugin, mon_handler);</screen> + </para> + </section> + + <section id="secAPI_handler_remove_all"> + <title>handler_remove_all</title> + + <para> + Prototype : + <command> + void handler_remove_all (t_weechat_plugin *plugin) + </command> + </para> + <para> + Supprime tous les gestionnaires d'une extension. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : + <screen>plugin->handler_remove_all (plugin);</screen> + </para> + </section> + + <section id="secAPI_exec_command"> + <title>exec_command</title> + + <para> + Prototype : + <command> + void exec_command (t_weechat_plugin + *plugin, char *serveur, char *canal, char *commande) + </command> + </para> + <para> + Execute une commande WeeChat ou envoie un message à un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + exécuter la commande (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal où exécuter la + commande (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>commande</option> : la commande à exécuter + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemples : +<screen> +plugin->exec_command (plugin, NULL, NULL, "/help nick"); +plugin->exec_command (plugin, "freenode", "#weechat", "bonjour"); +</screen> + </para> + </section> + + <section id="secAPI_get_info"> + <title>get_info</title> + + <para> + Prototype : + <command> + char *get_info (t_weechat_plugin *plugin, + char *info, char *serveur) + </command> + </para> + <para> + Renvoie une information sur WeeChat ou un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>info</option> : nom de l'info à obtenir : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Info</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>version</literal></entry> + <entry>version de WeeChat</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>pesudo</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry> + nom du canal (NULL pour un serveur ou un privé) + </entry> + </row> + <row> + <entry><literal>server</literal></entry> + <entry>nom du serveur</entry> + </row> + <row> + <entry><literal>away</literal></entry> + <entry>drapeau "away"</entry> + </row> + <row> + <entry><literal>weechat_dir</literal></entry> + <entry> + répertoire maison de WeeChat + (par défaut: ~/.weechat/) + </entry> + </row> + <row> + <entry><literal>weechat_libdir</literal></entry> + <entry>répertoire "lib" système de WeeChat</entry> + </row> + <row> + <entry><literal>weechat_sharedir</literal></entry> + <entry>répertoire "share" système de WeeChat</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + récupérer l'information (si nécessaire) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : l'information recherchée, NULL si non trouvée. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free" après utilisation. + </para> + <para> + Exemples : +<screen> +char *version = plugin->get_info (plugin, "version", NULL); +char *nick = plugin->get_info (plugin, "nick", "freenode"); +</screen> + </para> + </section> + + <section id="secAPI_get_dcc_info"> + <title>get_dcc_info</title> + + <para> + Prototype : + <command> + t_plugin_info_dcc *get_dcc_info (t_weechat_plugin *plugin) + </command> + </para> + <para> + Renvoie la liste des DCC en cours ou terminés. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la liste chaînée des DCC. + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Champ</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>server</literal></entry> + <entry>le serveur IRC</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry>le canal IRC</entry> + </row> + <row> + <entry><literal>type</literal></entry> + <entry> + le type de DCC : + 0 = discussion reçue, + 1 = discussion envoyée, + 2 = fichier reçu, + 3 = fichier envoyé + </entry> + </row> + <row> + <entry><literal>status</literal></entry> + <entry> + le statut du DCC : + 0 = en attente, + 1 = en cours de connexion, + 2 = actif, + 3 = terminé, + 4 = échoué, + 5 = interrompu par l'utilisateur + </entry> + </row> + <row> + <entry><literal>start_time</literal></entry> + <entry>la date et heure de création du DCC</entry> + </row> + <row> + <entry><literal>start_transfer</literal></entry> + <entry>la date et heure de démarrage du transfert</entry> + </row> + <row> + <entry><literal>addr</literal></entry> + <entry>adresse IP de l'utilisateur distant</entry> + </row> + <row> + <entry><literal>port</literal></entry> + <entry>port utilisé pour le DCC</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>pseudo de l'utilisateur distant</entry> + </row> + <row> + <entry><literal>filename</literal></entry> + <entry>nom de fichier</entry> + </row> + <row> + <entry><literal>local_filename</literal></entry> + <entry>nom de fichier local</entry> + </row> + <row> + <entry><literal>size</literal></entry> + <entry>taille du fichier</entry> + </row> + <row> + <entry><literal>pos</literal></entry> + <entry>position actuelle dans le fichier</entry> + </row> + <row> + <entry><literal>start_resume</literal></entry> + <entry>position de démarrage après une interruption</entry> + </row> + <row> + <entry><literal>bytes_per_sec</literal></entry> + <entry> + nombre d'octets transmis par seconde depuis le début + du transfert + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free_dcc_info" après utilisation. + </para> + <para> + Exemples : +<screen> +t_plugin_dcc_info *dcc_info = plugin->get_dcc_info (plugin); +for (ptr_dcc = dcc_info; ptr_dcc; ptr_dcc = ptr_dcc->next_dcc) +{ + plugin->printf_server (plugin, "DCC type=%d, avec: %s", + ptr_dcc->type, ptr_dcc->nick); +} +if (dcc_info) + plugin->free_dcc_info (plugin, dcc_info); +</screen> + </para> + </section> + + <section id="secAPI_free_dcc_info"> + <title>free_dcc_info</title> + + <para> + Prototype : + <command> + void free_dcc_info (t_weechat_plugin *plugin, + t_plugin_dcc_info *dcc_info) + </command> + </para> + <para> + Libère la mémoire utilisée par une liste de DCC. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>dcc_info</option> : pointeur vers la liste DCC + renvoyée par la fonction "get_dcc_info" + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : + <screen>plugin->free_dcc_info (plugin, dcc_info);</screen> + </para> + </section> + + <section id="secAPI_get_config"> + <title>get_config</title> + + <para> + Prototype : + <command> + char *get_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Renvoie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à lire + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, NULL si non trouvée. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free" après utilisation. + </para> + <para> + Exemples : +<screen> +char *value1 = plugin->get_config (plugin, "look_set_title"); +char *value2 = plugin->get_config (plugin, "freenode.server_autojoin"); +</screen> + </para> + </section> + + <section id="secAPI_set_config"> + <title>set_config</title> + + <para> + Prototype : + <command> + int set_config (t_weechat_plugin *plugin, + char *option, char *valeur) + </command> + </para> + <para> + Modifie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à mettre à jour + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : nouvelle valeur pour l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si l'option a été modifiée avec succès, 0 si + une erreur s'est produite. + </para> + <para> + Exemple : +<screen> +plugin->set_config (plugin, "look_nicklist", "off"); +</screen> + </para> + </section> + + <section id="secAPI_get_plugin_config"> + <title>get_plugin_config</title> + + <para> + Prototype : + <command> + char *get_plugin_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Renvoie la valeur d'une option de l'extension. + L'option est lue depuis le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : "<literal>extension.option=valeur</literal>" + (NB : le nom de l'extension est ajouté automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à lire + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, NULL si non trouvée. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free" après utilisation. + </para> + <para> + Exemple : +<screen> +char *value = plugin->get_plugin_config (plugin, "ma_variable"); +</screen> + </para> + </section> + + <section id="secAPI_set_plugin_config"> + <title>set_plugin_config</title> + + <para> + Prototype : + <command> + int set_plugin_config (t_weechat_plugin *plugin, + char *option, char *valeur) + </command> + </para> + <para> + Modifie la valeur d'une option de l'extension. + L'option est écrite dans le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : "<literal>extension.option=valeur</literal>" + (NB : le nom de l'extension est ajouté automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à mettre à jour + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : nouvelle valeur pour l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si l'option a été modifiée avec succès, 0 si + une erreur s'est produite. + </para> + <para> + Exemple : +<screen> +plugin->set_plugin_config (plugin, "ma_variable", "valeur"); +</screen> + </para> + </section> + + </section> + + <section id="secCompilerExtension"> + <title>Compiler l'extension</title> + + <para> + La compilation ne nécessite pas les sources WeeChat, mais seulement + le fichier "<literal>weechat-plugin.h</literal>". + </para> + + <para> + Pour compiler une extension composée d'un fichier "toto.c" (sous + GNU/Linux) : +<screen> +<prompt>$ </prompt><userinput>gcc -fPIC -Wall -c toto.c</userinput> +<prompt>$ </prompt><userinput>gcc -shared -fPIC -o libtoto.so toto.o</userinput> +</screen> + </para> + + </section> + + <section id="secChargerExtension"> + <title>Charger l'extension dans WeeChat</title> + + <para> + Copier le fichier "libtoto.so" dans le répertoire système des + extensions (par exemple + "<literal>/usr/local/lib/weechat/plugins)</literal>" ou bien dans + celui de l'utilisateur (par exemple + "<literal>/home/xxxxx/.weechat/plugins</literal>"). + </para> + + <para> + Sous WeeChat : + <screen><userinput>/plugin load toto</userinput></screen> + </para> + + </section> + + <section id="secExempleExtension"> + <title>Exemple d'extension</title> + + <para> + Un exemple complet d'extension, qui ajoute une commande /double + affichant deux fois les paramètres passés sur le canal courant + (d'accord ce n'est pas très utile mais ceci est un exemple !) : +<screen> +#include <stdlib.h> + +#include "weechat-plugin.h" + +char plugin_name[] = "Double"; +char plugin_version[] = "0.1"; +char plugin_description[] = "Plugin de test pour WeeChat"; + +/* gestionnaire de commande "/double" */ + +int double_cmd (t_weechat_plugin *plugin, char *serveur, + char *commande, char *arguments, + char *handler_args, void *handler_pointer) +{ + if (arguments && arguments[0] && (arguments[0] != '/')) + { + plugin->exec_command (plugin, NULL, NULL, arguments); + plugin->exec_command (plugin, NULL, NULL, arguments); + } + return PLUGIN_RC_OK; +} + +int weechat_plugin_init (t_weechat_plugin *plugin) +{ + plugin->cmd_handler_add (plugin, "double", + "Affiche deux fois un message", + "msg", + "msg: message a afficher deux fois", + NULL, + &double_cmd, + NULL, NULL); + return PLUGIN_RC_OK; +} + +void weechat_plugin_end (t_weechat_plugin *plugin) +{ + /* on ne fait rien ici */ +} +</screen> + </para> + + </section> + + </section> + + <section id="secExtensionsScripts"> + <title>Extensions pour scripts</title> + + <para> + Trois extensions sont fournies en standard avec WeeChat pour utiliser + des langages de script : Perl, Python et Ruby. + </para> + + <section id="secChargerDechargerScripts"> + <title>Charger / décharger des scripts</title> + + <para> + Les scripts sont chargés et déchargés avec les commandes + <command>/perl</command>, <command>/python</command> et + <command>/ruby</command> (tapez <command>/help</command> dans + WeeChat pour obtenir de l'aide sur les commandes). + </para> + + <para> + Exemples : + <itemizedlist> + <listitem> + <para> + Charger un script Perl : + <command><userinput>/perl load /tmp/essai.pl</userinput></command> + </para> + </listitem> + <listitem> + <para> + Lister les scripts Perl chargés : + <command><userinput>/perl</userinput></command> + </para> + </listitem> + <listitem> + <para> + Charger un script Python : + <command><userinput>/python load /tmp/essai.py</userinput></command> + </para> + </listitem> + <listitem> + <para> + Lister les scripts Python chargés : + <command><userinput>/python</userinput></command> + </para> + </listitem> + <listitem> + <para> + Charger un script Ruby : + <command><userinput>/ruby load /tmp/essai.rb</userinput></command> + </para> + </listitem> + <listitem> + <para> + Lister les scripts Ruby chargés : + <command><userinput>/ruby</userinput></command> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secInterfaceWeeChatScripts"> + <title>Interface WeeChat / scripts</title> + + <section> + <title>register</title> + + <para> + Prototype Perl : + <command> + weechat::register ( nom, version, fonction_de_fin, description ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.register ( nom, version, fonction_de_fin, description ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.register ( nom, version, fonction_de_fin, description ) + </command> + </para> + <para> + C'est la première fonction à appeler dans le script. + Tout script pour WeeChat doit appeler cette fonction. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>nom</option> : nom unique pour identifier le script + (chaque script doit avoir un nom différent) + </para> + </listitem> + <listitem> + <para> + <option>version</option> : version du script + </para> + </listitem> + <listitem> + <para> + <option>fonction_de_fin</option> : fonction appelée quand + le script est déchargé (paramètre facultatif, une chaîne + vide signifiant qu'il n'y a pas de fonction à appeler) + </para> + </listitem> + <listitem> + <para> + <option>description</option> : brève description du script + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si le script a été enregistré, 0 si une erreur + s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::register ("essai", "1.0", "fin_essai", "Script d'essai !"); + +# python +weechat.register ("essai", "1.0", "fin_essai", "Script d'essai !") + +# ruby +Weechat.register ("essai", "1.0", "fin_essai", "Script d'essai !") +</screen> + </para> + </section> + + <section> + <title>print</title> + + <para> + Prototype Perl : + <command> + weechat::print ( message, [canal, [serveur]] ) + </command> + </para> + <para> + Prototype Python : + <command> + weechat.prnt ( message, [canal, [serveur]] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.print ( message, [canal, [serveur]] ) + </command> + </para> + <para> + Affiche un message sur un tampon WeeChat, identifié par le + serveur et le canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal pour trouver le + tampon dans lequel afficher + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur pour + trouver le tampon dans lequel afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::print ("message"); +weechat::print ("message", "#weechat"); +weechat::print ("message", "#weechat", "freenode"); + +# python +weechat.prnt ("message") +weechat.prnt ("message", "#weechat") +weechat.prnt ("message", "#weechat", "freenode") + +# ruby +Weechat.print ("message") +Weechat.print ("message", "#weechat") +Weechat.print ("message", "#weechat", "freenode") +</screen> + </para> + </section> + + <section> + <title>print_infobar</title> + + <para> + Prototype Perl : + <command> + weechat::print_infobar ( temps, message ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.print_infobar ( temps, message ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.print_infobar ( temps, message ) + </command> + </para> + <para> + Affiche un message sur la barre d'infos pour un temps déterminé. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>temps</option> : temps (en secondes) pendant + lequel le message est affiché (0 = jamais effacé) + </para> + </listitem> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::print_infobar (5, "message"); + +# python +weechat.print_infobar (5, "message") + +# ruby +Weechat.print_infobar (5, "message") +</screen> + </para> + </section> + + <section> + <title>add_message_handler</title> + + <para> + Prototype Perl : + <command> + weechat::add_message_handler ( message, fonction ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.add_message_handler ( message, fonction ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.add_message_handler ( message, fonction ) + </command> + </para> + <para> + Ajoute un gestionnaire de messages IRC, appelé dès qu'un message + IRC est reçu. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>message</option> : nom du message IRC pour lequel la + fonction est appelée. + Pour connaître la liste des messages IRC disponibles, merci + de consulter les <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> et + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque le message + est reçu + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::add_message_handler ("privmsg", ma_fonction); +sub ma_fonction +{ + weechat::print ("serveur=$_[0]\n"); + ($null, $canal, $message) = split ":",$_[1],3; + ($masque, $null, $canal) = split " ", $canal; + weechat::print ("masque=$masque, canal=$canal, msg=$message\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_message_handler ("privmsg", ma_fonction) +def ma_fonction(serveur, args): + weechat.prnt("serveur="+serveur) + null, canal, message = string.split(args, ":", 2) + masque, null, canal = string.split(string.strip(canal), " ", 2) + weechat.prnt("masque="+masque+", canal="+canal+", message="+message) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Note : la fonction appelée lorsque le message est reçu doit + renvoyer une des valeurs suivantes (préfixée par "weechat::" pour + Perl, "weechat." pour Python ou "Weechat." pour Ruby) : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal> : le message + ne sera pas transmis à WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal> : le message + ne sera pas transmis à d'autres extensions + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal> : le message + ne sera ni transmis à WeeChat ni à d'autres extensions + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>add_command_handler</title> + + <para> + Prototype Perl : + <command> + weechat::add_command_handler ( commande, fonction, + [description, arguments, arguments_description, + modele_completion] ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.add_command_handler ( commande, fonction, + [description, arguments, arguments_description, + modele_completion] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.add_command_handler ( commande, fonction, + [description, arguments, arguments_description, + modele_completion] ) + </command> + </para> + <para> + Ajoute un gestionnaire de commande WeeChat, appelé dès que + l'utilisateur utilise la commande (par exemple /commande). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>commande</option> : nom de la nouvelle commande, + qui peut être une commande déjà existante (attention la + commande remplacée ne sera plus disponible jusqu'à ce que + le script soit déchargé) + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque la + commande est exécutée + </para> + </listitem> + <listitem> + <para> + <option>arguments</option> : brève description des + paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option> : longue description + des paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>modele_completion</option> : modèle pour la + complétion sous la forme "<literal>abc|%w def|%i</literal>" + qui signigie "abc" ou une commande WeeChat pour le premier + paramètre, et "def" ou une commande IRC pour le deuxième. + (voir <xref linkend="secAPI_cmd_handler_add" />) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::add_command_handler ("commande", ma_commande); +sub ma_commande +{ + weechat::print("Serveur: $_[0], paramètres: $_[1]\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_command_handler ("commande", ma_commande) +def ma_commande(serveur, args): + weechat.prnt("serveur:"+serveur+" paramètres:"+args) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Notes : la fonction appelée lorsque le message est exécutée doit + renvoyer une des valeurs suivantes (préfixée par "weechat::" pour + Perl, "weechat." pour Python ou "Weechat." pour Ruby) : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>remove_handler</title> + + <para> + Prototype Perl : + <command> + weechat::remove_handler ( nom, fonction ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.remove_handler ( nom, fonction ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.remove_handler ( nom, fonction ) + </command> + </para> + <para> + Supprime un gestionnaire. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>nom</option> : nom du message IRC ou de la commande + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction associée + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::remove_handler ("commande", ma_commande); + +# python +weechat.remove_handler ("commande", ma_commande) + +# ruby +Weechat.remove_handler ("commande", ma_commande) +</screen> + </para> + </section> + + <section> + <title>command</title> + + <para> + Prototype Perl : + <command> + weechat::command ( commande, [canal, [serveur]] ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.command ( commande, [canal, [serveur]] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.command ( commande, [canal, [serveur]] ) + </command> + </para> + <para> + Exécute une commande ou envoie un message à un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>commande</option> : la commande à exécuter + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal où exécuter la + commande + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + exécuter la commande + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::command ("bonjour tout le monde !"); +weechat::command ("/kick toto merci de quitter ce canal", "#weechat"); +weechat::command ("/nick newnick", "", "freenode"); + +# python +weechat.command ("bonjour tout le monde !") +weechat.command ("/kick toto merci de quitter ce canal", "#weechat") +weechat.command ("/nick newnick", "", "freenode") + +# ruby +Weechat.command ("bonjour tout le monde !") +Weechat.command ("/kick toto merci de quitter ce canal", "#weechat") +Weechat.command ("/nick newnick", "", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_info</title> + + <para> + Prototype Perl : + <command> + weechat::get_info ( nom, [serveur] ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_info ( nom, [serveur] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_info ( nom, [serveur] ) + </command> + </para> + <para> + Renvoie une information sur WeeChat ou un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>nom</option> : nom de l'info à obtenir + (voir <xref linkend="secAPI_get_info" />) + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + récupérer l'information (si nécessaire) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : l'information demandée, chaîne vide si une + erreur s'est produite ou que l'information n'a pas été trouvée. + </para> + <para> + Exemples : +<screen> +# perl +$version = get_info("version"); +$nick = get_info("nick", "freenode"); + +# python +version = weechat.get_info ("version") +nick = weechat.get_info ("nick", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_dcc_info</title> + + <para> + Prototype Perl : + <command> + weechat::get_dcc_info ( ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_dcc_info ( ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_dcc_info ( ) + </command> + </para> + <para> + Renvoie la liste des DCC en cours ou terminés. + </para> + <para> + Valeur renvoyée : la liste des DCC + (voir <xref linkend="secAPI_get_dcc_info" />). + </para> + </section> + + <section> + <title>get_config</title> + + <para> + Prototype Perl : + <command> + weechat::get_config ( option ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_config ( option ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_config ( option ) + </command> + </para> + <para> + Renvoie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, chaîne vide si l'option + n'a pas été trouvée. + </para> + <para> + Exemples : +<screen> +# perl +$value1 = weechat::get_config ("look_nicklist"); +$value2 = weechat::get_config ("freenode.server_autojoin"); + +# python +value1 = weechat.get_config ("look_nicklist") +value2 = weechat.get_config ("freenode.server_autojoin") +</screen> + </para> + </section> + + <section> + <title>set_config</title> + + <para> + Prototype Perl : + <command> + weechat::set_config ( option, valeur ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.set_config ( option, valeur ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.set_config ( option, valeur ) + </command> + </para> + <para> + Modifie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : la nouvelle valeur pour + l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est + produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::set_config ("look_nicklist", "off"); +weechat::set_config ("freenode.server_autojoin, "#weechat"); + +# python +weechat.set_config ("look_nicklist", "off") +weechat.set_config ("freenode.server_autojoin, "#weechat") + +# ruby +Weechat.set_config ("look_nicklist", "off") +Weechat.set_config ("freenode.server_autojoin, "#weechat") +</screen> + </para> + </section> + + <section> + <title>get_plugin_config</title> + + <para> + Prototype Perl : + <command> + weechat::get_plugin_config ( option ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Renvoie la valeur d'une option de l'extension. + L'option est lue depuis le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : + "<literal>extension.script.option=valeur</literal>" + (NB : le nom de l'extension et du script sont ajoutés + automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, chaîne vide si l'option + n'a pas été trouvée. + </para> + <para> + Exemples : +<screen> +# perl +$value = weechat::get_plugin_config ("ma_variable"); + +# python +value = weechat.get_plugin_config ("ma_variable") +</screen> + </para> + </section> + + <section> + <title>set_plugin_config</title> + + <para> + Prototype Perl : + <command> + weechat::set_plugin_config ( option, valeur ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Modifie la valeur d'une option de l'extension. + L'option est écrite dans le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : + "<literal>extension.script.option=valeur</literal>" + (NB : le nom de l'extension et du script sont rajoutés + automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : la nouvelle valeur pour + l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est + produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::set_plugin_config ("ma_variable", "valeur"); + +# python +weechat.set_plugin_config ("ma_variable", "valeur") + +# ruby +Weechat.set_plugin_config ("ma_variable", "valeur") +</screen> + </para> + </section> + + </section> + + </section> + + </chapter> + + <!-- ======================== Auteurs / Support ========================= --> + + <chapter id="chapAuteursSupport"> + <title>Auteurs / Support</title> + + <para> + Ce chapître liste les auteurs et contributeurs pour WeeChat, et + indique les moyens d'obtenir du support. + </para> + + <section id="secAuteurs"> + <title>Auteurs</title> + + <para> + WeeChat est développé par : + <itemizedlist> + <listitem> + <para> + <emphasis>FlashCode (Sébastien Helleu)</emphasis> + <email>flashcode AT flashtux.org</email> - + développeur principal + </para> + </listitem> + <listitem> + <para> + <emphasis>Kolter</emphasis> + <email>kolter AT free.fr</email> - + développeur + </para> + </listitem> + <listitem> + <para> + <emphasis>Ptitlouis</emphasis> + <email>ptitlouis AT sysif.net</email> - + empaqueteur Debian + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secContributeurs"> + <title>Contributeurs</title> + + <para> + Les personnes suivantes ont contribué à WeeChat : + <itemizedlist> + <listitem> + <para> + <emphasis>Jiri Golembiovsky</emphasis> - + traduction tchèque + </para> + </listitem> + <listitem> + <para> + <emphasis>Rudolf Polzer</emphasis> - + patchs + </para> + </listitem> + <listitem> + <para> + <emphasis>Jim Ramsay</emphasis> - + patchs + </para> + </listitem> + <listitem> + <para> + <emphasis>Pistos</emphasis> - + patchs + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secSupport"> + <title>Obtenir du support</title> + + <para> + Avant de faire appel au support, merci de lire la documentation et + la FAQ de WeeChat (la documentation est le document que vous êtes + en train de lire, si vous n'avez pas tout lu jusqu'ici, il est encore + temps de recommencer !) + </para> + + <para> + <itemizedlist> + <listitem> + <para> + IRC : serveur "<literal>irc.freenode.net</literal>", + canal "<literal>#weechat</literal>" + </para> + </listitem> + <listitem> + <para> + Forum WeeChat : + <ulink url="http://forums.flashtux.org"> + http://forums.flashtux.org + </ulink> + </para> + </listitem> + <listitem> + <para> + Liste de diffusion : + <itemizedlist> + <listitem> + <para> + Pour souscrire : + <ulink url="http://mail.nongnu.org/mailman/listinfo/weechat-support"> + http://mail.nongnu.org/mailman/listinfo/weechat-support + </ulink> + </para> + </listitem> + <listitem> + <para> + Pour envoyer un mail à la liste de diffusion : + <email>weechat-support@nongnu.org</email> + </para> + </listitem> + </itemizedlist> + Les archives de la liste de diffusion sont ici : + <ulink url="http://mail.nongnu.org/archive/html/weechat-support"> + http://mail.nongnu.org/archive/html/weechat-support + </ulink> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + </chapter> + +</book> diff --git a/doc/weechat-doc.css b/doc/weechat-doc.css new file mode 100644 index 000000000..6f8650351 --- /dev/null +++ b/doc/weechat-doc.css @@ -0,0 +1,49 @@ +/* + * WeeChat doc CSS + * (c) 2006 by FlashCode <flashcode@flashtux.org> + */ + +body { + font-size: 12px; +} + +table { + font-size: 12px; +} + +.informaltable table { + font-size: 11px; + font-family: Verdana; + border-collapse: collapse; +} + +.informaltable table th { + padding: 2px 5px 2px 5px; + border: solid 1px #AAAAAA; + background-color: #DDDDFF; +} + +.informaltable table td { + padding: 2px 5px 2px 5px; + border: solid 1px #AAAAAA; +} + +.oddrow { + background-color: #F0F0F0; +} + +.synopsis { + font-size: 11px; +} + +.programlisting { + font-size: 11px; +} + +pre.screen { + font-size: 11px; + background-color: #F5F5F5; + border: solid 1px #CCCCCC; + padding: 4px; + margin: 0 40px 0 40px; +} diff --git a/doc/weechat-html-one.xsl b/doc/weechat-html-one.xsl new file mode 100644 index 000000000..5427dbb3a --- /dev/null +++ b/doc/weechat-html-one.xsl @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl"/> + +<xsl:output indent="yes"/> + +<xsl:param name="chunk.section.depth" select="2"/> +<xsl:param name="chunk.quietly" select="1"/> +<xsl:param name="chunk.first.sections" select="1"/> +<xsl:param name="generate.section.toc.level" select="3"/> + +<xsl:param name="html.stylesheet">weechat-doc.css</xsl:param> + +<xsl:template name="tr.attributes"> + <xsl:param name="row" select="."/> + <xsl:param name="rownum" select="0"/> + + <xsl:if test="not(ancestor::table/@tabstyle = 'unstriped')"> + <xsl:if test="$rownum mod 2 = 0"> + <xsl:attribute name="class">oddrow</xsl:attribute> + </xsl:if> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> diff --git a/doc/weechat-html.xsl b/doc/weechat-html.xsl new file mode 100644 index 000000000..56fb6f96d --- /dev/null +++ b/doc/weechat-html.xsl @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl"/> + +<xsl:output indent="yes"/> + +<xsl:param name="chunk.section.depth" select="2"/> +<xsl:param name="chunk.quietly" select="1"/> +<xsl:param name="chunk.first.sections" select="1"/> +<xsl:param name="generate.section.toc.level" select="3"/> + +<xsl:param name="html.stylesheet">weechat-doc.css</xsl:param> + +<xsl:template name="tr.attributes"> + <xsl:param name="row" select="."/> + <xsl:param name="rownum" select="0"/> + + <xsl:if test="not(ancestor::table/@tabstyle = 'unstriped')"> + <xsl:if test="$rownum mod 2 = 0"> + <xsl:attribute name="class">oddrow</xsl:attribute> + </xsl:if> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> diff --git a/weechat/configure.in b/weechat/configure.in index 99794c467..3c98ee91f 100644 --- a/weechat/configure.in +++ b/weechat/configure.in @@ -402,6 +402,8 @@ esac AC_OUTPUT([Makefile doc/Makefile + doc/fr/Makefile + doc/en/Makefile src/Makefile src/common/Makefile src/irc/Makefile diff --git a/weechat/doc/Makefile.am b/weechat/doc/Makefile.am index ec9d20969..66ab6651e 100644 --- a/weechat/doc/Makefile.am +++ b/weechat/doc/Makefile.am @@ -1,4 +1,4 @@ -# Copyright (c) 2003-2005 FlashCode <flashcode@flashtux.org> +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -12,17 +12,11 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # -man_MANS = weechat-curses.1 - -info_TEXINFOS = weechat_doc_fr.texi weechat_doc_en.texi \ - weechat_doc_es.texi weechat_doc_pt.texi +SUBDIRS = fr en -#weechat_TEXINFOS = weechat_doc_fr.texi weechat_doc_en.texi \ -# weechat_doc_es.texi weechat_doc_pt.texi - -AM_MAKEINFOHTMLFLAGS = --no-split --number-sections +man_MANS = weechat-curses.1 -EXTRA_DIST = $(man_MANS) +EXTRA_DIST = $(man_MANS) weechat-doc.css weechat-html-one.xsl weechat-html.xsl diff --git a/weechat/doc/buildxml.pl b/weechat/doc/buildxml.pl new file mode 100755 index 000000000..0b578c2bf --- /dev/null +++ b/weechat/doc/buildxml.pl @@ -0,0 +1,169 @@ +#!/usr/bin/perl +# +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +# +# Build some XML code for WeeChat doc +# with weechat-curses command +# + +@all_lang = ("fr_FR", "en_US"); +%all_encodings = ("fr_FR" => "iso-8859-1", + "en_US" => "iso-8859-1"); +%all_types = ("fr_FR" => "type", + "en_US" => "type", + "es_ES" => "tipo"); +%all_values = ("fr_FR" => "valeurs", + "en_US" => "values", + "es_ES" => "valores"); +%all_default = ("fr_FR" => "valeur par défaut", + "en_US" => "default values", + "es_ES" => "valor por defecto"); +%all_desc = ("fr_FR" => "description", + "en_US" => "description", + "es_ES" => "descripción"); + +foreach $lng (@all_lang) +{ + create_commands ($lng, $all_encodings{$lng}, + "weechat-curses -w | tail +3", "weechat_commands"); + create_commands ($lng, $all_encodings{$lng}, + "weechat-curses -i | tail +3", "irc_commands"); + create_key_func ($lng, $all_encodings{$lng}, + "weechat-curses -f | tail +3", "key_functions"); + create_config ($lng, $all_encodings{$lng}, + "weechat-curses -c | tail +3", "config"); + print "\n"; +} + +sub create_commands +{ + $lang = $_[0]; + $lang2 = substr ($lang, 0, 2); + $encoding = $_[1]; + $command = $_[2]; + $file = $_[3]; + print "Creating $lang2/$file.xml ($lang)...\n"; + open XML, ">$lang2/$file.xml" or die "Error: can't write file!"; + print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n"; + + $started = 0; + $ENV{"LANG"} = $lang; + foreach (`$command`) + { + if (/\* (.*)/) + { + print XML "</programlisting>\n" if ($started == 1); + $started = 1; + print XML "<command>$1</command>\n"; + print XML "<programlisting>"; + } + else + { + chomp ($_); + print XML "$_\n"; + } + } + print XML "</programlisting>\n"; + close XML; + iconv_file ($lang2."/".$file, $encoding); +} + +sub create_key_func +{ + $lang = $_[0]; + $lang2 = substr ($lang, 0, 2); + $encoding = $_[1]; + $command = $_[2]; + $file = $_[3]; + print "Creating $lang2/$file.xml ($lang)...\n"; + open XML, ">$lang2/$file.xml" or die "Error: can't write file!"; + print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n"; + + $ENV{"LANG"} = $lang; + foreach (`$command`) + { + if (/\* (.*): (.*)/) + { + print XML "<row>\n"; + print XML " <entry><literal>$1</literal></entry>\n"; + print XML " <entry>$2</entry>\n"; + print XML "</row>\n"; + } + } + close XML; + iconv_file ($lang2."/".$file, $encoding); +} + +sub create_config +{ + $lang = $_[0]; + $lang2 = substr ($lang, 0, 2); + $encoding = $_[1]; + $command = $_[2]; + $file = $_[3]; + print "Creating $lang2/$file.xml ($lang)...\n"; + open XML, ">$lang2/$file.xml" or die "Error: can't write file!"; + print XML "<?xml version=\"1.0\" encoding=\"$encoding\"?>\n"; + $type = ""; + $values = ""; + $default = ""; + $desc = ""; + + $ENV{"LANG"} = $lang; + foreach (`weechat-curses -c`) + { + if (/\* (.*):/) + { + print XML "<row>\n"; + print XML " <entry><option>$1</option></entry>\n"; + } + elsif (/ \. $all_types{$lang}: (.*)/) + { + $type = $1; + } + elsif (/ \. $all_values{$lang}: (.*)/) + { + $values = $1; + } + elsif (/ \. $all_default{$lang}: (.*)/) + { + $default = $1; + } + elsif (/ \. $all_desc{$lang}: (.*)/) + { + $_ = $1; + s/(.*)/\u$1/; + $desc = $_; + print XML " <entry>".$type."</entry>\n"; + print XML " <entry>".$values."</entry>\n"; + print XML " <entry>".$default."</entry>\n"; + print XML " <entry>".$desc."</entry>\n"; + print XML "</row>\n"; + } + } + close XML; + iconv_file ($lang2."/".$file, $encoding); +} + +sub iconv_file +{ + print "Converting $_[0].xml to $_[1]...\n"; + system ("iconv -t $encoding -o $_[0].xml.$_[1] $_[0].xml"); + system ("mv $_[0].xml.$_[1] $_[0].xml"); +} diff --git a/weechat/doc/en/Makefile.am b/weechat/doc/en/Makefile.am new file mode 100644 index 000000000..6baa7cc0d --- /dev/null +++ b/weechat/doc/en/Makefile.am @@ -0,0 +1,59 @@ +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +LANGCODE = en +BOOK = weechat.$(LANGCODE) +BOOK_INCLUDE = weechat_commands.xml irc_commands.xml key_functions.xml config.xml + +EXTRA_DIST = $(BOOK).xml $(BOOK_INCLUDE) + +docdir = $(datadir)/doc/$(PACKAGE) + +all-local: html-stamp + +# HTML output with chunks (many pages) + +html: html-stamp + +html-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html.xsl ../weechat-doc.css + mkdir -p html/ + xsltproc -o html/ ../weechat-html.xsl $(BOOK).xml || true + cp ../weechat-doc.css html/ + touch html-stamp + +# HTML output, all in one page + +html1: html1-stamp + +html1-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html-one.xsl ../weechat-doc.css + mkdir -p html1/ + xsltproc -o html1/$(BOOK).html ../weechat-html-one.xsl $(BOOK).xml || true + cp ../weechat-doc.css html1/ + touch html1-stamp + +# install docs + +install-data-hook: + $(mkinstalldirs) $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + $(INSTALL_DATA) html/* $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + +# clean + +clean-local: + -rm -f *.html *.pdf *.txt + -rm -rf html/ html1/ + -rm -f html-stamp html1-stamp diff --git a/weechat/doc/en/weechat.en.xml b/weechat/doc/en/weechat.en.xml new file mode 100644 index 000000000..6ac8678c7 --- /dev/null +++ b/weechat/doc/en/weechat.en.xml @@ -0,0 +1,3483 @@ +<?xml version="1.0" encoding="iso-8859-1"?> + +<!-- + +WeeChat documentation (english version) + +Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org> + +This manual is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This manual is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +--> + +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"file:///usr/share/xml/docbook/schema/dtd/4.2/docbookx.dtd" +[ + <!ENTITY config.xml SYSTEM "config.xml"> + <!ENTITY weechat_commands.xml SYSTEM "weechat_commands.xml"> + <!ENTITY irc_commands.xml SYSTEM "irc_commands.xml"> + <!ENTITY key_functions.xml SYSTEM "key_functions.xml"> +]> + +<book lang="en"> + + <bookinfo> + + <title>WeeChat 0.1.7-cvs - User guide</title> + <subtitle>Fast, light and extensible IRC client</subtitle> + + <author> + <firstname>Sébastien</firstname> + <surname>Helleu</surname> + <email>flashcode AT flashtux.org</email> + </author> + + <copyright> + <year>2006</year> + <holder>Sébastien Helleu</holder> + </copyright> + + <legalnotice> + <para> + This manual is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + </para> + <para> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </para> + <para> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA + </para> + </legalnotice> + + <abstract> + <para> + This manual documents WeeChat IRC client, it is part of WeeChat. + </para> + <para> + Latest version of this document can be found on this page: + <ulink url="http://weechat.flashtux.org/doc.php"> + http://weechat.flashtux.org/doc.php + </ulink> + </para> + </abstract> + + </bookinfo> + + <!-- =========================== Introduction =========================== --> + + <chapter id="chapIntroduction"> + <title>Introduction</title> + + <para> + This chapter describes WeeChat and pre-requisites for its installation. + </para> + + <section id="secDescription"> + <title>Description</title> + + <para> + WeeChat (Wee Enhanced Environment for Chat) is a free + <acronym>IRC</acronym> client, fast and light, designed for many + operating systems. + </para> + + <para> + Main features are: + <itemizedlist> + <listitem> + <para> + multi-servers connection (with SSL, IPv6, proxy) + </para> + </listitem> + <listitem> + <para> + many GUI: Curses, wxWidgets, Gtk and Qt + </para> + </listitem> + <listitem> + <para> + small, fast and light + </para> + </listitem> + <listitem> + <para> + customizable and extensible with plugins and scripts + </para> + </listitem> + <listitem> + <para> + compliant with <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2810.txt">2810</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2811.txt">2811</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> and + <ulink url="http://www.ietf.org/rfc/rfc2813.txt">2813</ulink> + </para> + </listitem> + <listitem> + <para> + multi-platform (GNU/Linux, *BSD, MacOS X, Windows and other) + </para> + </listitem> + <listitem> + <para> + 100% GPL, free software + </para> + </listitem> + </itemizedlist> + </para> + + <para> + WeeChat homepage is here: + <ulink url="http://weechat.flashtux.org"> + http://weechat.flashtux.org + </ulink> + </para> + + </section> + + <section id="secPreRequis"> + <title>Pre-requisites</title> + + <para> + In order to install WeeChat, you <emphasis>need</emphasis>: + <itemizedlist> + <listitem> + <para> + a running GNU/Linux system (with compiler tools for source + package) + </para> + </listitem> + <listitem> + <para> + "root" privileges (to install WeeChat) + </para> + </listitem> + <listitem> + <para> + according to GUI, one of the following libraries: + <itemizedlist> + <listitem> + <para> + Curses: ncurses library + </para> + </listitem> + <listitem> + <para> + Gtk: <emphasis>*** GUI not developed ***</emphasis> + </para> + </listitem> + <listitem> + <para> + WxWidgets: <emphasis>*** GUI not developed ***</emphasis> + </para> + </listitem> + <listitem> + <para> + Qt: <emphasis>*** GUI not developed ***</emphasis> + </para> + </listitem> + </itemizedlist> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + </chapter> + + <!-- =========================== Installation =========================== --> + + <chapter id="chapInstallation"> + <title>Installation</title> + + <para> + This chapter explains how to install WeeChat. + </para> + + <section id="secBinaryPackages"> + <title>Binary packages</title> + + <para> + Binary packages are available for these distributions: + <itemizedlist> + <listitem> + <para> + Debian (or any Debian compatible distribution): + <userinput>apt-get install weechat</userinput> + </para> + </listitem> + <listitem> + <para> + Mandriva/RedHat (or any RPM compatible distribution): + <userinput> + rpm -i /chemin/weechat-x.y.z-1.i386.rpm + </userinput> + </para> + </listitem> + <listitem> + <para> + Gentoo : + <userinput>emerge weechat</userinput> + </para> + </listitem> + </itemizedlist> + + For other distributions, please look at your manual for + installation instructions. + </para> + + </section> + + <section id="secSourcePackage"> + <title>Source package</title> + + <para> + All you have to do is to run in a console or a terminal: +<screen><prompt>$ </prompt><userinput>./configure</userinput> +<prompt>$ </prompt><userinput>make</userinput></screen> + </para> + <para> + Then get root privileges and install WeeChat: +<screen><prompt>$ </prompt><userinput>su</userinput> +(enter root password) +<prompt># </prompt><userinput>make install</userinput></screen> + </para> + + </section> + + <section id="secCVSSources"> + <title>CVS sources</title> + + <para> + Warning: CVS sources are for advanced users: it may not compile + or not be stable. You're warned! + </para> + + <para> + To get CVS sources, issue this command: +<screen><prompt>$ </prompt><userinput>cvs -z3 -d:pserver:anonymous@cvs.savannah.nongnu.org:/sources/weechat co weechat</userinput></screen> + </para> + + <para> + Execute this script: + <userinput>./autogen.sh</userinput> + </para> + + <para> + Then follow instructions for source package + (see <xref linkend="secSourcePackage" />) + </para> + + </section> + + </chapter> + + <!-- ============================== Usage =============================== --> + + <chapter id="chapUsage"> + <title>Usage</title> + + <para> + This chapter explains how to run WeeChat, the default key bindings + used, internal and IRC commands, setup file, and FIFO pipe use. + </para> + + <section id="secRunWeeChat"> + <title>Run WeeChat</title> + + <para> + Command line arguments: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Parameter</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>-a, --no-connect</literal></entry> + <entry> + Disable auto-connect to servers at startup + </entry> + </row> + <row> + <entry><literal>-c, --config</literal></entry> + <entry> + Display config help (list of options) + </entry> + </row> + <row> + <entry><literal>-f, --key-functions</literal></entry> + <entry> + Display WeeChat internal functions for keys + </entry> + </row> + <row> + <entry><literal>-h, --help</literal></entry> + <entry> + Display help + </entry> + </row> + <row> + <entry><literal>-i, --irc-commands</literal></entry> + <entry> + Display IRC commands list + </entry> + </row> + <row> + <entry><literal>-k, --keys</literal></entry> + <entry> + Display WeeChat default keys + </entry> + </row> + <row> + <entry><literal>-l, --license</literal></entry> + <entry> + Display WeeChat license + </entry> + </row> + <row> + <entry><literal>-p, --no-plugin</literal></entry> + <entry> + Disable plugins auto-load + </entry> + </row> + <row> + <entry><literal>-v, --version</literal></entry> + <entry> + Display WeeChat version + </entry> + </row> + <row> + <entry><literal>-w, --weechat-commands</literal></entry> + <entry> + Display WeeChat commands list + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + It is also possible to give URL for one or many IRC servers, as + follow: + <screen>irc[6][s]://[pseudo[:mot_passe]@]irc.example.org[:port][/channel][,channel[...]</screen> + Example to join #weechat and #toto on + "<literal>irc.freenode.net</literal>" server, default port (6667), + with "nono" nick: + <screen><prompt>$ </prompt><userinput>weechat-curses irc://nono@irc.freenode.net/#weechat,#toto</userinput></screen> + </para> + + <para> + To start WeeChat, issue this command: + <itemizedlist> + <listitem> + <para> + for Curses GUI: <userinput>weechat-curses</userinput> + </para> + </listitem> + <listitem> + <para> + for Gtk GUI: <userinput>weechat-gtk</userinput> + </para> + </listitem> + <listitem> + <para> + for wxWidgets GUI: <userinput>weechat-wxwidgets</userinput> + </para> + </listitem> + <listitem> + <para> + for Qt GUI: <userinput>weechat-qt</userinput> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + When you run WeeChat for the first time, a default configuration + file is created, with default options. + The default configuration file is: + "<literal>~/.weechat/weechat.rc</literal>" + </para> + + <para> + You can edit thie file at your convenience to configure WeeChat + (ONLY if WeeChat is not running), or you can set parameters with + "<literal>/set</literal>" command in WeeChat + (see <xref linkend="secWeeChatCommands" />) + </para> + + </section> + + <section id="secKeyboardShortcuts"> + <title>Key bindings</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Key</entry> + <entry>Action</entry> + </row> + </thead> + <tbody> + <row> + <entry>Left arrow</entry> + <entry> + Go to previous char in command line + </entry> + </row> + <row> + <entry>Right arrow</entry> + <entry> + Go to next char in command line + </entry> + </row> + <row> + <entry>Ctrl + left arrow</entry> + <entry> + Go to previous word in command line + </entry> + </row> + <row> + <entry>Ctrl + right arrow</entry> + <entry> + Go to next word in command line + </entry> + </row> + <row> + <entry>Home / Ctrl + A</entry> + <entry> + Go to the beginning of command line + </entry> + </row> + <row> + <entry>End / Ctrl + E</entry> + <entry> + Go to the end of command line + </entry> + </row> + <row> + <entry>Ctrl + K</entry> + <entry> + Delete from cursor until end of command line + </entry> + </row> + <row> + <entry>Ctrl + L</entry> + <entry> + Redraw whole window + </entry> + </row> + <row> + <entry>Ctrl + U</entry> + <entry> + Delete from cursor until beginning of command line + </entry> + </row> + <row> + <entry>Ctrl + W</entry> + <entry> + Delete previous word of command line + </entry> + </row> + <row> + <entry>Backspace</entry> + <entry> + Delete previous char in command line + </entry> + </row> + <row> + <entry>Delete</entry> + <entry> + Delete next char in command line + </entry> + </row> + <row> + <entry>Tab</entry> + <entry> + Complete command or nick + (Tab again: find next completion) + </entry> + </row> + <row> + <entry>Any char</entry> + <entry> + Insert char at cursor position in command line + </entry> + </row> + <row> + <entry>Enter</entry> + <entry> + Execute command or send message + </entry> + </row> + <row> + <entry>Up arrow / Down arrow</entry> + <entry> + Call again last commands/messages + </entry> + </row> + <row> + <entry>Ctrl + up arrow / Ctrl + down arrow</entry> + <entry> + Call again last commands/messages in global history + (common for all buffers) + </entry> + </row> + <row> + <entry>PageUp / PageDown</entry> + <entry> + Show buffer history + </entry> + </row> + <row> + <entry>F5 / Alt + left arrow</entry> + <entry> + Switch to previous buffer + </entry> + </row> + <row> + <entry>F6 / Alt + right arrow</entry> + <entry> + Switch to next buffer + </entry> + </row> + <row> + <entry>F7</entry> + <entry> + Switch to previous window + </entry> + </row> + <row> + <entry>F8</entry> + <entry> + Switch to next window + </entry> + </row> + <row> + <entry>F10</entry> + <entry> + Remove last infobar message + </entry> + </row> + <row> + <entry>F11 / F12</entry> + <entry> + Scroll nicklist + </entry> + </row> + <row> + <entry>Alt + Home / Alt + End</entry> + <entry> + Go to the beginning / the end of nicklist + </entry> + </row> + <row> + <entry>Alt + A</entry> + <entry> + Switch to next buffer with activity + (with priority: highlight, message, other) + </entry> + </row> + <row> + <entry>Alt + B</entry> + <entry> + Go to previous word in command line + </entry> + </row> + <row> + <entry>Alt + D</entry> + <entry> + Delete next word in command line + </entry> + </row> + <row> + <entry>Alt + F</entry> + <entry> + Go to next word in command line + </entry> + </row> + <row> + <entry>Alt + H</entry> + <entry> + Clear hotlist + (activity notification on other buffers) + </entry> + </row> + <row> + <entry>Alt + J then Alt + D</entry> + <entry> + Display DCC buffer + </entry> + </row> + <row> + <entry>Alt + J then Alt + L</entry> + <entry> + Switch to last buffer + </entry> + </row> + <row> + <entry>Alt + J then Alt + S</entry> + <entry> + Switch to server buffer + </entry> + </row> + <row> + <entry>Alt + J puis Alt + X</entry> + <entry> + Switch to first channel of next buffer + (or server buffer if no channel is opened) + </entry> + </row> + <row> + <entry>Alt + digit (0-9)</entry> + <entry> + Switch to buffer by number (0 = 10) + </entry> + </row> + <row> + <entry>Alt + J then number (01-99)</entry> + <entry> + Switch to buffer by number + </entry> + </row> + <row> + <entry>Alt + K</entry> + <entry> + Grab a key and insert its code in command line + </entry> + </row> + <row> + <entry>Alt + N</entry> + <entry> + Scroll to next highlight + </entry> + </row> + <row> + <entry>Alt + P</entry> + <entry> + Scroll to previous highlight + </entry> + </row> + <row> + <entry>Alt + R</entry> + <entry> + Delete entire command line + </entry> + </row> + <row> + <entry>Alt + S</entry> + <entry> + Switch servers on servers buffer + (if option "look_one_server_buffer" is enabled) + </entry> + </row> + <row> + <entry>Alt + U</entry> + <entry> + Scroll to first unread line in buffer + </entry> + </row> + <row> + <entry>Alt + W then Alt + flèche</entry> + <entry> + Switch to window with direction + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secWeeChatIRCCommands"> + <title>WeeChat / IRC commands</title> + + <para> + This chapter lists all WeeChat and IRC commands. + </para> + + <section id="secWeeChatCommands"> + <title>WeeChat commands</title> + + <para> + &weechat_commands.xml; + </para> + + </section> + + <section id="secKeyFunctions"> + <title>Key functions</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Function</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &key_functions.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secIRCCommands"> + <title>IRC commands</title> + + <para> + &irc_commands.xml; + </para> + + </section> + + </section> + + <section id="secConfigurationFile"> + <title>Configuration file</title> + + <para> + List of options for config file: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Option</entry> + <entry>Type</entry> + <entry>Values</entry> + <entry>Default</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &config.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + Colors for Curses GUI are: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Keyword</entry> + <entry>Color</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>default</literal></entry> + <entry>default color (transparent for background)</entry> + </row> + <row> + <entry><literal>black</literal></entry> + <entry>black</entry> + </row> + <row> + <entry><literal>red</literal></entry> + <entry>dark red</entry> + </row> + <row> + <entry><literal>lightred</literal></entry> + <entry>light red</entry> + </row> + <row> + <entry><literal>green</literal></entry> + <entry>dark green</entry> + </row> + <row> + <entry><literal>lightgreen</literal></entry> + <entry>light green</entry> + </row> + <row> + <entry><literal>brown</literal></entry> + <entry>brown</entry> + </row> + <row> + <entry><literal>yellow</literal></entry> + <entry>yellow</entry> + </row> + <row> + <entry><literal>blue</literal></entry> + <entry>dark blue</entry> + </row> + <row> + <entry><literal>lightblue</literal></entry> + <entry>light blue</entry> + </row> + <row> + <entry><literal>magenta</literal></entry> + <entry>dark magenta</entry> + </row> + <row> + <entry><literal>lightmagenta</literal></entry> + <entry>light magenta</entry> + </row> + <row> + <entry><literal>cyan</literal></entry> + <entry>dark cyan</entry> + </row> + <row> + <entry><literal>lightcyan</literal></entry> + <entry>light cyan</entry> + </row> + <row> + <entry><literal>white</literal></entry> + <entry>white</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secFIFOpipe"> + <title>FIFO pipe</title> + + <para> + You can remote control WeeChat, by sending commands or text to a + FIFO pipe (you have to enable option "irc_fifo_pipe", it is disabled + by default). + </para> + + <para> + The FIFO pipe is located in "<literal>~/.weechat/</literal>" and is + called "weechat_fifo_xxxxx" (where xxxxx is the process ID (PID) of + running WeeChat). So if many WeeChat are running, you have many FIFO + pipes, one for each session. + </para> + + <para> + The syntax for the FIFO pipe commands/text is: + <screen>server,channel *text or command here</screen> + where server and channel are optional, but if channel is here, server + should be too. + </para> + + <para> + Some examples: + <itemizedlist> + <listitem> + <para> + nick change on freenode to "mynick|out" : + <screen><prompt>$ </prompt><userinput>echo "freenode */nick mynick|out" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + display text on #weechat channel: + <screen><prompt>$ </prompt><userinput>echo "freenode,#weechat *hello everybody!" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + display text on current channel (buffer displayed by WeeChat): + <screen><prompt>$ </prompt><userinput>echo "*hello!" >~/.weechat/weechat_fifo_12345</userinput></screen> + <emphasis>Warning:</emphasis> this is dangerous and you should + not do that except if you know what you do! + </para> + </listitem> + <listitem> + <para> + send two commands to unload/reload Perl scripts (you have to + separate them with "\n"): + <screen><prompt>$ </prompt><userinput>echo -e "freenode */perl unload\nfreenode */perl autoload" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + You can write a script to send command to all running WeeChat at same + time, for example: +<screen> +#!/bin/sh +if [ $# -eq 1 ]; then + for fifo in $(/bin/ls ~/.weechat/weechat_fifo_* 2>/dev/null); do + echo -e "$1" >$fifo + done +fi +</screen> + If the script is called "auto_weechat_command", you can run it with: + <screen><prompt>$ </prompt><userinput>./auto_weechat_command "freenode,#weechat *hello"</userinput></screen> + </para> + + </section> + + </chapter> + + <!-- ============================ Extensions ============================ --> + + <chapter id="chapPlugins"> + <title>Plugins</title> + + <para> + This chapter describes WeeChat plugins interface (API) and + the default scripts plugins (Perl, Python, Ruby), provided with + WeeChat. + </para> + + <section id="secPluginsInWeeChat"> + <title>Plugins in WeeChat</title> + + <para> + A plugin is a C program which can call WeeChat functions defined in + an interface. + </para> + + <para> + This C program does not need WeeChat sources to compile and can be + dynamically loaded into WeeChat with command + <command>/plugin</command>. + </para> + + <para> + The plugin has to be a dynamic library, for dynamic loading by + operating system. + Under GNU/Linux, the file has ".so" extension, ".dll" under + Windows. + </para> + + </section> + + <section id="secWriteAPlugin"> + <title>Write a plugin</title> + + <para> + The plugin has to include "weechat-plugin.h" file (available in + WeeChat source code). + This file defines structures and types used to communicate with + WeeChat. + </para> + + <para> + The plugin must have some variables and functions (mandatory, + without them the plugin can't load): + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Variable</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>char plugin_name[]</literal></entry> + <entry>plugin name</entry> + </row> + <row> + <entry><literal>char plugin_version[]</literal></entry> + <entry>plugin version</entry> + </row> + <row> + <entry><literal>char plugin_description[]</literal></entry> + <entry>short description of plugin</entry> + </row> + </tbody> + </tgroup> + </informaltable> + + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Function</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>int weechat_plugin_init (t_weechat_plugin *plugin)</literal></entry> + <entry> + function called when plugin is loaded, must return + PLUGIN_RC_OK if successful, PLUGIN_RC_KO if error + (if error, plugin will NOT be loaded) + </entry> + </row> + <row> + <entry><literal>void weechat_plugin_end (t_weechat_plugin *plugin)</literal></entry> + <entry>function called when plugin is unloaded</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <section id="secAPIFunctions"> + <title>API functions</title> + + <section id="secAPI_ascii_strcasecmp"> + <title>ascii_strcasecmp</title> + + <para> + Prototype: + <command> + int ascii_strcasecmp (t_weechat_plugin *plugin, + char *string1, char *string2) + </command> + </para> + <para> + Locale and case independent string comparison. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>string1</option>: first string for comparison + </para> + </listitem> + <listitem> + <para> + <option>string2</option>: second string for comparison + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: difference between two strings: negative if + string1 < string2, zero if string1 == string2, positive if + string1 > string2 + </para> + <para> + Example: + <screen>if (plugin->ascii_strcasecmp (plugin, "abc", "def") != 0) ...</screen> + </para> + </section> + + <section id="secAPI_ascii_strncasecmp"> + <title>ascii_strncasecmp</title> + + <para> + Prototype: + <command> + int ascii_strncasecmp (t_weechat_plugin *plugin, + char *string1, char *string2, int max) + </command> + </para> + <para> + Locale and case independent string comparison, for "max" chars. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin struct + </para> + </listitem> + <listitem> + <para> + <option>string1</option>: first string for comparison + </para> + </listitem> + <listitem> + <para> + <option>string2</option>: second string for comparison + </para> + </listitem> + <listitem> + <para> + <option>max</option>: max number of chars for comparison + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: difference between two strings: negative if + string1 < string2, zero if string1 == string2, positive if + string1 > string2 + </para> + <para> + Example: + <screen>if (plugin->ascii_strncasecmp (plugin, "abc", "def", 2) != 0) ...</screen> + </para> + </section> + + <section id="secAPI_explode_string"> + <title>explode_string</title> + + <para> + Prototype: + <command> + char **explode_string (t_weechat_plugin *plugin, char *string, + char *separators, int num_items_max, int *num_items) + </command> + </para> + <para> + Explode a string according to one or more delimiter(s). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin struct + </para> + </listitem> + <listitem> + <para> + <option>string</option>: string to explode + </para> + </listitem> + <listitem> + <para> + <option>separators</option>: delimiters used for explosion + </para> + </listitem> + <listitem> + <para> + <option>num_items_max</option>: maximum number of items + created (0 = no limit) + </para> + </listitem> + <listitem> + <para> + <option>num_items</option>: pointer to int which will + contain number of items created + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: array of strings, NULL if problem. + </para> + <para> + Note: result has to be free by a call to "free_exloded_string" + after use. + </para> + <para> + Example: +<screen> +char **argv; +int argc; +argv = plugin->explode_string (plugin, string, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_free_exploded_string"> + <title>free_exploded_string</title> + + <para> + Prototype: + <command> + char **free_exploded_string (t_weechat_plugin *plugin, + char **string) + </command> + </para> + <para> + Free memory used by a string explosion. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>string</option>: string exploded by + "explode_string" function + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: +<screen> +char *argv; +int argc; +argv = plugin->explode_string (plugin, string, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_exec_on_files"> + <title>exec_on_files</title> + + <para> + Prototype: + <command> + void exec_on_files (t_weechat_plugin *plugin, char *repertoire, + int (*callback)(t_weechat_plugin *, char *)) + </command> + </para> + <para> + Execute a function on all files of a directory. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer tu plugin structure + </para> + </listitem> + <listitem> + <para> + <option>directory</option>: directory for searching files + </para> + </listitem> + <listitem> + <para> + <option>callback</option>: function called for each file + found + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: +<screen> +int callback (t_weechat_plugin *plugin, char *file) +{ + plugin->printf_server (plugin, "file: %s", file); + return 1; +} +... +plugin->exec_on_files (plugin, "/tmp", &callback); +</screen> + </para> + </section> + + <section id="secAPI_printf"> + <title>printf</title> + + <para> + Prototype: + <command> + void printf (t_weechat_plugin *plugin, + char *server, char *channel, char *message, ...) + </command> + </para> + <para> + Display a message on a WeeChat buffer, identified by server and + channel (both may be NULL for current buffer). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server to find + buffer for message display (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel to find buffer + for message display (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Examples: +<screen> +plugin->printf (plugin, NULL, NULL, "hello"); +plugin->printf (plugin, NULL, "#weechat", "hello"); +plugin->printf (plugin, "freenode", "#weechat", "hello"); +</screen> + </para> + </section> + + <section id="secAPI_printf_server"> + <title>printf_server</title> + + <para> + Prototype: + <command> + void printf_server (t_weechat_plugin *plugin, + char *message, ...) + </command> + </para> + <para> + Display a message on current server buffer. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: <screen>plugin->printf_server (plugin, "hello");</screen> + </para> + </section> + + <section id="secAPI_printf_infobar"> + <title>printf_infobar</title> + + <para> + Prototype: + <command> + void printf_infobar (t_weechat_plugin *plugin, + int time, char *message, ...) + </command> + </para> + <para> + Display a message in infobar for a specified time. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>time</option>: time (in seconds) for displaying + message (0 = never erased) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: +<screen> +plugin->printf_infobar (plugin, 5, "hello"); +</screen> + </para> + </section> + + <section id="secAPI_msg_handler_add"> + <title>msg_handler_add</title> + + <para> + Prototype: + <command> + t_plugin_handler *msg_handler_add (t_weechat_plugin + *plugin, char *message, t_plugin_handler_func *function, + char *handler_args, void *handler_pointer) + </command> + </para> + <para> + Add an IRC message handler, called when an IRC message is + received. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>message</option>: name of IRC message. + To know list of IRC messages, please consult + <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> and + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function called when message + is received + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option>: arguments given to function + when called + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option>: pointer given to function + when called + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: pointer to new message handler. + </para> + <para> + Note: function called when message is received has to return + one of following values: + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal>: function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal>: function successfully + completed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal>: message + will not be sent to WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal>: message + will not be sent to other plugins + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal>: message + will not be sent to WeeChat neither other plugins + </para> + </listitem> + </itemizedlist> + </para> + <para> + Example: +<screen> +int msg_kick (t_weechat_plugin *plugin, char *server, char *command, + char *arguments, char *handler_args, void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, "KICK received"); + return PLUGIN_RC_OK; +} +... +plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); +</screen> + </para> + </section> + + <section id="secAPI_cmd_handler_add"> + <title>cmd_handler_add</title> + + <para> + Prototype: + <command> + t_plugin_handler *cmd_handler_add (t_weechat_plugin + *plugin, char *command, char *description, char *arguments, + char *arguments_description, char *completion_template, + t_plugin_handler_func *fonction, char *handler_args, + void *handler_pointer) + </command> + </para> + <para> + Add a WeeChat command handler, called when user uses command + (for example /command). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>command</option>: the new command name, which + may be an existing command (be careful, replaced command + will not be available until plugin is unloaded) + </para> + </listitem> + <listitem> + <para> + <option>description</option>: short command description + (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>arguments</option>: short description of command + arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option>: long description + of command arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>completion_template</option>: template for + completion, like "<literal>abc|%w def|%i</literal>" + which means "abc" or a WeeChat command for first argument, + "def" or IRC command for second. + An empty string lets WeeChat complete any argument with + a nick from current channel, NULL disable completion for + all command arguments. + </para> + <para> + Following codes can be used: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Code</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>%-</literal></entry> + <entry>no completion for argument</entry> + </row> + <row> + <entry><literal>%a</literal></entry> + <entry>alias</entry> + </row> + <row> + <entry><literal>%A</literal></entry> + <entry> + alias and commandes (WeeChat, IRC and plugins) + </entry> + </row> + <row> + <entry><literal>%c</literal></entry> + <entry>current channel</entry> + </row> + <row> + <entry><literal>%C</literal></entry> + <entry>channels of current server</entry> + </row> + <row> + <entry><literal>%f</literal></entry> + <entry>filename</entry> + </row> + <row> + <entry><literal>%h</literal></entry> + <entry>plugins commands</entry> + </row> + <row> + <entry><literal>%i</literal></entry> + <entry>IRC commands (sent)</entry> + </row> + <row> + <entry><literal>%I</literal></entry> + <entry>IRC commands (received)</entry> + </row> + <row> + <entry><literal>%k</literal></entry> + <entry>key functions</entry> + </row> + <row> + <entry><literal>%n</literal></entry> + <entry>nicks of current channel</entry> + </row> + <row> + <entry><literal>%o</literal></entry> + <entry>setup options</entry> + </row> + <row> + <entry><literal>%p</literal></entry> + <entry>default "part" message</entry> + </row> + <row> + <entry><literal>%q</literal></entry> + <entry>default "quit" message</entry> + </row> + <row> + <entry><literal>%s</literal></entry> + <entry>current server name</entry> + </row> + <row> + <entry><literal>%S</literal></entry> + <entry>all servers names</entry> + </row> + <row> + <entry><literal>%t</literal></entry> + <entry>topic of current channel</entry> + </row> + <row> + <entry><literal>%v</literal></entry> + <entry>setup option value</entry> + </row> + <row> + <entry><literal>%w</literal></entry> + <entry>WeeChat commands</entry> + </row> + <row> + <entry><literal>%y</literal></entry> + <entry>default "away" message</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function called when command + is executed + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option>: arguments given to function + when called + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option>: pointer given to function + when called + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: pointer to new command handler. + </para> + <para> + Note: function called when command is executed has to return + one of following values: + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal>: function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal>: function successfulle + completed + </para> + </listitem> + </itemizedlist> + </para> + <para> + Example: +<screen> +int cmd_test (t_weechat_plugin *plugin, char *server, + char *command, char *arguments, char *handler_args, + void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, + "test command, nick: %s", + (arguments) ? arguments : "none"); + return PLUGIN_RC_OK; +} +... +plugin->cmd_handler_add (plugin, "test", "Test command", + "[nick]", "nick: nick of channel", + "%n", &cmd_test, NULL, NULL); +</screen> + </para> + </section> + + <section id="secAPI_handler_remove"> + <title>handler_remove</title> + + <para> + Prototype: + <command> + void handler_remove (t_weechat_plugin *plugin, + t_plugin_handler *handler) + </command> + </para> + <para> + Remove a handler. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>handler</option>: handler to remove + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: + <screen>plugin->handler_remove (plugin, my_handler);</screen> + </para> + </section> + + <section id="secAPI_handler_remove_all"> + <title>handler_remove_all</title> + + <para> + Prototype: + <command> + void handler_remove_all (t_weechat_plugin *plugin) + </command> + </para> + <para> + Remove all handlers for a plugin. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: + <screen>plugin->handler_remove_all (plugin);</screen> + </para> + </section> + + <section id="secAPI_exec_command"> + <title>exec_command</title> + + <para> + Prototype: + <command> + void exec_command (t_weechat_plugin + *plugin, char *server, char *channel, char *command) + </command> + </para> + <para> + Execute a WeeChat command (or send a message to a channel). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + executing command (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel for executing + command (may be NULL) + </para> + </listitem> + <listitem> + <para> + <option>command</option>: command + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Examples: +<screen> +plugin->exec_command (plugin, NULL, NULL, "/help nick"); +plugin->exec_command (plugin, "freenode", "#weechat", "hello"); +</screen> + </para> + </section> + + <section id="secAPI_get_info"> + <title>get_info</title> + + <para> + Prototype: + <command> + char *get_info (t_weechat_plugin *plugin, + char *info, char *server) + </command> + </para> + <para> + Return an info about WeeChat or a channel. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>info</option> : name of info to read: + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Info</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>version</literal></entry> + <entry>WeeChat's version</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>nick</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry> + name of channel (NULL for a server or private) + </entry> + </row> + <row> + <entry><literal>server</literal></entry> + <entry>name of server</entry> + </row> + <row> + <entry><literal>away</literal></entry> + <entry>"away" flag</entry> + </row> + <row> + <entry><literal>weechat_dir</literal></entry> + <entry> + WeeChat home dir + (by default: ~/.weechat/) + </entry> + </row> + <row> + <entry><literal>weechat_libdir</literal></entry> + <entry>WeeChat system lib directory</entry> + </row> + <row> + <entry><literal>weechat_sharedir</literal></entry> + <entry>WeeChat system share directory</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + reading info (if needed) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: information asked, NULL if not found. + </para> + <para> + Note: result has to be free by a call to "free" function after + use. + </para> + <para> + Examples: +<screen> +char *version = plugin->get_info (plugin, "version", NULL); +char *nick = plugin->get_info (plugin, "nick", "freenode"); +</screen> + </para> + </section> + + <section id="secAPI_get_dcc_info"> + <title>get_dcc_info</title> + + <para> + Prototype: + <command> + t_plugin_info_dcc *get_dcc_info (t_weechat_plugin *plugin) + </command> + </para> + <para> + Return list of DCC currently active or finished. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: linked list of DCC. + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Field</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>server</literal></entry> + <entry>IRC server</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry>IRC channel</entry> + </row> + <row> + <entry><literal>type</literal></entry> + <entry> + DCC type: + 0 = chat received, + 1 = chat sent, + 2 = file received, + 3 = file sent + </entry> + </row> + <row> + <entry><literal>status</literal></entry> + <entry> + DCC status: + 0 = waiting, + 1 = connecting, + 2 = active, + 3 = finished, + 4 = failed, + 5 = interrupted by user + </entry> + </row> + <row> + <entry><literal>start_time</literal></entry> + <entry>date/time of DCC creation</entry> + </row> + <row> + <entry><literal>start_transfer</literal></entry> + <entry>date/time of DCC transfert start</entry> + </row> + <row> + <entry><literal>addr</literal></entry> + <entry>IP address of remote user</entry> + </row> + <row> + <entry><literal>port</literal></entry> + <entry>port used for DCC</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>remote nick</entry> + </row> + <row> + <entry><literal>filename</literal></entry> + <entry>file name</entry> + </row> + <row> + <entry><literal>local_filename</literal></entry> + <entry>local file name</entry> + </row> + <row> + <entry><literal>size</literal></entry> + <entry>file size</entry> + </row> + <row> + <entry><literal>pos</literal></entry> + <entry>position in file</entry> + </row> + <row> + <entry><literal>start_resume</literal></entry> + <entry>start position after interruption</entry> + </row> + <row> + <entry><literal>bytes_per_sec</literal></entry> + <entry> + number of bytes per second since transfert start + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + <para> + Note: result has to be free by a call to "free_dcc_info" function + after use. + </para> + <para> + Examples: +<screen> +t_plugin_dcc_info *dcc_info = plugin->get_dcc_info (plugin); +for (ptr_dcc = dcc_info; ptr_dcc; ptr_dcc = ptr_dcc->next_dcc) +{ + plugin->printf_server (plugin, "DCC type=%d, with: %s", + ptr_dcc->type, ptr_dcc->nick); +} +if (dcc_info) + plugin->free_dcc_info (plugin, dcc_info); +</screen> + </para> + </section> + + <section id="secAPI_free_dcc_info"> + <title>free_dcc_info</title> + + <para> + Prototype : + <command> + void free_dcc_info (t_weechat_plugin *plugin, + t_plugin_dcc_info *dcc_info) + </command> + </para> + <para> + Free memory used by a DCC list. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>dcc_info</option>: pointer to DCC list returned by + "get_dcc_info" function + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: none. + </para> + <para> + Example: + <screen>plugin->free_dcc_info (plugin, dcc_info);</screen> + </para> + </section> + + <section id="secAPI_get_config"> + <title>get_config</title> + + <para> + Prototype : + <command> + char *get_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Return value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: option value, NULL if not found. + </para> + <para> + Note: result has to be free by a call to "free" function after + use. + </para> + <para> + Examples: +<screen> +char *value1 = plugin->get_config (plugin, "look_set_title"); +char *value2 = plugin->get_config (plugin, "freenode.server_autojoin"); +</screen> + </para> + </section> + + <section id="secAPI_set_config"> + <title>set_config</title> + + <para> + Prototype: + <command> + int set_config (t_weechat_plugin *plugin, + char *option, char *value) + </command> + </para> + <para> + Update value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an + error occured. + </para> + <para> + Example: +<screen> +plugin->set_config (plugin, "look_nicklist", "off"); +</screen> + </para> + </section> + + <section id="secAPI_get_plugin_config"> + <title>get_plugin_config</title> + + <para> + Prototype: + <command> + char *get_plugin_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Return value of a plugin option. + Option is read from file "<literal>~/.weechat/plugins.rc</literal>" + and is like: "<literal>plugin.option=value</literal>" + (note: plugin name is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: option value, NULL if not found. + </para> + <para> + Note: result has to be free by a call to "free" function after + use. + </para> + <para> + Example: +<screen> +char *value = plugin->get_plugin_config (plugin, "my_var"); +</screen> + </para> + </section> + + <section id="secAPI_set_plugin_config"> + <title>set_plugin_config</title> + + <para> + Prototype: + <command> + int set_plugin_config (t_weechat_plugin *plugin, + char *option, char *value) + </command> + </para> + <para> + Update value of a plugin option. + Option is written in file "<literal>~/.weechat/plugins.rc</literal>" + and is like: "<literal>plugin.option=value</literal>" + (note: plugin name is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>plugin</option>: pointer to plugin structure + </para> + </listitem> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an + error occurred. + </para> + <para> + Example : +<screen> +plugin->set_plugin_config (plugin, "my_var", "value"); +</screen> + </para> + </section> + + </section> + + <section id="secCompilePlugin"> + <title>Compile plugin</title> + + <para> + Compile does not need WeeChat sources, only file + "<literal>weechat-plugin.h</literal>". + </para> + + <para> + To compile a plugin which has one file "toto.c" (sous GNU/Linux): +<screen> +<prompt>$ </prompt><userinput>gcc -fPIC -Wall -c toto.c</userinput> +<prompt>$ </prompt><userinput>gcc -shared -fPIC -o libtoto.so toto.o</userinput> +</screen> + </para> + + </section> + + <section id="secLoadPlugin"> + <title>Load plugin into WeeChat</title> + + <para> + Copy "libtoto.so" file into system plugins dir (for example + "<literal>/usr/local/lib/weechat/plugins</literal>") or into + user's plugins dir (for example + "<literal>/home/xxxxx/.weechat/plugins</literal>"). + </para> + + <para> + Under WeeChat: + <screen><userinput>/plugin load toto</userinput></screen> + </para> + + </section> + + <section id="secPluginExample"> + <title>Plugin example</title> + + <para> + Full example of plugin, which adds a /double command, which displays + two times arguments on current channel (ok that's not very useful, but + that's just an example!): +<screen> +#include <stdlib.h> + +#include "weechat-plugin.h" + +char plugin_name[] = "Double"; +char plugin_version[] = "0.1"; +char plugin_description[] = "Test plugin for WeeChat"; + +/* gestionnaire de commande "/double" */ + +int double_cmd (t_weechat_plugin *plugin, char *server, + char *command, char *arguments, + char *handler_args, void *handler_pointer) +{ + if (arguments && arguments[0] && (arguments[0] != '/')) + { + plugin->exec_command (plugin, NULL, NULL, arguments); + plugin->exec_command (plugin, NULL, NULL, arguments); + } + return PLUGIN_RC_OK; +} + +int weechat_plugin_init (t_weechat_plugin *plugin) +{ + plugin->cmd_handler_add (plugin, "double", + "Display two times a message", + "msg", + "msg: message to display two times", + NULL, + &double_cmd, + NULL, NULL); + return PLUGIN_RC_OK; +} + +void weechat_plugin_end (t_weechat_plugin *plugin) +{ + /* nothing done here */ +} +</screen> + </para> + + </section> + + </section> + + <section id="secScriptsPlugins"> + <title>Scripts plugins</title> + + <para> + Three plugins are provided with WeeChat to use script languages: + Perl, Python and Ruby. + </para> + + <section id="secLoadUnloadScripts"> + <title>Load / unload scripts</title> + + <para> + Scripts are loaded and unloaded with <command>/perl</command>, + <command>/python</command> and <command>/ruby</command> commands + (type <command>/help</command> in WeeChat for help about commands). + </para> + + <para> + Examples: + <itemizedlist> + <listitem> + <para> + Load a Perl script: + <command><userinput>/perl load /tmp/test.pl</userinput></command> + </para> + </listitem> + <listitem> + <para> + List all loaded Perl scripts: + <command><userinput>/perl</userinput></command> + </para> + </listitem> + <listitem> + <para> + Load a Python script: + <command><userinput>/python load /tmp/test.py</userinput></command> + </para> + </listitem> + <listitem> + <para> + List all loaded Python scripts: + <command><userinput>/python</userinput></command> + </para> + </listitem> + <listitem> + <para> + Load a Ruby script: + <command><userinput>/ruby load /tmp/test.rb</userinput></command> + </para> + </listitem> + <listitem> + <para> + List all loaded Ruby scripts: + <command><userinput>/ruby</userinput></command> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secWeeChatScriptsAPI"> + <title>WeeChat / scripts API</title> + + <section> + <title>register</title> + + <para> + Perl prototype: + <command> + weechat::register ( name, version, end_function, description ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.register ( name, version, end_function, description ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.register ( name, version, end_function, description ) + </command> + </para> + <para> + This is first function to call in script. + All WeeChat scripts have to call this function. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>name</option>: unique name to identify script + (each script must have unique name) + </para> + </listitem> + <listitem> + <para> + <option>version</option>: script version + </para> + </listitem> + <listitem> + <para> + <option>end_function</option>: function called when script is + unloaded (optional parameter, empty string means nothing is + called at the end) + </para> + </listitem> + <listitem> + <para> + <option>description</option>: short description of script + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if script was registered, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::register ("test", "1.0", "end_test", "Test script!"); + +# python +weechat.register ("test", "1.0", "end_test", "Test script!") + +# ruby +Weechat.register ("test", "1.0", "end_test", "Test script!") +</screen> + </para> + </section> + + <section> + <title>print</title> + + <para> + Perl prototype: + <command> + weechat::print ( message, [channel, [server]] ) + </command> + </para> + <para> + Python prototype: + <command> + weechat.prnt ( message, [channel, [server]] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.print ( message, [channel, [server]] ) + </command> + </para> + <para> + Display a message on a WeeChat buffer, identified by server + and channel. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel to find buffer + for message display + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server to find + buffer for message display + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::print ("message"); +weechat::print ("message", "#weechat"); +weechat::print ("message", "#weechat", "freenode"); + +# python +weechat.prnt ("message") +weechat.prnt ("message", "#weechat") +weechat.prnt ("message", "#weechat", "freenode") + +# ruby +Weechat.print ("message") +Weechat.print ("message", "#weechat") +Weechat.print ("message", "#weechat", "freenode") +</screen> + </para> + </section> + + <section> + <title>print_infobar</title> + + <para> + Perl prototype: + <command> + weechat::print_infobar ( time, message ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.print_infobar ( time, message ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.print_infobar ( time, message ) + </command> + </para> + <para> + Display a message in infobar for a specified time. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>time</option>: time (in seconds) for displaying + message (0 = never erased) + </para> + </listitem> + <listitem> + <para> + <option>message</option>: message + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::print_infobar (5, "message"); + +# python +weechat.print_infobar (5, "message") + +# ruby +Weechat.print_infobar (5, "message") +</screen> + </para> + </section> + + <section> + <title>add_message_handler</title> + + <para> + Perl prototype: + <command> + weechat::add_message_handler ( message, function ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.add_message_handler ( message, function ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.add_message_handler ( message, function ) + </command> + </para> + <para> + Add an IRC message handler, called when an IRC message is + received. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>message</option>: name of IRC message. To know list + of IRC messages, please consult <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> and + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function called when message is + received + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::add_message_handler ("privmsg", my_function); +sub my_function +{ + weechat::print ("server=$_[0]\n"); + ($null, $channel, $message) = split ":",$_[1],3; + ($mask, $null, $channel) = split " ", $channel; + weechat::print ("mask=$mask, channel=$channel, msg=$message\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_message_handler ("privmsg", my_function) +def ma_fonction(server, args): + weechat.prnt("server="+serveur) + null, channel, message = string.split(args, ":", 2) + masque, null, channel = string.split(string.strip(channel), " ", 2) + weechat.prnt("mask="+mask+", canal="+channel+", message="+message) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Note: function called when message is received has to return one + of following values (prefixed by weechat::" for Perl, "weechat." + for Python or "Weechat." for Ruby): + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal>: function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal>: function successfully + completed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal>: message + will not be sent to WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal>: message + will not be sent to other plugins + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal>: message + will not be sent to WeeChat neither other plugins + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>add_command_handler</title> + + <para> + Perl prototype: + <command> + weechat::add_command_handler ( command, function, + [description, arguments, arguments_description, + completion_template] ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.add_command_handler ( command, function, + [description, arguments, arguments_description, + completion_template] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.add_command_handler ( command, function, + [description, arguments, arguments_description, + completion_template] ) + </command> + </para> + <para> + Add a WeeChat command handler, called when user uses command + (for example /command). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>command</option>: the new command name, which + may be an existing command (be careful, replaced command + will not be available until script is unloaded) + </para> + </listitem> + <listitem> + <para> + <option>function</option>: fonction appelée lorsque la + commande est exécutée + </para> + </listitem> + <listitem> + <para> + <option>arguments</option>: short description of command + arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option>: long description + of command arguments (displayed by /help command) + </para> + </listitem> + <listitem> + <para> + <option>completion_template</option>: template for + completion, like "<literal>abc|%w def|%i</literal>" which + means "abc" or a WeeChat command for first argument, + "def" or IRC command for second. + (see <xref linkend="secAPI_cmd_handler_add" />) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::add_command_handler ("command", my_command); +sub my_command +{ + weechat::print("Server: $_[0], arguments: $_[1]\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_command_handler ("command", my_command) +def ma_commande(server, args): + weechat.prnt("server:"+serveur+" arguments:"+args) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Notes: function called when command is executed has to return one + of following values (prefixed by "weechat::" for Perl, "weechat." + for Python or "Weechat." for Ruby): + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : function failed + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : function successfully + completed + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>remove_handler</title> + + <para> + Perl prototype: + <command> + weechat::remove_handler ( name, function ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.remove_handler ( name, function ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.remove_handler ( name, function ) + </command> + </para> + <para> + Remove a handler. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>name</option>: name of IRC message or command + </para> + </listitem> + <listitem> + <para> + <option>function</option>: function + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::remove_handler ("command", my_command); + +# python +weechat.remove_handler ("command", my_command) + +# ruby +Weechat.remove_handler ("command", my_command) +</screen> + </para> + </section> + + <section> + <title>command</title> + + <para> + Perl prototype: + <command> + weechat::command ( command, [channel, [server]] ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.command ( command, [channel, [server]] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.command ( command, [channel, [server]] ) + </command> + </para> + <para> + Execute a WeeChat command (or send a message to a channel). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>command</option>: command + </para> + </listitem> + <listitem> + <para> + <option>channel</option>: name of channel for executing + command + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + executing command + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if success, 0 if an error occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::command ("hello everybody!"); +weechat::command ("/kick toto please leave this channel", "#weechat"); +weechat::command ("/nick newnick", "", "freenode"); + +# python +weechat.command ("hello everybody!") +weechat.command ("/kick toto please leave this channel", "#weechat") +weechat.command ("/nick newnick", "", "freenode") + +# ruby +Weechat.command ("hello everybody!") +Weechat.command ("/kick toto please leave this channel", "#weechat") +Weechat.command ("/nick newnick", "", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_info</title> + + <para> + Perl prototype: + <command> + weechat::get_info ( name, [server] ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_info ( name, [server] ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.get_info ( name, [server] ) + </command> + </para> + <para> + Return an info about WeeChat or a channel. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>name</option>: name of info to read + (see <xref linkend="secAPI_get_info" />) + </para> + </listitem> + <listitem> + <para> + <option>server</option>: internal name of server for + reading info (if needed) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: information asked, empty string if an error + occured + </para> + <para> + Examples: +<screen> +# perl +$version = get_info("version"); +$nick = get_info("nick", "freenode"); + +# python +version = weechat.get_info ("version") +nick = weechat.get_info ("nick", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_dcc_info</title> + + <para> + Perl prototype: + <command> + weechat::get_dcc_info ( ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_dcc_info ( ) + </command> + </para> + <para> + Ruby prototype : + <command> + Weechat.get_dcc_info ( ) + </command> + </para> + <para> + Return list of DCC currently active or finished. + </para> + <para> + Return value: list of DCC + (see <xref linkend="secAPI_get_dcc_info" />). + </para> + </section> + + <section> + <title>get_config</title> + + <para> + Perl prototype: + <command> + weechat::get_config ( option ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_config ( option ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.get_config ( option ) + </command> + </para> + <para> + Return value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: option value, empty string if not found. + </para> + <para> + Examples: +<screen> +# perl +$value1 = weechat::get_config ("look_nicklist"); +$value2 = weechat::get_config ("freenode.server_autojoin"); + +# python +value1 = weechat.get_config ("look_nicklist") +value2 = weechat.get_config ("freenode.server_autojoin") +</screen> + </para> + </section> + + <section> + <title>set_config</title> + + <para> + Perl prototype: + <command> + weechat::set_config ( option, value ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.set_config ( option, value ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.set_config ( option, value ) + </command> + </para> + <para> + Update value of a WeeChat config option. + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an error + occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::set_config ("look_nicklist", "off"); +weechat::set_config ("freenode.server_autojoin, "#weechat"); + +# python +weechat.set_config ("look_nicklist", "off") +weechat.set_config ("freenode.server_autojoin, "#weechat") + +# ruby +Weechat.set_config ("look_nicklist", "off") +Weechat.set_config ("freenode.server_autojoin, "#weechat") +</screen> + </para> + </section> + + <section> + <title>get_plugin_config</title> + + <para> + Perl prototype: + <command> + weechat::get_plugin_config ( option ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Return value of a plugin option. Option is read from file + "<literal>~/.weechat/plugins.rc</literal>" and is like: + "<literal>plugin.option=value</literal>" (note: plugin name + is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to read + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: value of option, empty string if not found. + </para> + <para> + Examples : +<screen> +# perl +$value = weechat::get_plugin_config ("my_var"); + +# python +value = weechat.get_plugin_config ("my_var") +</screen> + </para> + </section> + + <section> + <title>set_plugin_config</title> + + <para> + Perl prototype: + <command> + weechat::set_plugin_config ( option, valeur ); + </command> + </para> + <para> + Python prototype: + <command> + weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Ruby prototype: + <command> + Weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Update value of a plugin option. Option is written in file + "<literal>~/.weechat/plugins.rc</literal>" and is like: + "<literal>plugin.option=value</literal>" (note: plugin name + is automatically added). + </para> + <para> + Arguments: + <itemizedlist> + <listitem> + <para> + <option>option</option>: name of option to update + </para> + </listitem> + <listitem> + <para> + <option>value</option>: new value for option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Return value: 1 if option was successfully updated, 0 if an error + occured. + </para> + <para> + Examples: +<screen> +# perl +weechat::set_plugin_config ("my_var", "value"); + +# python +weechat.set_plugin_config ("my_var", "value") + +# ruby +Weechat.set_plugin_config ("my_var", "value") +</screen> + </para> + </section> + + </section> + + </section> + + </chapter> + + <!-- ======================== Auteurs / Support ========================= --> + + <chapter id="chapAuthorsSupport"> + <title>Authors / Support</title> + + <para> + This chapter lists authors and contributors for WeeChat, and + shows ways to get support. + </para> + + <section id="secAuthors"> + <title>Authors</title> + + <para> + WeeChat is developed by: + <itemizedlist> + <listitem> + <para> + <emphasis>FlashCode (Sébastien Helleu)</emphasis> + <email>flashcode AT flashtux.org</email> - + main developer + </para> + </listitem> + <listitem> + <para> + <emphasis>Kolter</emphasis> + <email>kolter AT free.fr</email> - + developer + </para> + </listitem> + <listitem> + <para> + <emphasis>Ptitlouis</emphasis> + <email>ptitlouis AT sysif.net</email> - + Debian packager + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secContributors"> + <title>Contributors</title> + + <para> + Following people contributed to WeeChat: + <itemizedlist> + <listitem> + <para> + <emphasis>Jiri Golembiovsky</emphasis> - + czech translation + </para> + </listitem> + <listitem> + <para> + <emphasis>Rudolf Polzer</emphasis> - + patches + </para> + </listitem> + <listitem> + <para> + <emphasis>Jim Ramsay</emphasis> - + patches + </para> + </listitem> + <listitem> + <para> + <emphasis>Pistos</emphasis> - + patches + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secSupport"> + <title>Get support</title> + + <para> + Before asking for support, be sure you've read documentation and FAQ + provided with WeeChat (documentation is this document, if you don't + read all lines until this sentence, you can start again!) + </para> + + <para> + <itemizedlist> + <listitem> + <para> + IRC: server "<literal>irc.freenode.net</literal>", + channel "<literal>#weechat</literal>" + </para> + </listitem> + <listitem> + <para> + WeeChat forum: + <ulink url="http://forums.flashtux.org"> + http://forums.flashtux.org + </ulink> + </para> + </listitem> + <listitem> + <para> + Mailing list: + <itemizedlist> + <listitem> + <para> + To subscribe: + <ulink url="http://mail.nongnu.org/mailman/listinfo/weechat-support"> + http://mail.nongnu.org/mailman/listinfo/weechat-support + </ulink> + </para> + </listitem> + <listitem> + <para> + To send a mail on mailing list: + <email>weechat-support@nongnu.org</email> + </para> + </listitem> + </itemizedlist> + Mailing list archives are available here: + <ulink url="http://mail.nongnu.org/archive/html/weechat-support"> + http://mail.nongnu.org/archive/html/weechat-support + </ulink> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + </chapter> + +</book> diff --git a/weechat/doc/fr/Makefile.am b/weechat/doc/fr/Makefile.am new file mode 100644 index 000000000..52e9ad23b --- /dev/null +++ b/weechat/doc/fr/Makefile.am @@ -0,0 +1,59 @@ +# Copyright (c) 2003-2006 FlashCode <flashcode@flashtux.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +# + +LANGCODE = fr +BOOK = weechat.$(LANGCODE) +BOOK_INCLUDE = weechat_commands.xml irc_commands.xml key_functions.xml config.xml + +EXTRA_DIST = $(BOOK).xml $(BOOK_INCLUDE) + +docdir = $(datadir)/doc/$(PACKAGE) + +all-local: html-stamp + +# HTML output with chunks (many pages) + +html: html-stamp + +html-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html.xsl ../weechat-doc.css + mkdir -p html/ + xsltproc -o html/ ../weechat-html.xsl $(BOOK).xml || true + cp ../weechat-doc.css html/ + touch html-stamp + +# HTML output, all in one page + +html1: html1-stamp + +html1-stamp: $(BOOK).xml $(BOOK_INCLUDE) ../weechat-html-one.xsl ../weechat-doc.css + mkdir -p html1/ + xsltproc -o html1/$(BOOK).html ../weechat-html-one.xsl $(BOOK).xml || true + cp ../weechat-doc.css html1/ + touch html1-stamp + +# install docs + +install-data-hook: + $(mkinstalldirs) $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + $(INSTALL_DATA) html/* $(DESTDIR)$(docdir)/html/$(LANGCODE)/ + +# clean + +clean-local: + -rm -f *.html *.pdf *.txt + -rm -rf html/ html1/ + -rm -f html-stamp html1-stamp diff --git a/weechat/doc/fr/weechat.fr.xml b/weechat/doc/fr/weechat.fr.xml new file mode 100644 index 000000000..e809b9c04 --- /dev/null +++ b/weechat/doc/fr/weechat.fr.xml @@ -0,0 +1,3542 @@ +<?xml version="1.0" encoding="iso-8859-1"?> + +<!-- + +WeeChat documentation (french version) + +Copyright (c) 2003-2006 by FlashCode <flashcode@flashtux.org> + +This manual is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This manual is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +--> + +<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" +"file:///usr/share/xml/docbook/schema/dtd/4.2/docbookx.dtd" +[ + <!ENTITY config.xml SYSTEM "config.xml"> + <!ENTITY weechat_commands.xml SYSTEM "weechat_commands.xml"> + <!ENTITY irc_commands.xml SYSTEM "irc_commands.xml"> + <!ENTITY key_functions.xml SYSTEM "key_functions.xml"> +]> + +<book lang="fr"> + + <bookinfo> + + <title>WeeChat 0.1.7-cvs - Guide utilisateur</title> + <subtitle>Client IRC rapide, léger et extensible</subtitle> + + <author> + <firstname>Sébastien</firstname> + <surname>Helleu</surname> + <email>flashcode AT flashtux.org</email> + </author> + + <copyright> + <year>2006</year> + <holder>Sébastien Helleu</holder> + </copyright> + + <legalnotice> + <para> + This manual is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + </para> + <para> + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + </para> + <para> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA + </para> + </legalnotice> + + <abstract> + <para> + Ce manuel documente le client IRC WeeChat, il fait partie de WeeChat. + </para> + <para> + La dernière version de ce document peut être téléchargée + sur cette page : + <ulink url="http://weechat.flashtux.org/doc.php"> + http://weechat.flashtux.org/doc.php + </ulink> + </para> + </abstract> + + </bookinfo> + + <!-- =========================== Introduction =========================== --> + + <chapter id="chapIntroduction"> + <title>Introduction</title> + + <para> + Ce chapître décrit WeeChat et les pré-requis pour son installation. + </para> + + <section id="secDescription"> + <title>Description</title> + + <para> + WeeChat (Wee Enhanced Environment for Chat) est un client + <acronym>IRC</acronym> libre, rapide et léger, conçu pour + différents systèmes d'exploitation. + </para> + + <para> + Ses principales caractéristiques sont les suivantes : + <itemizedlist> + <listitem> + <para> + connexion multi-serveurs (avec SSL, IPv6, proxy) + </para> + </listitem> + <listitem> + <para> + plusieurs interfaces : Curses, wxWidgets, Gtk et Qt + </para> + </listitem> + <listitem> + <para> + petit, rapide et léger + </para> + </listitem> + <listitem> + <para> + paramétrable et extensible avec des extensions et des scripts + </para> + </listitem> + <listitem> + <para> + conforme aux <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2810.txt">2810</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2811.txt">2811</ulink>, + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> et + <ulink url="http://www.ietf.org/rfc/rfc2813.txt">2813</ulink> + </para> + </listitem> + <listitem> + <para> + multi-plateformes (GNU/Linux, *BSD, MacOS X, Windows et + d'autres systèmes) + </para> + </listitem> + <listitem> + <para> + 100% GPL, logiciel libre + </para> + </listitem> + </itemizedlist> + </para> + + <para> + La page d'accueil de WeeChat est ici : + <ulink url="http://weechat.flashtux.org"> + http://weechat.flashtux.org + </ulink> + </para> + + </section> + + <section id="secPreRequis"> + <title>Pré-requis</title> + + <para> + Pour installer WeeChat, vous <emphasis>devez</emphasis> avoir : + <itemizedlist> + <listitem> + <para> + un système GNU/Linux (avec le compilateur et les outils + associés pour le paquet des sources) + </para> + </listitem> + <listitem> + <para> + droits "root" (pour installer WeeChat) + </para> + </listitem> + <listitem> + <para> + selon l'interface, une des bibliothèques + suivantes : + <itemizedlist> + <listitem> + <para> + Curses : la bibliothèque ncurses + </para> + </listitem> + <listitem> + <para> + Gtk : <emphasis>*** interface non développée ***</emphasis> + </para> + </listitem> + <listitem> + <para> + WxWidgets : <emphasis>*** interface non développée ***</emphasis> + </para> + </listitem> + <listitem> + <para> + Qt : <emphasis>*** interface non développée ***</emphasis> + </para> + </listitem> + </itemizedlist> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + </chapter> + + <!-- =========================== Installation =========================== --> + + <chapter id="chapInstallation"> + <title>Installation</title> + + <para> + Ce chapître explique comment installer WeeChat. + </para> + + <section id="secPaquetsBinaires"> + <title>Paquets binaires</title> + + <para> + Les paquets binaires sont disponibles pour les distributions + suivantes : + <itemizedlist> + <listitem> + <para> + Debian (ou toute distribution compatible Debian) : + <userinput>apt-get install weechat</userinput> + </para> + </listitem> + <listitem> + <para> + Mandriva/RedHat (ou toute distribution compatible avec les RPM) : + <userinput> + rpm -i /chemin/weechat-x.y.z-1.i386.rpm + </userinput> + </para> + </listitem> + <listitem> + <para> + Gentoo : + <userinput>emerge weechat</userinput> + </para> + </listitem> + </itemizedlist> + + Pour les autres distributions supportées, merci de vous + référer au manuel de la distribution pour la méthode d'installation. + </para> + + </section> + + <section id="secPaquetSource"> + <title>Paquet source</title> + + <para> + Tapez simplement dans une console ou un terminal : +<screen><prompt>$ </prompt><userinput>./configure</userinput> +<prompt>$ </prompt><userinput>make</userinput></screen> + </para> + <para> + Obtenez les droits root et installez WeeChat : +<screen><prompt>$ </prompt><userinput>su</userinput> +(entrez le mot de passe root) +<prompt># </prompt><userinput>make install</userinput></screen> + </para> + + </section> + + <section id="secSourcesCVS"> + <title>Sources CVS</title> + + <para> + Attention : les sources CVS sont réservées aux utilisateurs + avancés : il se peut que WeeChat ne compile pas et qu'il soit + très instable. Vous êtes prévenus ! + </para> + + <para> + Pour récupérer les sources CVS, tapez cette commande : +<screen><prompt>$ </prompt><userinput>cvs -z3 -d:pserver:anonymous@cvs.savannah.nongnu.org:/sources/weechat co weechat</userinput></screen> + </para> + + <para> + Exécutez ce script : + <userinput>./autogen.sh</userinput> + </para> + + <para> + Suivez alors les instructions du paquet source + (voir <xref linkend="secPaquetSource" />) + </para> + + </section> + + </chapter> + + <!-- =========================== Utilisation ============================ --> + + <chapter id="chapUtilisation"> + <title>Utilisation</title> + + <para> + Ce chapître explique comment lancer WeeChat, les touches utilisées par + défaut, les commandes internes et IRC, le fichier de configuration et + l'utilisation du tube FIFO. + </para> + + <section id="secLancerWeeChat"> + <title>Lancer WeeChat</title> + + <para> + Paramètres de ligne de commande : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Paramètre</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>-a, --no-connect</literal></entry> + <entry> + Supprimer la connexion automatique aux serveurs lors du démarrage + </entry> + </row> + <row> + <entry><literal>-c, --config</literal></entry> + <entry> + Afficher l'aide sur le fichier de config (liste des options) + </entry> + </row> + <row> + <entry><literal>-f, --key-functions</literal></entry> + <entry> + Afficher la liste des fonctions internes WeeChat pour les touches + </entry> + </row> + <row> + <entry><literal>-h, --help</literal></entry> + <entry> + Afficher l'aide + </entry> + </row> + <row> + <entry><literal>-i, --irc-commands</literal></entry> + <entry> + Afficher la liste des commandes IRC + </entry> + </row> + <row> + <entry><literal>-k, --keys</literal></entry> + <entry> + Afficher les touches par défaut de WeeChat + </entry> + </row> + <row> + <entry><literal>-l, --license</literal></entry> + <entry> + Afficher la licence de WeeChat + </entry> + </row> + <row> + <entry><literal>-p, --no-plugin</literal></entry> + <entry> + Supprimer le chargement automatique des extensions au + démarrage + </entry> + </row> + <row> + <entry><literal>-v, --version</literal></entry> + <entry> + Afficher la version de WeeChat + </entry> + </row> + <row> + <entry><literal>-w, --weechat-commands</literal></entry> + <entry> + Afficher la liste des commandes WeeChat + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + Il est également possible de passer une URL pour un ou plusieurs + serveurs IRC, de la forme : + <screen>irc[6][s]://[pseudo[:mot_passe]@]irc.exemple.org[:port][/canal][,canal[...]</screen> + Exemple pour rejoindre #weechat et #toto sur le serveur + "<literal>irc.freenode.net</literal>", port par défaut (6667), sous + le pseudo "nono" : + <screen><prompt>$ </prompt><userinput>weechat-curses irc://nono@irc.freenode.net/#weechat,#toto</userinput></screen> + </para> + + <para> + Pour lancer WeeChat, tapez cette commande : + <itemizedlist> + <listitem> + <para> + pour l'interface Curses : <userinput>weechat-curses</userinput> + </para> + </listitem> + <listitem> + <para> + pour l'interface Gtk : <userinput>weechat-gtk</userinput> + </para> + </listitem> + <listitem> + <para> + pour l'interface wxWidgets : <userinput>weechat-wxwidgets</userinput> + </para> + </listitem> + <listitem> + <para> + pour l'interface Qt : <userinput>weechat-qt</userinput> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + Lorsque vous lancez WeeChat pour la première fois, un fichier de + configuration par défaut est créé, avec les options par défaut. + Le fichier de configuration par défaut est : + "<literal>~/.weechat/weechat.rc</literal>" + </para> + + <para> + Vous pouvez éditer ce fichier pour configurer WeeChat à votre + convenance (SEULEMENT si WeeChat ne tourne pas), ou vous pouvez + modifier les paramètres dans WeeChat avec la commande + "<literal>/set</literal>" + (voir <xref linkend="secCommandesWeeChat" />) + </para> + + </section> + + <section id="secRaccourcisClavier"> + <title>Raccourcis clavier</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Touche</entry> + <entry>Action</entry> + </row> + </thead> + <tbody> + <row> + <entry>Flèche gauche</entry> + <entry> + Aller au caractère précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Flèche droite</entry> + <entry> + Aller au caractère suivant sur la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + flèche gauche</entry> + <entry> + Aller au mot précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + flèche droite</entry> + <entry> + Aller au mot suivant sur la ligne de commande + </entry> + </row> + <row> + <entry>Home / Ctrl + A</entry> + <entry> + Aller au début de la ligne de commande + </entry> + </row> + <row> + <entry>End / Ctrl + E</entry> + <entry> + Aller à la fin de la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + K</entry> + <entry> + Effacer du curseur jusqu'à la fin de la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + L</entry> + <entry> + Réafficher toute la fenêtre + </entry> + </row> + <row> + <entry>Ctrl + U</entry> + <entry> + Effacer du curseur jusqu'au début de la ligne de commande + </entry> + </row> + <row> + <entry>Ctrl + W</entry> + <entry> + Effacer le mot précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Backspace</entry> + <entry> + Effacer le caractère précédent sur la ligne de commande + </entry> + </row> + <row> + <entry>Delete</entry> + <entry> + Effacer le caractère suivant sur la ligne de commande + </entry> + </row> + <row> + <entry>Tab</entry> + <entry> + Compléter la commande ou le pseudo + (Tab de nouveau: trouver la complétion suivante) + </entry> + </row> + <row> + <entry>Tout caractère</entry> + <entry> + Insérer le caractère à la position du curseur + sur la ligne de commande + </entry> + </row> + <row> + <entry>Entrée</entry> + <entry> + Exécuter la commande ou envoyer le message + </entry> + </row> + <row> + <entry>Flèche haut / flèche bas</entry> + <entry> + Rappeler les dernières commandes ou messages + </entry> + </row> + <row> + <entry>Ctrl + flèche haut / Ctrl + flèche bas</entry> + <entry> + Rappeler les dernières commandes ou messages dans + l'historique global (commun à tous les tampons) + </entry> + </row> + <row> + <entry>PageUp / PageDown</entry> + <entry> + Afficher l'historique du tampon + </entry> + </row> + <row> + <entry>F5 / Alt + flèche gauche</entry> + <entry> + Aller au tampon précédent + </entry> + </row> + <row> + <entry>F6 / Alt + flèche droite</entry> + <entry> + Aller au tampon suivant + </entry> + </row> + <row> + <entry>F7</entry> + <entry> + Aller à la fenêtre précédente + </entry> + </row> + <row> + <entry>F8</entry> + <entry> + Aller à la fenêtre suivante + </entry> + </row> + <row> + <entry>F10</entry> + <entry> + Effacer le dernier message de la barre d'infos + </entry> + </row> + <row> + <entry>F11 / F12</entry> + <entry> + Faire défiler la liste des pseudos + </entry> + </row> + <row> + <entry>Alt + Home / Alt + End</entry> + <entry> + Aller au début / à la fin de la liste des pseudos + </entry> + </row> + <row> + <entry>Alt + A</entry> + <entry> + Sauter au prochain tampon avec activité + (avec priorité : highlight, message, autre) + </entry> + </row> + <row> + <entry>Alt + B</entry> + <entry> + Aller au mot précédent + </entry> + </row> + <row> + <entry>Alt + D</entry> + <entry> + Effacer le mot suivant + </entry> + </row> + <row> + <entry>Alt + F</entry> + <entry> + Aller au mot suivant + </entry> + </row> + <row> + <entry>Alt + H</entry> + <entry> + Vider la hotlist + (notification d'actitivé sur les autres tampons) + </entry> + </row> + <row> + <entry>Alt + J puis Alt + D</entry> + <entry> + Afficher le tampon des DCC + </entry> + </row> + <row> + <entry>Alt + J puis Alt + L</entry> + <entry> + Sauter au dernier tampon + </entry> + </row> + <row> + <entry>Alt + J puis Alt + S</entry> + <entry> + Sauter au tampon du serveur + </entry> + </row> + <row> + <entry>Alt + J puis Alt + X</entry> + <entry> + Sauter au premier canal du serveur suivant + (ou tampon du serveur si aucun canal n'est ouvert) + </entry> + </row> + <row> + <entry>Alt + chiffre (0-9)</entry> + <entry> + Sauter au tampon qui porte ce numéro (0 = 10) + </entry> + </row> + <row> + <entry>Alt + J puis nombre (01-99)</entry> + <entry> + Sauter au tampon qui porte ce numéro + </entry> + </row> + <row> + <entry>Alt + K</entry> + <entry> + Capturer une touche et insérer son code sur la ligne + de commande + </entry> + </row> + <row> + <entry>Alt + N</entry> + <entry> + Se positionner sur le highlight suivant + </entry> + </row> + <row> + <entry>Alt + P</entry> + <entry> + Se positionner sur le highlight précédent + </entry> + </row> + <row> + <entry>Alt + R</entry> + <entry> + Effacer entièrement la ligne de commande + </entry> + </row> + <row> + <entry>Alt + S</entry> + <entry> + Changer de serveur sur le tampon des serveurs + (si l'option "look_one_server_buffer" est activée) + </entry> + </row> + <row> + <entry>Alt + U</entry> + <entry> + Se positionner sur la première ligne non lue du tampon + </entry> + </row> + <row> + <entry>Alt + W puis Alt + flèche</entry> + <entry> + Sauter à une fenêtre avec une direction + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secCommandesWeeChatIRC"> + <title>Commandes WeeChat / IRC</title> + + <para> + Ce chapître liste toutes les commandes WeeChat et IRC. + </para> + + <section id="secCommandesWeeChat"> + <title>Commandes WeeChat</title> + + <para> + &weechat_commands.xml; + </para> + + </section> + + <section id="secFonctionsTouches"> + <title>Fonctions pour les touches</title> + + <para> + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Fonction</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &key_functions.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secCommandesIRC"> + <title>Commandes IRC</title> + + <para> + &irc_commands.xml; + </para> + + </section> + + </section> + + <section id="secFichierConfiguration"> + <title>Fichier de configuration</title> + + <para> + Liste des options du fichier de configuration : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Option</entry> + <entry>Type</entry> + <entry>Valeurs</entry> + <entry>Défaut</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + + &config.xml; + + </tbody> + </tgroup> + </informaltable> + </para> + + <para> + Les couleurs pour l'interface Curses sont : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Mot clé</entry> + <entry>Couleur</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>default</literal></entry> + <entry>couleur par défaut (transparent pour le fond)</entry> + </row> + <row> + <entry><literal>black</literal></entry> + <entry>noir</entry> + </row> + <row> + <entry><literal>red</literal></entry> + <entry>rouge foncé</entry> + </row> + <row> + <entry><literal>lightred</literal></entry> + <entry>rouge clair</entry> + </row> + <row> + <entry><literal>green</literal></entry> + <entry>vert foncé</entry> + </row> + <row> + <entry><literal>lightgreen</literal></entry> + <entry>vert clair</entry> + </row> + <row> + <entry><literal>brown</literal></entry> + <entry>marron</entry> + </row> + <row> + <entry><literal>yellow</literal></entry> + <entry>jaune</entry> + </row> + <row> + <entry><literal>blue</literal></entry> + <entry>bleu foncé</entry> + </row> + <row> + <entry><literal>lightblue</literal></entry> + <entry>bleu clair</entry> + </row> + <row> + <entry><literal>magenta</literal></entry> + <entry>violet foncé</entry> + </row> + <row> + <entry><literal>lightmagenta</literal></entry> + <entry>violet clair</entry> + </row> + <row> + <entry><literal>cyan</literal></entry> + <entry>cyan foncé</entry> + </row> + <row> + <entry><literal>lightcyan</literal></entry> + <entry>cyan clair</entry> + </row> + <row> + <entry><literal>white</literal></entry> + <entry>blanc</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + </section> + + <section id="secTubeFIFO"> + <title>Tube FIFO</title> + + <para> + Vous pouvez contrôler WeeChat à distance, en envoyant des commandes + ou du texte dans un tube FIFO (l'option "irc_fifo_pipe" doit être + activée, elle est désactivée par défaut). + </para> + + <para> + Le tube FIFO est dans le répertoire "<literal>~/.weechat/</literal>" + et s'appelle "weechat_fifo_xxxxx" (où xxxxx est l'ID du processus + (PID) du WeeChat qui tourne). Donc si plusieurs WeeChat tournent, il + y a plusieurs tubes FIFO, un pour chaque session. + </para> + + <para> + La syntaxe pour envoyer des commandes ou du texte dans le tube FIFO + est la suivante : + <screen>serveur,canal *texte ou commande ici</screen> + où le serveur et le canal sont facultatifs, mais si le canal est là, + le serveur doit l'être aussi. + </para> + + <para> + Quelques exemples : + <itemizedlist> + <listitem> + <para> + changement du pseudo sur freenode en "pseudo|absent" : + <screen><prompt>$ </prompt><userinput>echo "freenode */nick pseudo|absent" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + affichage de texte sur le canal #weechat : + <screen><prompt>$ </prompt><userinput>echo "freenode,#weechat *bonjour tout le monde !" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + <listitem> + <para> + affichage de texte sur le canal courant (le tampon affiché + par WeeChat) : + <screen><prompt>$ </prompt><userinput>echo "*bonjour !" >~/.weechat/weechat_fifo_12345</userinput></screen> + <emphasis>Attention :</emphasis> ceci est dangereux et vous ne + devriez pas le faire sauf si vous savez ce que vous faites ! + </para> + </listitem> + <listitem> + <para> + envoyer deux commandes pour décharger/recharger les scripts Perl + (vous devez les séparer par "\n") : + <screen><prompt>$ </prompt><userinput>echo -e "freenode */perl unload\nfreenode */perl autoload" >~/.weechat/weechat_fifo_12345</userinput></screen> + </para> + </listitem> + </itemizedlist> + </para> + + <para> + Vous pouvez écrire un script qui envoie les commandes à tous les + WeeChat qui tournent en même temps, par exemple : +<screen> +#!/bin/sh +if [ $# -eq 1 ]; then + for fifo in $(/bin/ls ~/.weechat/weechat_fifo_* 2>/dev/null); do + echo -e "$1" >$fifo + done +fi +</screen> + Si le script s'appelle "auto_weechat_command", vous pouvez le lancer + ainsi : + <screen><prompt>$ </prompt><userinput>./auto_weechat_command "freenode,#weechat *bonjour"</userinput></screen> + </para> + + </section> + + </chapter> + + <!-- ============================ Extensions ============================ --> + + <chapter id="chapExtensions"> + <title>Extensions</title> + + <para> + Ce chapître décrit l'interface des extensions (API) et les extensions + pour scripts (Perl, Python, Ruby), fournies avec WeeChat. + </para> + + <section id="secLesExtensionsDansWeeChat"> + <title>Les extensions dans WeeChat</title> + + <para> + Une extension ("plugin" en anglais) est un programme écrit en C + qui peut appeler des fonctions de WeeChat définies dans une interface. + </para> + + <para> + Ce programme C n'a pas besoin des sources WeeChat pour être + compilé et peut être chargé/déchargé dynamiquement dans + WeeChat via la commande <command>/plugin</command>. + </para> + + <para> + L'extension doit être au format bibliothèque, chargeable + dynamiquement par le systême d'exploitation. + Sous GNU/Linux, il s'agit d'un fichier ayant pour extension ".so", + sous Windows ".dll". + </para> + + </section> + + <section id="secEcrireUneExtension"> + <title>Ecrire une extension</title> + + <para> + L'extension doit inclure le fichier "weechat-plugin.h" + (disponible dans les sources de WeeChat). + Ce fichier définit les structures et types dont l'extension aura + besoin pour communiquer avec WeeChat. + </para> + + <para> + L'extension doit comporter certaines variables et fonctions + obligatoires (sans quoi l'extension ne peut être chargée) : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Variable</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>char plugin_name[]</literal></entry> + <entry>le nom de l'extension</entry> + </row> + <row> + <entry><literal>char plugin_version[]</literal></entry> + <entry>la version de l'extension</entry> + </row> + <row> + <entry><literal>char plugin_description[]</literal></entry> + <entry>une courte description de l'extension</entry> + </row> + </tbody> + </tgroup> + </informaltable> + + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Fonction</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>int weechat_plugin_init (t_weechat_plugin *plugin)</literal></entry> + <entry> + fonction appelée au chargement de l'extension + qui doit renvoyer PLUGIN_RC_OK en cas de succès, + PLUGIN_RC_KO en cas d'erreur (si erreur, l'extension + ne sera PAS chargée) + </entry> + </row> + <row> + <entry><literal>void weechat_plugin_end (t_weechat_plugin *plugin)</literal></entry> + <entry>fonction appelée au déchargement de l'extension</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + + <section id="secFonctionsInterface"> + <title>Fonctions de l'interface (API)</title> + + <section id="secAPI_ascii_strcasecmp"> + <title>ascii_strcasecmp</title> + + <para> + Prototype : + <command> + int ascii_strcasecmp (t_weechat_plugin *plugin, + char *chaine1, char *chaine2) + </command> + </para> + <para> + Effectue une comparaison entre deux chaînes, sans tenir compte des + majuscules/minuscules ni de la locale. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine1</option> : la première chaîne à comparer + </para> + </listitem> + <listitem> + <para> + <option>chaine2</option> : la deuxième chaîne à comparer + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la différence entre les deux chaînes : négatif + si chaine1 < chaine2, zéro si chaine1 == chaine2, positif si + chaine1 > chaine2 + </para> + <para> + Exemple : + <screen>if (plugin->ascii_strcasecmp (plugin, "abc", "def") != 0) ...</screen> + </para> + </section> + + <section id="secAPI_ascii_strncasecmp"> + <title>ascii_strncasecmp</title> + + <para> + Prototype : + <command> + int ascii_strncasecmp (t_weechat_plugin *plugin, + char *chaine1, char *chaine2, int max) + </command> + </para> + <para> + Effectue une comparaison entre deux chaînes, sans tenir compte des + majuscules/minuscules ni de la locale, en comparant au plus "max" + caractères. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine1</option> : la première chaîne à comparer + </para> + </listitem> + <listitem> + <para> + <option>chaine2</option> : la deuxième chaîne à comparer + </para> + </listitem> + <listitem> + <para> + <option>max</option> : nombre de caractères max à comparer + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la différence entre les deux chaînes : négatif + si chaine1 < chaine2, zéro si chaine1 == chaine 2, positif si + chaine1 > chaine2 + </para> + <para> + Exemple : + <screen>if (plugin->ascii_strncasecmp (plugin, "abc", "def", 2) != 0) ...</screen> + </para> + </section> + + <section id="secAPI_explode_string"> + <title>explode_string</title> + + <para> + Prototype : + <command> + char **explode_string (t_weechat_plugin *plugin, char *chaine, + char *separateurs, int num_items_max, int *num_items) + </command> + </para> + <para> + Explose une chaîne en plusieurs selon un/des délimiteur(s). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine</option> : la chaîne à exploser + </para> + </listitem> + <listitem> + <para> + <option>separateurs</option> : les délimiteurs utilisés + pour exploser la chaîne + </para> + </listitem> + <listitem> + <para> + <option>num_items_max</option> : nombre maximum de + sous-chaînes créées (0 = pas de limite) + </para> + </listitem> + <listitem> + <para> + <option>num_items</option> : pointeur vers un entier qui + contiendra le nombre de sous-chaînes créées en retour + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : un tableau de chaînes, ou NULL si un problème + a été rencontré. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free_exploded_string" après utilisation. + </para> + <para> + Exemple : +<screen> +char **argv; +int argc; +argv = plugin->explode_string (plugin, chaine, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_free_exploded_string"> + <title>free_exploded_string</title> + + <para> + Prototype : + <command> + char **free_exploded_string (t_weechat_plugin *plugin, + char **chaine) + </command> + </para> + <para> + Libère la mémoire utilisée pour une explosion de chaîne. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>chaine</option> : la chaîne explosée par la fonction + "explode_string" + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : +<screen> +char *argv; +int argc; +argv = plugin->explode_string (plugin, chaine, " ", 0, &argc); +... +if (argv != NULL) + plugin->free_exploded_string (plugin, argv); +</screen> + </para> + </section> + + <section id="secAPI_exec_on_files"> + <title>exec_on_files</title> + + <para> + Prototype : + <command> + void exec_on_files (t_weechat_plugin *plugin, char *repertoire, + int (*callback)(t_weechat_plugin *, char *)) + </command> + </para> + <para> + Exécute une fonction sur tous les fichiers d'un répertoire. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>repertoire</option> : le répertoire où les fichiers + sont recherchés + </para> + </listitem> + <listitem> + <para> + <option>callback</option> : une fonction appelée pour chaque + fichier trouvé + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : +<screen> +int callback (t_weechat_plugin *plugin, char *fichier) +{ + plugin->printf_server (plugin, "fichier: %s", fichier); + return 1; +} +... +plugin->exec_on_files (plugin, "/tmp", &callback); +</screen> + </para> + </section> + + <section id="secAPI_printf"> + <title>printf</title> + + <para> + Prototype : + <command> + void printf (t_weechat_plugin *plugin, + char *serveur, char *canal, char *message, ...) + </command> + </para> + <para> + Affiche un message sur un tampon WeeChat, identifié par le serveur + et le canal (tous deux pouvant être NULL pour le tampon courant). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur pour + trouver le tampon dans lequel afficher (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal pour trouver le + tampon dans lequel afficher (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemples : +<screen> +plugin->printf (plugin, NULL, NULL, "hello"); +plugin->printf (plugin, NULL, "#weechat", "hello"); +plugin->printf (plugin, "freenode", "#weechat", "hello"); +</screen> + </para> + </section> + + <section id="secAPI_printf_server"> + <title>printf_server</title> + + <para> + Prototype : + <command> + void printf_server (t_weechat_plugin *plugin, + char *message, ...) + </command> + </para> + <para> + Affiche un message sur le tampon du serveur courant. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : <screen>plugin->printf_server (plugin, "hello");</screen> + </para> + </section> + + <section id="secAPI_printf_infobar"> + <title>printf_infobar</title> + + <para> + Prototype : + <command> + void printf_infobar (t_weechat_plugin *plugin, + int temps, char *message, ...) + </command> + </para> + <para> + Affiche un message sur la barre d'infos pour un temps déterminé. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>temps</option> : temps (en secondes) pendant lequel + le message est affiché (0 = jamais effacé) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : <screen>plugin->printf_infobar (plugin, 5, "hello");</screen> + </para> + </section> + + <section id="secAPI_msg_handler_add"> + <title>msg_handler_add</title> + + <para> + Prototype : + <command> + t_plugin_handler *msg_handler_add (t_weechat_plugin + *plugin, char *message, t_plugin_handler_func *fonction, + char *handler_args, void *handler_pointer) + </command> + </para> + <para> + Ajoute un gestionnaire de messages IRC, appelé dès qu'un message + IRC est reçu. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>message</option> : nom du message IRC pour lequel la + fonction est appelée. + Pour connaître la liste des messages IRC disponibles, merci + de consulter les <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> et + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque le + message est reçu + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option> : paramètres passés à la + fonction appelée + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option> : pointeur passé à la + fonction appelée + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : le pointeur vers le nouveau gestionnaire de + messages. + </para> + <para> + Note : la fonction appelée lorsque le message est reçu doit + renvoyer une des valeurs suivantes : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal> : le message + ne sera pas transmis à WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal> : le message + ne sera pas transmis à d'autres extensions + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal> : le message + ne sera ni transmis à WeeChat ni à d'autres extensions + </para> + </listitem> + </itemizedlist> + </para> + <para> + Exemple : +<screen> +int msg_kick (t_weechat_plugin *plugin, char *serveur, char *commande, + char *arguments, char *handler_args, void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, "KICK reçu"); + return PLUGIN_RC_OK; +} +... +plugin->msg_handler_add (plugin, "KICK", &msg_kick, NULL, NULL); +</screen> + </para> + </section> + + <section id="secAPI_cmd_handler_add"> + <title>cmd_handler_add</title> + + <para> + Prototype : + <command> + t_plugin_handler *cmd_handler_add (t_weechat_plugin + *plugin, char *commande, char *description, char *arguments, + char *arguments_description, char *modele_completion, + t_plugin_handler_func *fonction, char *handler_args, + void *handler_pointer) + </command> + </para> + <para> + Ajoute un gestionnaire de commande WeeChat, appelé dès que + l'utilisateur utilise la commande (par exemple /commande). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>commande</option> : nom de la nouvelle commande, + qui peut être une commande déjà existante (attention la + commande remplacée ne sera plus disponible jusqu'à ce que + l'extension soit déchargée) + </para> + </listitem> + <listitem> + <para> + <option>description</option> : brève description de la + commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>arguments</option> : brève description des + paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option> : longue description + des paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>modele_completion</option> : modèle pour la + complétion sous la forme "<literal>abc|%w def|%i</literal>" + qui signigie "abc" ou une commande WeeChat pour le premier + paramètre, et "def" ou une commande IRC pour le deuxième. + Une chaîne vide indique à WeeChat de compléter tout + paramètre avec un pseudo du canal courant, une valeur NULL + désactive toute complétion pour tous les paramètres de la + commande. + </para> + <para> + Les codes suivants peuvent être utilisés : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Code</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>%-</literal></entry> + <entry>aucune complétion pour le paramètre</entry> + </row> + <row> + <entry><literal>%a</literal></entry> + <entry>alias</entry> + </row> + <row> + <entry><literal>%A</literal></entry> + <entry> + alias et commandes (WeeChat, IRC et extensions) + </entry> + </row> + <row> + <entry><literal>%c</literal></entry> + <entry>canal courant</entry> + </row> + <row> + <entry><literal>%C</literal></entry> + <entry>canaux du serveur courant</entry> + </row> + <row> + <entry><literal>%f</literal></entry> + <entry>nom de fichier</entry> + </row> + <row> + <entry><literal>%h</literal></entry> + <entry>commandes définies par des extensions</entry> + </row> + <row> + <entry><literal>%i</literal></entry> + <entry>commandes IRC (envoyées)</entry> + </row> + <row> + <entry><literal>%I</literal></entry> + <entry>commandes IRC (reçues)</entry> + </row> + <row> + <entry><literal>%k</literal></entry> + <entry>fonctions associées aux touches</entry> + </row> + <row> + <entry><literal>%n</literal></entry> + <entry>pseudos du canal courant</entry> + </row> + <row> + <entry><literal>%o</literal></entry> + <entry>options de configuration</entry> + </row> + <row> + <entry><literal>%p</literal></entry> + <entry>message de "part" par défaut</entry> + </row> + <row> + <entry><literal>%q</literal></entry> + <entry>message de "quit" par défaut</entry> + </row> + <row> + <entry><literal>%s</literal></entry> + <entry>nom du serveur courant</entry> + </row> + <row> + <entry><literal>%S</literal></entry> + <entry>tous les serveurs</entry> + </row> + <row> + <entry><literal>%t</literal></entry> + <entry>titre du canal courant</entry> + </row> + <row> + <entry><literal>%v</literal></entry> + <entry>valeur d'une option de configuration</entry> + </row> + <row> + <entry><literal>%w</literal></entry> + <entry>commandes WeeChat</entry> + </row> + <row> + <entry><literal>%y</literal></entry> + <entry>message d'absence ("away") par défaut</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque la + commande est exécutée + </para> + </listitem> + <listitem> + <para> + <option>handler_args</option> : paramètres passés à la + fonction appelée + </para> + </listitem> + <listitem> + <para> + <option>handler_pointer</option> : pointeur passé à la + fonction appelée + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : le pointeur vers le nouveau gestionnaire de + commande. + </para> + <para> + Note : la fonction appelée lorsque la commande est exécutée doit + renvoyer une des valeurs suivantes : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + </itemizedlist> + </para> + <para> + Exemple : +<screen> +int cmd_test (t_weechat_plugin *plugin, char *serveur, + char *commande, char *arguments, char *handler_args, + void *handler_pointer) +{ + plugin->printf (plugin, serveur, NULL, + "commande test, pseudo: %s", + (arguments) ? arguments : "aucun"); + return PLUGIN_RC_OK; +} +... +plugin->cmd_handler_add (plugin, "test", "Commande test", + "[pesudo]", "pseudo: un pseudo du canal", + "%n", &cmd_test, NULL, NULL); +</screen> + </para> + + </section> + + <section id="secAPI_handler_remove"> + <title>handler_remove</title> + + <para> + Prototype : + <command> + void handler_remove (t_weechat_plugin *plugin, + t_plugin_handler *handler) + </command> + </para> + <para> + Supprime un gestionnaire. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>handler</option> : le gestionnaire à supprimer + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : + <screen>plugin->handler_remove (plugin, mon_handler);</screen> + </para> + </section> + + <section id="secAPI_handler_remove_all"> + <title>handler_remove_all</title> + + <para> + Prototype : + <command> + void handler_remove_all (t_weechat_plugin *plugin) + </command> + </para> + <para> + Supprime tous les gestionnaires d'une extension. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : + <screen>plugin->handler_remove_all (plugin);</screen> + </para> + </section> + + <section id="secAPI_exec_command"> + <title>exec_command</title> + + <para> + Prototype : + <command> + void exec_command (t_weechat_plugin + *plugin, char *serveur, char *canal, char *commande) + </command> + </para> + <para> + Execute une commande WeeChat ou envoie un message à un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + exécuter la commande (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal où exécuter la + commande (peut être NULL) + </para> + </listitem> + <listitem> + <para> + <option>commande</option> : la commande à exécuter + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemples : +<screen> +plugin->exec_command (plugin, NULL, NULL, "/help nick"); +plugin->exec_command (plugin, "freenode", "#weechat", "bonjour"); +</screen> + </para> + </section> + + <section id="secAPI_get_info"> + <title>get_info</title> + + <para> + Prototype : + <command> + char *get_info (t_weechat_plugin *plugin, + char *info, char *serveur) + </command> + </para> + <para> + Renvoie une information sur WeeChat ou un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>info</option> : nom de l'info à obtenir : + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Info</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>version</literal></entry> + <entry>version de WeeChat</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>pesudo</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry> + nom du canal (NULL pour un serveur ou un privé) + </entry> + </row> + <row> + <entry><literal>server</literal></entry> + <entry>nom du serveur</entry> + </row> + <row> + <entry><literal>away</literal></entry> + <entry>drapeau "away"</entry> + </row> + <row> + <entry><literal>weechat_dir</literal></entry> + <entry> + répertoire maison de WeeChat + (par défaut: ~/.weechat/) + </entry> + </row> + <row> + <entry><literal>weechat_libdir</literal></entry> + <entry>répertoire "lib" système de WeeChat</entry> + </row> + <row> + <entry><literal>weechat_sharedir</literal></entry> + <entry>répertoire "share" système de WeeChat</entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + récupérer l'information (si nécessaire) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : l'information recherchée, NULL si non trouvée. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free" après utilisation. + </para> + <para> + Exemples : +<screen> +char *version = plugin->get_info (plugin, "version", NULL); +char *nick = plugin->get_info (plugin, "nick", "freenode"); +</screen> + </para> + </section> + + <section id="secAPI_get_dcc_info"> + <title>get_dcc_info</title> + + <para> + Prototype : + <command> + t_plugin_info_dcc *get_dcc_info (t_weechat_plugin *plugin) + </command> + </para> + <para> + Renvoie la liste des DCC en cours ou terminés. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la liste chaînée des DCC. + <informaltable colsep="0" frame="none"> + <tgroup cols="2"> + <thead> + <row> + <entry>Champ</entry> + <entry>Description</entry> + </row> + </thead> + <tbody> + <row> + <entry><literal>server</literal></entry> + <entry>le serveur IRC</entry> + </row> + <row> + <entry><literal>channel</literal></entry> + <entry>le canal IRC</entry> + </row> + <row> + <entry><literal>type</literal></entry> + <entry> + le type de DCC : + 0 = discussion reçue, + 1 = discussion envoyée, + 2 = fichier reçu, + 3 = fichier envoyé + </entry> + </row> + <row> + <entry><literal>status</literal></entry> + <entry> + le statut du DCC : + 0 = en attente, + 1 = en cours de connexion, + 2 = actif, + 3 = terminé, + 4 = échoué, + 5 = interrompu par l'utilisateur + </entry> + </row> + <row> + <entry><literal>start_time</literal></entry> + <entry>la date et heure de création du DCC</entry> + </row> + <row> + <entry><literal>start_transfer</literal></entry> + <entry>la date et heure de démarrage du transfert</entry> + </row> + <row> + <entry><literal>addr</literal></entry> + <entry>adresse IP de l'utilisateur distant</entry> + </row> + <row> + <entry><literal>port</literal></entry> + <entry>port utilisé pour le DCC</entry> + </row> + <row> + <entry><literal>nick</literal></entry> + <entry>pseudo de l'utilisateur distant</entry> + </row> + <row> + <entry><literal>filename</literal></entry> + <entry>nom de fichier</entry> + </row> + <row> + <entry><literal>local_filename</literal></entry> + <entry>nom de fichier local</entry> + </row> + <row> + <entry><literal>size</literal></entry> + <entry>taille du fichier</entry> + </row> + <row> + <entry><literal>pos</literal></entry> + <entry>position actuelle dans le fichier</entry> + </row> + <row> + <entry><literal>start_resume</literal></entry> + <entry>position de démarrage après une interruption</entry> + </row> + <row> + <entry><literal>bytes_per_sec</literal></entry> + <entry> + nombre d'octets transmis par seconde depuis le début + du transfert + </entry> + </row> + </tbody> + </tgroup> + </informaltable> + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free_dcc_info" après utilisation. + </para> + <para> + Exemples : +<screen> +t_plugin_dcc_info *dcc_info = plugin->get_dcc_info (plugin); +for (ptr_dcc = dcc_info; ptr_dcc; ptr_dcc = ptr_dcc->next_dcc) +{ + plugin->printf_server (plugin, "DCC type=%d, avec: %s", + ptr_dcc->type, ptr_dcc->nick); +} +if (dcc_info) + plugin->free_dcc_info (plugin, dcc_info); +</screen> + </para> + </section> + + <section id="secAPI_free_dcc_info"> + <title>free_dcc_info</title> + + <para> + Prototype : + <command> + void free_dcc_info (t_weechat_plugin *plugin, + t_plugin_dcc_info *dcc_info) + </command> + </para> + <para> + Libère la mémoire utilisée par une liste de DCC. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>dcc_info</option> : pointeur vers la liste DCC + renvoyée par la fonction "get_dcc_info" + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : aucune. + </para> + <para> + Exemple : + <screen>plugin->free_dcc_info (plugin, dcc_info);</screen> + </para> + </section> + + <section id="secAPI_get_config"> + <title>get_config</title> + + <para> + Prototype : + <command> + char *get_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Renvoie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à lire + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, NULL si non trouvée. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free" après utilisation. + </para> + <para> + Exemples : +<screen> +char *value1 = plugin->get_config (plugin, "look_set_title"); +char *value2 = plugin->get_config (plugin, "freenode.server_autojoin"); +</screen> + </para> + </section> + + <section id="secAPI_set_config"> + <title>set_config</title> + + <para> + Prototype : + <command> + int set_config (t_weechat_plugin *plugin, + char *option, char *valeur) + </command> + </para> + <para> + Modifie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à mettre à jour + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : nouvelle valeur pour l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si l'option a été modifiée avec succès, 0 si + une erreur s'est produite. + </para> + <para> + Exemple : +<screen> +plugin->set_config (plugin, "look_nicklist", "off"); +</screen> + </para> + </section> + + <section id="secAPI_get_plugin_config"> + <title>get_plugin_config</title> + + <para> + Prototype : + <command> + char *get_plugin_config (t_weechat_plugin *plugin, char *option) + </command> + </para> + <para> + Renvoie la valeur d'une option de l'extension. + L'option est lue depuis le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : "<literal>extension.option=valeur</literal>" + (NB : le nom de l'extension est ajouté automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à lire + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, NULL si non trouvée. + </para> + <para> + Note : le résultat doit être libéré par un appel à la fonction + "free" après utilisation. + </para> + <para> + Exemple : +<screen> +char *value = plugin->get_plugin_config (plugin, "ma_variable"); +</screen> + </para> + </section> + + <section id="secAPI_set_plugin_config"> + <title>set_plugin_config</title> + + <para> + Prototype : + <command> + int set_plugin_config (t_weechat_plugin *plugin, + char *option, char *valeur) + </command> + </para> + <para> + Modifie la valeur d'une option de l'extension. + L'option est écrite dans le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : "<literal>extension.option=valeur</literal>" + (NB : le nom de l'extension est ajouté automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>plugin</option> : pointeur vers la structure + de l'extension + </para> + </listitem> + <listitem> + <para> + <option>option</option> : nom de l'option à mettre à jour + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : nouvelle valeur pour l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si l'option a été modifiée avec succès, 0 si + une erreur s'est produite. + </para> + <para> + Exemple : +<screen> +plugin->set_plugin_config (plugin, "ma_variable", "valeur"); +</screen> + </para> + </section> + + </section> + + <section id="secCompilerExtension"> + <title>Compiler l'extension</title> + + <para> + La compilation ne nécessite pas les sources WeeChat, mais seulement + le fichier "<literal>weechat-plugin.h</literal>". + </para> + + <para> + Pour compiler une extension composée d'un fichier "toto.c" (sous + GNU/Linux) : +<screen> +<prompt>$ </prompt><userinput>gcc -fPIC -Wall -c toto.c</userinput> +<prompt>$ </prompt><userinput>gcc -shared -fPIC -o libtoto.so toto.o</userinput> +</screen> + </para> + + </section> + + <section id="secChargerExtension"> + <title>Charger l'extension dans WeeChat</title> + + <para> + Copier le fichier "libtoto.so" dans le répertoire système des + extensions (par exemple + "<literal>/usr/local/lib/weechat/plugins)</literal>" ou bien dans + celui de l'utilisateur (par exemple + "<literal>/home/xxxxx/.weechat/plugins</literal>"). + </para> + + <para> + Sous WeeChat : + <screen><userinput>/plugin load toto</userinput></screen> + </para> + + </section> + + <section id="secExempleExtension"> + <title>Exemple d'extension</title> + + <para> + Un exemple complet d'extension, qui ajoute une commande /double + affichant deux fois les paramètres passés sur le canal courant + (d'accord ce n'est pas très utile mais ceci est un exemple !) : +<screen> +#include <stdlib.h> + +#include "weechat-plugin.h" + +char plugin_name[] = "Double"; +char plugin_version[] = "0.1"; +char plugin_description[] = "Plugin de test pour WeeChat"; + +/* gestionnaire de commande "/double" */ + +int double_cmd (t_weechat_plugin *plugin, char *serveur, + char *commande, char *arguments, + char *handler_args, void *handler_pointer) +{ + if (arguments && arguments[0] && (arguments[0] != '/')) + { + plugin->exec_command (plugin, NULL, NULL, arguments); + plugin->exec_command (plugin, NULL, NULL, arguments); + } + return PLUGIN_RC_OK; +} + +int weechat_plugin_init (t_weechat_plugin *plugin) +{ + plugin->cmd_handler_add (plugin, "double", + "Affiche deux fois un message", + "msg", + "msg: message a afficher deux fois", + NULL, + &double_cmd, + NULL, NULL); + return PLUGIN_RC_OK; +} + +void weechat_plugin_end (t_weechat_plugin *plugin) +{ + /* on ne fait rien ici */ +} +</screen> + </para> + + </section> + + </section> + + <section id="secExtensionsScripts"> + <title>Extensions pour scripts</title> + + <para> + Trois extensions sont fournies en standard avec WeeChat pour utiliser + des langages de script : Perl, Python et Ruby. + </para> + + <section id="secChargerDechargerScripts"> + <title>Charger / décharger des scripts</title> + + <para> + Les scripts sont chargés et déchargés avec les commandes + <command>/perl</command>, <command>/python</command> et + <command>/ruby</command> (tapez <command>/help</command> dans + WeeChat pour obtenir de l'aide sur les commandes). + </para> + + <para> + Exemples : + <itemizedlist> + <listitem> + <para> + Charger un script Perl : + <command><userinput>/perl load /tmp/essai.pl</userinput></command> + </para> + </listitem> + <listitem> + <para> + Lister les scripts Perl chargés : + <command><userinput>/perl</userinput></command> + </para> + </listitem> + <listitem> + <para> + Charger un script Python : + <command><userinput>/python load /tmp/essai.py</userinput></command> + </para> + </listitem> + <listitem> + <para> + Lister les scripts Python chargés : + <command><userinput>/python</userinput></command> + </para> + </listitem> + <listitem> + <para> + Charger un script Ruby : + <command><userinput>/ruby load /tmp/essai.rb</userinput></command> + </para> + </listitem> + <listitem> + <para> + Lister les scripts Ruby chargés : + <command><userinput>/ruby</userinput></command> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secInterfaceWeeChatScripts"> + <title>Interface WeeChat / scripts</title> + + <section> + <title>register</title> + + <para> + Prototype Perl : + <command> + weechat::register ( nom, version, fonction_de_fin, description ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.register ( nom, version, fonction_de_fin, description ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.register ( nom, version, fonction_de_fin, description ) + </command> + </para> + <para> + C'est la première fonction à appeler dans le script. + Tout script pour WeeChat doit appeler cette fonction. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>nom</option> : nom unique pour identifier le script + (chaque script doit avoir un nom différent) + </para> + </listitem> + <listitem> + <para> + <option>version</option> : version du script + </para> + </listitem> + <listitem> + <para> + <option>fonction_de_fin</option> : fonction appelée quand + le script est déchargé (paramètre facultatif, une chaîne + vide signifiant qu'il n'y a pas de fonction à appeler) + </para> + </listitem> + <listitem> + <para> + <option>description</option> : brève description du script + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si le script a été enregistré, 0 si une erreur + s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::register ("essai", "1.0", "fin_essai", "Script d'essai !"); + +# python +weechat.register ("essai", "1.0", "fin_essai", "Script d'essai !") + +# ruby +Weechat.register ("essai", "1.0", "fin_essai", "Script d'essai !") +</screen> + </para> + </section> + + <section> + <title>print</title> + + <para> + Prototype Perl : + <command> + weechat::print ( message, [canal, [serveur]] ) + </command> + </para> + <para> + Prototype Python : + <command> + weechat.prnt ( message, [canal, [serveur]] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.print ( message, [canal, [serveur]] ) + </command> + </para> + <para> + Affiche un message sur un tampon WeeChat, identifié par le + serveur et le canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal pour trouver le + tampon dans lequel afficher + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur pour + trouver le tampon dans lequel afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::print ("message"); +weechat::print ("message", "#weechat"); +weechat::print ("message", "#weechat", "freenode"); + +# python +weechat.prnt ("message") +weechat.prnt ("message", "#weechat") +weechat.prnt ("message", "#weechat", "freenode") + +# ruby +Weechat.print ("message") +Weechat.print ("message", "#weechat") +Weechat.print ("message", "#weechat", "freenode") +</screen> + </para> + </section> + + <section> + <title>print_infobar</title> + + <para> + Prototype Perl : + <command> + weechat::print_infobar ( temps, message ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.print_infobar ( temps, message ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.print_infobar ( temps, message ) + </command> + </para> + <para> + Affiche un message sur la barre d'infos pour un temps déterminé. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>temps</option> : temps (en secondes) pendant + lequel le message est affiché (0 = jamais effacé) + </para> + </listitem> + <listitem> + <para> + <option>message</option> : message à afficher + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::print_infobar (5, "message"); + +# python +weechat.print_infobar (5, "message") + +# ruby +Weechat.print_infobar (5, "message") +</screen> + </para> + </section> + + <section> + <title>add_message_handler</title> + + <para> + Prototype Perl : + <command> + weechat::add_message_handler ( message, fonction ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.add_message_handler ( message, fonction ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.add_message_handler ( message, fonction ) + </command> + </para> + <para> + Ajoute un gestionnaire de messages IRC, appelé dès qu'un message + IRC est reçu. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>message</option> : nom du message IRC pour lequel la + fonction est appelée. + Pour connaître la liste des messages IRC disponibles, merci + de consulter les <acronym>RFC</acronym>s + <ulink url="http://www.ietf.org/rfc/rfc1459.txt">1459</ulink> et + <ulink url="http://www.ietf.org/rfc/rfc2812.txt">2812</ulink> + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque le message + est reçu + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::add_message_handler ("privmsg", ma_fonction); +sub ma_fonction +{ + weechat::print ("serveur=$_[0]\n"); + ($null, $canal, $message) = split ":",$_[1],3; + ($masque, $null, $canal) = split " ", $canal; + weechat::print ("masque=$masque, canal=$canal, msg=$message\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_message_handler ("privmsg", ma_fonction) +def ma_fonction(serveur, args): + weechat.prnt("serveur="+serveur) + null, canal, message = string.split(args, ":", 2) + masque, null, canal = string.split(string.strip(canal), " ", 2) + weechat.prnt("masque="+masque+", canal="+canal+", message="+message) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Note : la fonction appelée lorsque le message est reçu doit + renvoyer une des valeurs suivantes (préfixée par "weechat::" pour + Perl, "weechat." pour Python ou "Weechat." pour Ruby) : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_WEECHAT</literal> : le message + ne sera pas transmis à WeeChat + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_PLUGINS</literal> : le message + ne sera pas transmis à d'autres extensions + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK_IGNORE_ALL</literal> : le message + ne sera ni transmis à WeeChat ni à d'autres extensions + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>add_command_handler</title> + + <para> + Prototype Perl : + <command> + weechat::add_command_handler ( commande, fonction, + [description, arguments, arguments_description, + modele_completion] ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.add_command_handler ( commande, fonction, + [description, arguments, arguments_description, + modele_completion] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.add_command_handler ( commande, fonction, + [description, arguments, arguments_description, + modele_completion] ) + </command> + </para> + <para> + Ajoute un gestionnaire de commande WeeChat, appelé dès que + l'utilisateur utilise la commande (par exemple /commande). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>commande</option> : nom de la nouvelle commande, + qui peut être une commande déjà existante (attention la + commande remplacée ne sera plus disponible jusqu'à ce que + le script soit déchargé) + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction appelée lorsque la + commande est exécutée + </para> + </listitem> + <listitem> + <para> + <option>arguments</option> : brève description des + paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>arguments_description</option> : longue description + des paramètres de la commande (affichée par /help commande) + </para> + </listitem> + <listitem> + <para> + <option>modele_completion</option> : modèle pour la + complétion sous la forme "<literal>abc|%w def|%i</literal>" + qui signigie "abc" ou une commande WeeChat pour le premier + paramètre, et "def" ou une commande IRC pour le deuxième. + (voir <xref linkend="secAPI_cmd_handler_add" />) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::add_command_handler ("commande", ma_commande); +sub ma_commande +{ + weechat::print("Serveur: $_[0], paramètres: $_[1]\n"); + return weechat::PLUGIN_RC_OK; +} + +# python +weechat.add_command_handler ("commande", ma_commande) +def ma_commande(serveur, args): + weechat.prnt("serveur:"+serveur+" paramètres:"+args) + return weechat.PLUGIN_RC_OK +</screen> + </para> + <para> + Notes : la fonction appelée lorsque le message est exécutée doit + renvoyer une des valeurs suivantes (préfixée par "weechat::" pour + Perl, "weechat." pour Python ou "Weechat." pour Ruby) : + <itemizedlist> + <listitem> + <para> + <literal>PLUGIN_RC_KO</literal> : la fonction a échoué + </para> + </listitem> + <listitem> + <para> + <literal>PLUGIN_RC_OK</literal> : la fonction a réussi + </para> + </listitem> + </itemizedlist> + </para> + </section> + + <section> + <title>remove_handler</title> + + <para> + Prototype Perl : + <command> + weechat::remove_handler ( nom, fonction ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.remove_handler ( nom, fonction ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.remove_handler ( nom, fonction ) + </command> + </para> + <para> + Supprime un gestionnaire. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>nom</option> : nom du message IRC ou de la commande + </para> + </listitem> + <listitem> + <para> + <option>fonction</option> : fonction associée + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::remove_handler ("commande", ma_commande); + +# python +weechat.remove_handler ("commande", ma_commande) + +# ruby +Weechat.remove_handler ("commande", ma_commande) +</screen> + </para> + </section> + + <section> + <title>command</title> + + <para> + Prototype Perl : + <command> + weechat::command ( commande, [canal, [serveur]] ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.command ( commande, [canal, [serveur]] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.command ( commande, [canal, [serveur]] ) + </command> + </para> + <para> + Exécute une commande ou envoie un message à un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>commande</option> : la commande à exécuter + </para> + </listitem> + <listitem> + <para> + <option>canal</option> : nom du canal où exécuter la + commande + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + exécuter la commande + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::command ("bonjour tout le monde !"); +weechat::command ("/kick toto merci de quitter ce canal", "#weechat"); +weechat::command ("/nick newnick", "", "freenode"); + +# python +weechat.command ("bonjour tout le monde !") +weechat.command ("/kick toto merci de quitter ce canal", "#weechat") +weechat.command ("/nick newnick", "", "freenode") + +# ruby +Weechat.command ("bonjour tout le monde !") +Weechat.command ("/kick toto merci de quitter ce canal", "#weechat") +Weechat.command ("/nick newnick", "", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_info</title> + + <para> + Prototype Perl : + <command> + weechat::get_info ( nom, [serveur] ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_info ( nom, [serveur] ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_info ( nom, [serveur] ) + </command> + </para> + <para> + Renvoie une information sur WeeChat ou un canal. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>nom</option> : nom de l'info à obtenir + (voir <xref linkend="secAPI_get_info" />) + </para> + </listitem> + <listitem> + <para> + <option>serveur</option> : nom interne du serveur où + récupérer l'information (si nécessaire) + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : l'information demandée, chaîne vide si une + erreur s'est produite ou que l'information n'a pas été trouvée. + </para> + <para> + Exemples : +<screen> +# perl +$version = get_info("version"); +$nick = get_info("nick", "freenode"); + +# python +version = weechat.get_info ("version") +nick = weechat.get_info ("nick", "freenode") +</screen> + </para> + </section> + + <section> + <title>get_dcc_info</title> + + <para> + Prototype Perl : + <command> + weechat::get_dcc_info ( ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_dcc_info ( ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_dcc_info ( ) + </command> + </para> + <para> + Renvoie la liste des DCC en cours ou terminés. + </para> + <para> + Valeur renvoyée : la liste des DCC + (voir <xref linkend="secAPI_get_dcc_info" />). + </para> + </section> + + <section> + <title>get_config</title> + + <para> + Prototype Perl : + <command> + weechat::get_config ( option ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_config ( option ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_config ( option ) + </command> + </para> + <para> + Renvoie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, chaîne vide si l'option + n'a pas été trouvée. + </para> + <para> + Exemples : +<screen> +# perl +$value1 = weechat::get_config ("look_nicklist"); +$value2 = weechat::get_config ("freenode.server_autojoin"); + +# python +value1 = weechat.get_config ("look_nicklist") +value2 = weechat.get_config ("freenode.server_autojoin") +</screen> + </para> + </section> + + <section> + <title>set_config</title> + + <para> + Prototype Perl : + <command> + weechat::set_config ( option, valeur ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.set_config ( option, valeur ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.set_config ( option, valeur ) + </command> + </para> + <para> + Modifie la valeur d'une option de configuration WeeChat. + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : la nouvelle valeur pour + l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est + produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::set_config ("look_nicklist", "off"); +weechat::set_config ("freenode.server_autojoin, "#weechat"); + +# python +weechat.set_config ("look_nicklist", "off") +weechat.set_config ("freenode.server_autojoin, "#weechat") + +# ruby +Weechat.set_config ("look_nicklist", "off") +Weechat.set_config ("freenode.server_autojoin, "#weechat") +</screen> + </para> + </section> + + <section> + <title>get_plugin_config</title> + + <para> + Prototype Perl : + <command> + weechat::get_plugin_config ( option ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.get_plugin_config ( option ) + </command> + </para> + <para> + Renvoie la valeur d'une option de l'extension. + L'option est lue depuis le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : + "<literal>extension.script.option=valeur</literal>" + (NB : le nom de l'extension et du script sont ajoutés + automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : la valeur de l'option, chaîne vide si l'option + n'a pas été trouvée. + </para> + <para> + Exemples : +<screen> +# perl +$value = weechat::get_plugin_config ("ma_variable"); + +# python +value = weechat.get_plugin_config ("ma_variable") +</screen> + </para> + </section> + + <section> + <title>set_plugin_config</title> + + <para> + Prototype Perl : + <command> + weechat::set_plugin_config ( option, valeur ); + </command> + </para> + <para> + Prototype Python : + <command> + weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Prototype Ruby : + <command> + Weechat.set_plugin_config ( option, valeur ) + </command> + </para> + <para> + Modifie la valeur d'une option de l'extension. + L'option est écrite dans le fichier + "<literal>~/.weechat/plugins.rc</literal>" et est + sous cette forme : + "<literal>extension.script.option=valeur</literal>" + (NB : le nom de l'extension et du script sont rajoutés + automatiquement). + </para> + <para> + Paramètres : + <itemizedlist> + <listitem> + <para> + <option>option</option> : nom de l'option + </para> + </listitem> + <listitem> + <para> + <option>valeur</option> : la nouvelle valeur pour + l'option + </para> + </listitem> + </itemizedlist> + </para> + <para> + Valeur renvoyée : 1 si succès, 0 si une erreur s'est + produite. + </para> + <para> + Exemples : +<screen> +# perl +weechat::set_plugin_config ("ma_variable", "valeur"); + +# python +weechat.set_plugin_config ("ma_variable", "valeur") + +# ruby +Weechat.set_plugin_config ("ma_variable", "valeur") +</screen> + </para> + </section> + + </section> + + </section> + + </chapter> + + <!-- ======================== Auteurs / Support ========================= --> + + <chapter id="chapAuteursSupport"> + <title>Auteurs / Support</title> + + <para> + Ce chapître liste les auteurs et contributeurs pour WeeChat, et + indique les moyens d'obtenir du support. + </para> + + <section id="secAuteurs"> + <title>Auteurs</title> + + <para> + WeeChat est développé par : + <itemizedlist> + <listitem> + <para> + <emphasis>FlashCode (Sébastien Helleu)</emphasis> + <email>flashcode AT flashtux.org</email> - + développeur principal + </para> + </listitem> + <listitem> + <para> + <emphasis>Kolter</emphasis> + <email>kolter AT free.fr</email> - + développeur + </para> + </listitem> + <listitem> + <para> + <emphasis>Ptitlouis</emphasis> + <email>ptitlouis AT sysif.net</email> - + empaqueteur Debian + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secContributeurs"> + <title>Contributeurs</title> + + <para> + Les personnes suivantes ont contribué à WeeChat : + <itemizedlist> + <listitem> + <para> + <emphasis>Jiri Golembiovsky</emphasis> - + traduction tchèque + </para> + </listitem> + <listitem> + <para> + <emphasis>Rudolf Polzer</emphasis> - + patchs + </para> + </listitem> + <listitem> + <para> + <emphasis>Jim Ramsay</emphasis> - + patchs + </para> + </listitem> + <listitem> + <para> + <emphasis>Pistos</emphasis> - + patchs + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + <section id="secSupport"> + <title>Obtenir du support</title> + + <para> + Avant de faire appel au support, merci de lire la documentation et + la FAQ de WeeChat (la documentation est le document que vous êtes + en train de lire, si vous n'avez pas tout lu jusqu'ici, il est encore + temps de recommencer !) + </para> + + <para> + <itemizedlist> + <listitem> + <para> + IRC : serveur "<literal>irc.freenode.net</literal>", + canal "<literal>#weechat</literal>" + </para> + </listitem> + <listitem> + <para> + Forum WeeChat : + <ulink url="http://forums.flashtux.org"> + http://forums.flashtux.org + </ulink> + </para> + </listitem> + <listitem> + <para> + Liste de diffusion : + <itemizedlist> + <listitem> + <para> + Pour souscrire : + <ulink url="http://mail.nongnu.org/mailman/listinfo/weechat-support"> + http://mail.nongnu.org/mailman/listinfo/weechat-support + </ulink> + </para> + </listitem> + <listitem> + <para> + Pour envoyer un mail à la liste de diffusion : + <email>weechat-support@nongnu.org</email> + </para> + </listitem> + </itemizedlist> + Les archives de la liste de diffusion sont ici : + <ulink url="http://mail.nongnu.org/archive/html/weechat-support"> + http://mail.nongnu.org/archive/html/weechat-support + </ulink> + </para> + </listitem> + </itemizedlist> + </para> + + </section> + + </chapter> + +</book> diff --git a/weechat/doc/weechat-doc.css b/weechat/doc/weechat-doc.css new file mode 100644 index 000000000..6f8650351 --- /dev/null +++ b/weechat/doc/weechat-doc.css @@ -0,0 +1,49 @@ +/* + * WeeChat doc CSS + * (c) 2006 by FlashCode <flashcode@flashtux.org> + */ + +body { + font-size: 12px; +} + +table { + font-size: 12px; +} + +.informaltable table { + font-size: 11px; + font-family: Verdana; + border-collapse: collapse; +} + +.informaltable table th { + padding: 2px 5px 2px 5px; + border: solid 1px #AAAAAA; + background-color: #DDDDFF; +} + +.informaltable table td { + padding: 2px 5px 2px 5px; + border: solid 1px #AAAAAA; +} + +.oddrow { + background-color: #F0F0F0; +} + +.synopsis { + font-size: 11px; +} + +.programlisting { + font-size: 11px; +} + +pre.screen { + font-size: 11px; + background-color: #F5F5F5; + border: solid 1px #CCCCCC; + padding: 4px; + margin: 0 40px 0 40px; +} diff --git a/weechat/doc/weechat-html-one.xsl b/weechat/doc/weechat-html-one.xsl new file mode 100644 index 000000000..5427dbb3a --- /dev/null +++ b/weechat/doc/weechat-html-one.xsl @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/html/docbook.xsl"/> + +<xsl:output indent="yes"/> + +<xsl:param name="chunk.section.depth" select="2"/> +<xsl:param name="chunk.quietly" select="1"/> +<xsl:param name="chunk.first.sections" select="1"/> +<xsl:param name="generate.section.toc.level" select="3"/> + +<xsl:param name="html.stylesheet">weechat-doc.css</xsl:param> + +<xsl:template name="tr.attributes"> + <xsl:param name="row" select="."/> + <xsl:param name="rownum" select="0"/> + + <xsl:if test="not(ancestor::table/@tabstyle = 'unstriped')"> + <xsl:if test="$rownum mod 2 = 0"> + <xsl:attribute name="class">oddrow</xsl:attribute> + </xsl:if> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> diff --git a/weechat/doc/weechat-html.xsl b/weechat/doc/weechat-html.xsl new file mode 100644 index 000000000..56fb6f96d --- /dev/null +++ b/weechat/doc/weechat-html.xsl @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + +<xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/html/chunk.xsl"/> + +<xsl:output indent="yes"/> + +<xsl:param name="chunk.section.depth" select="2"/> +<xsl:param name="chunk.quietly" select="1"/> +<xsl:param name="chunk.first.sections" select="1"/> +<xsl:param name="generate.section.toc.level" select="3"/> + +<xsl:param name="html.stylesheet">weechat-doc.css</xsl:param> + +<xsl:template name="tr.attributes"> + <xsl:param name="row" select="."/> + <xsl:param name="rownum" select="0"/> + + <xsl:if test="not(ancestor::table/@tabstyle = 'unstriped')"> + <xsl:if test="$rownum mod 2 = 0"> + <xsl:attribute name="class">oddrow</xsl:attribute> + </xsl:if> + </xsl:if> +</xsl:template> + +</xsl:stylesheet> |