diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2009-01-15 15:29:05 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2009-01-15 15:29:05 +0100 |
commit | 18a62f1dac870c96152063d69336ecfaf563da69 (patch) | |
tree | 7989acb4aebf8749f7ddb5e48e13431f93e0ce33 /doc/docgen.pl | |
parent | c717d206cd73c0445a9edd1a5b723ea79a107676 (diff) | |
download | weechat-18a62f1dac870c96152063d69336ecfaf563da69.zip |
Add Jabber plugin (alpha version, many Jabber features are missing)
This commit introduces Jabber/XMPP protocol for WeeChat. It uses iksemel lib.
Please note many major Jabber features are missing:
- roster management (add/remove/.. buddies),
- MUC,
- transports.
It is possible to define servers (with /jabber), connect to them (with
/jconnect), disconnect (/jdisconnect) and chat with buddies (with /jchat).
Diffstat (limited to 'doc/docgen.pl')
-rw-r--r-- | doc/docgen.pl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/docgen.pl b/doc/docgen.pl index 8efa115b3..5b2e8cf7f 100644 --- a/doc/docgen.pl +++ b/doc/docgen.pl @@ -65,11 +65,12 @@ my @locale_list = qw(en_US fr_FR de_DE); my %plugin_list = ("weechat" => "co", "alias" => "", "aspell" => "o", "charset" => "co", "demo" => "co", "fifo" => "co", - "irc" => "co", "logger" => "co", - "notify" => "co", "relay" => "co", - "perl" => "", "python" => "", - "ruby" => "", "lua" => "", - "tcl" => "", "xfer" => "co"); + "irc" => "co", "jabber" => "o", + "logger" => "co", "notify" => "co", + "relay" => "co", "perl" => "", + "python" => "", "ruby" => "", + "lua" => "", "tcl" => "", + "xfer" => "co"); # options to ignore my @ignore_options = ("aspell\\.dict\\..*", |