# HG changeset patch # User Mikael Berthe # Date 1150535329 -7200 # Node ID 45ddb3ada74f3940301d7a2d7a1adf6bc47e9aef # Parent b416844652838d916024fe9024ac3491298eab9c Update documentation diff -r b41684465283 -r 45ddb3ada74f mcabber/ChangeLog --- a/mcabber/ChangeLog Fri Jun 16 22:38:49 2006 +0200 +++ b/mcabber/ChangeLog Sat Jun 17 11:08:49 2006 +0200 @@ -22,8 +22,10 @@ * New option "delete_on_reject" When set, people are automatically removed from the roster if their subscription request is rejected. + * New option "max_history_age" * MUC: New option "muc_auto_whois" - * MUC: Allow "/room join . [nick]" if the current item is a MUC room + * MUC: Mcabber can join password-protected chatrooms + * MUC: Allow "/room join . [nick [pass]]" if the current item is a MUC room * MUC: Fix joining a room when the buddylist is empty * MUC: Try to work around some server and network issues * Ctrl-l now reread color option values @@ -31,6 +33,7 @@ * Disable file permission checks on Cygwin * Improve logging (especially, XML data isn't truncated anymore) * Fix negative priority + * Fix a few memory leaks * Other misc. bugfixes and improvements * Documentation updates diff -r b41684465283 -r 45ddb3ada74f mcabber/TODO --- a/mcabber/TODO Fri Jun 16 22:38:49 2006 +0200 +++ b/mcabber/TODO Sat Jun 17 11:08:49 2006 +0200 @@ -15,7 +15,6 @@ * Improve the completion system * Persistent room in the roster (join every connect) * MUC: advanced settings for room creation -* MUC: join password-protected room * MUC: display roles of room members * JEP-0022/0085: Message events / chat states (composing, etc.) * "Offline roster" (when disconnected) diff -r b41684465283 -r 45ddb3ada74f mcabber/doc/mcabber.1 --- a/mcabber/doc/mcabber.1 Fri Jun 16 22:38:49 2006 +0200 +++ b/mcabber/doc/mcabber.1 Sat Jun 17 11:08:49 2006 +0200 @@ -253,7 +253,7 @@ \fBlist\fR list all pending events .TP -\fB/rawxml\fR send +\fB/rawxml\fR send string \fBsend\fR string: send string (raw XML format) to the Jabber server\&. No check is done on the string provided\&. BEWARE! Use this only if you know what you are doing, or you could terminate the connection\&. .SH "COMMANDS RELATED TO THE ROSTER AND JABBER RESOURCES" @@ -325,7 +325,7 @@ \fB/room\fR The room command handles Multi\-User Chat room actions\&. - \fBjoin\fR [room [nick]] join "room", using "nick" as nickname\&. If no nickname is provided, the "nickname" option value is used (see sample configuration file)\&. If the currently selected entry is correctly recognized as a room by mcabber, the shortcut "\&." can be used instead of the full room id\&. + \fBjoin\fR [room [nick [pass]]] join "room", using "nick" as nickname\&. If no nickname is provided (or if it is an empty string), the "nickname" option value is used (see sample configuration file)\&. If the currently selected entry is correctly recognized as a room by mcabber, the shortcut "\&." can be used instead of the full room id\&. A password can be provided to enter protected rooms\&. If your nickname contains space characters, use quotes\&. \fBleave\fR [message] leave the current room \fBnames\fR display members of the current room \fBnick\fR nick change your nickname in the current room diff -r b41684465283 -r 45ddb3ada74f mcabber/doc/mcabber.1.html --- a/mcabber/doc/mcabber.1.html Fri Jun 16 22:38:49 2006 +0200 +++ b/mcabber/doc/mcabber.1.html Sat Jun 17 11:08:49 2006 +0200 @@ -618,7 +618,7 @@
-/rawxml send +/rawxml send string
send string: send string (raw XML format) to the Jabber server. No check is done on the string provided. BEWARE! Use this only if you know what you are doing, or you could terminate the connection. @@ -837,10 +837,10 @@ @@ -1149,7 +1149,7 @@ diff -r b41684465283 -r 45ddb3ada74f mcabber/doc/mcabber.1.txt --- a/mcabber/doc/mcabber.1.txt Fri Jun 16 22:38:49 2006 +0200 +++ b/mcabber/doc/mcabber.1.txt Sat Jun 17 11:08:49 2006 +0200 @@ -225,7 +225,7 @@ 'reject';; reject the event #n 'list';; list all pending events -/rawxml send:: +/rawxml send string:: 'send' string: send string (raw XML format) to the Jabber server. No check is done on the string provided. BEWARE! Use this only if you know what you are doing, or you could terminate the connection. COMMANDS RELATED TO THE ROSTER AND JABBER RESOURCES @@ -306,7 +306,7 @@ /room invite|kick|ban|role|affil:: The 'room' command handles Multi-User Chat room actions. - 'join' [room [nick]];; join "room", using "nick" as nickname. If no nickname is provided, the "nickname" option value is used (see sample configuration file). If the currently selected entry is correctly recognized as a room by mcabber, the shortcut "." can be used instead of the full room id. + 'join' [room [nick [pass]]];; join "room", using "nick" as nickname. If no nickname is provided (or if it is an empty string), the "nickname" option value is used (see sample configuration file). If the currently selected entry is correctly recognized as a room by mcabber, the shortcut "." can be used instead of the full room id. A password can be provided to enter protected rooms. If your nickname contains space characters, use quotes. 'leave' [message];; leave the current room 'names';; display members of the current room 'nick' nick;; change your nickname in the current room
-join [room [nick]] +join [room [nick [pass]]] -join "room", using "nick" as nickname. If no nickname is provided, the "nickname" option value is used (see sample configuration file). If the currently selected entry is correctly recognized as a room by mcabber, the shortcut "." can be used instead of the full room id. +join "room", using "nick" as nickname. If no nickname is provided (or if it is an empty string), the "nickname" option value is used (see sample configuration file). If the currently selected entry is correctly recognized as a room by mcabber, the shortcut "." can be used instead of the full room id. A password can be provided to enter protected rooms. If your nickname contains space characters, use quotes.