From: <sa...@us...> - 2006-08-15 04:05:34
|
Revision: 16762 Author: sadrul Date: 2006-08-14 21:05:27 -0700 (Mon, 14 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16762&view=rev Log Message: ----------- Update the manpage for gntgaim to reflect that I think it's pretty pimpin'. Modified Paths: -------------- trunk/doc/gntgaim.1.in Modified: trunk/doc/gntgaim.1.in =================================================================== --- trunk/doc/gntgaim.1.in 2006-08-15 02:45:52 UTC (rev 16761) +++ trunk/doc/gntgaim.1.in 2006-08-15 04:05:27 UTC (rev 16762) @@ -21,7 +21,7 @@ .\" USA. .TH gntgaim 1 .SH NAME -GntGaim \- Console frontend for Instant Messaging client Gaim. +GntGaim \- A Pimpin' Penguin console frontend for Instant Messaging client Gaim. .SH SYNOPSIS .TP 5 \fBgntgaim \fI[options]\fR @@ -39,8 +39,9 @@ command line syntax: .TP .B \-d, \-\-debug -Print debugging messages to stdout. These are the same debugging messages -that are displayed in the \fBDebug\fR window. +Print debugging messages to stderr and start with the \fBDebug\fR window. The +messages shown in the \fBDebug\fR window are the same as the ones printed in +stderr. .TP .B \-c, \-\-config=\fIDIR\fB Use \fIDIR\fR as the directory for config files instead of \fI~/.gaim\fR. @@ -80,6 +81,18 @@ .B Alt \+ r Start resizing a window. Press the cursor keys to resize the window. When you are done, press \fBEnter\fR or \fBEscape\fR. +.TP +.B Alt \+ d +Dump the contents of the screen in HTML format in a file named "dump.html" in +working directory. +.TP +.B Alt \+ . +Move the position of the current window in the window list one place to the +right. +.TP +.B Alt \+ , +Move the position of the current window in the window list one place to the +left. .SH FILES \fI~/.gntrc\fR: configuration file for gnt applications. @@ -132,6 +145,30 @@ disabled = gray; black .br +.SH Conversation Commands +There are a few helpful commands in addition to the regular commands. You can +use these from any conversation to access other windows. + +.TP +.B accounts +for the accounts window. + +.TP +.B buddylist +for the buddylist. + +.TP +.B debugwin +for the debug window. + +.TP +.B plugins +for the plugins window. + +.TP +.B prefs +for the preferences window. + .SH BUGS Known bugs are listed at .br @@ -139,15 +176,15 @@ .SH PATCHES If you fix a bug in \fBgntgaim\fR (or otherwise enhance it), please submit a -patch (using \fIcvs diff -up > my.diff\fR against the latest CVS version) +patch (using \fIsvn diff > my.diff\fR against the latest SVN version) at .br \fIhttp://sourceforge.net/tracker/?func=add&group_id=235&atid=300235\fR Before sending a bug report, please verify that you have the latest -version of \fBgntgaim\fR. Many bugs (major and minor) are fixed -at each release, and if yours is out of date, the problem may already -have been solved. +version of \fBgntgaim\fR and \fBlibgaim\fR. Many bugs (major and minor) are +fixed at each release, and if yours is out of date, the problem may already have +been solved. .SH SEE ALSO \fIhttp://gaim.sourceforge.net/\fR @@ -173,5 +210,7 @@ Sadrul Habib Chowdhury <\fIs...@us...\fR> .br -This manpage was written by Sadrul Habib Chowdhury <\fIs...@us...\fR>. +This manpage was written by Sadrul Habib Chowdhury +<\fIs...@us...\fR> and Dennis Ristuccia +<\fId...@de...\fR>. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-08-20 22:47:28
|
Revision: 16922 Author: sadrul Date: 2006-08-20 15:47:25 -0700 (Sun, 20 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16922&view=rev Log Message: ----------- Update the manual, and add a sample for remapping keys. Modified Paths: -------------- trunk/doc/gntgaim.1.in Modified: trunk/doc/gntgaim.1.in =================================================================== --- trunk/doc/gntgaim.1.in 2006-08-20 22:46:20 UTC (rev 16921) +++ trunk/doc/gntgaim.1.in 2006-08-20 22:47:25 UTC (rev 16922) @@ -145,6 +145,39 @@ disabled = gray; black .br +.br +# Remap some keys for GntEntry +.br +[GntEntry::remap] +.br +# Remap the up-arrow to the left-arrow +.br +^[[A = ^[[D +.br +# Remap the down-arrow to the right-arrow +.br +^[[B = ^[[C +.br +# Remap 'a' to 'bcd' +.br +a = bcd +.br +# Completely ignore the key 'q' +.br +q = +.br +# But the following will NOT work +.br +#abc = bcd +.br + +# Hitting 'space' will activate a button +.br +[GntButton::remap] +.br +\\ = \\r +.br + .SH Conversation Commands There are a few helpful commands in addition to the regular commands. You can use these from any conversation to access other windows. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-08-21 01:47:54
|
Revision: 16928 Author: sadrul Date: 2006-08-20 18:47:51 -0700 (Sun, 20 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16928&view=rev Log Message: ----------- update the manual. Modified Paths: -------------- trunk/doc/gntgaim.1.in Modified: trunk/doc/gntgaim.1.in =================================================================== --- trunk/doc/gntgaim.1.in 2006-08-21 01:44:07 UTC (rev 16927) +++ trunk/doc/gntgaim.1.in 2006-08-21 01:47:51 UTC (rev 16928) @@ -93,6 +93,9 @@ .B Alt \+ , Move the position of the current window in the window list one place to the left. +.TP +.B Alt \+ l +Refresh the windows. This is useful after resizing the terminal window. .SH FILES \fI~/.gntrc\fR: configuration file for gnt applications. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-08-29 01:58:18
|
Revision: 17075 Author: sadrul Date: 2006-08-28 18:58:14 -0700 (Mon, 28 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=17075&view=rev Log Message: ----------- Update the manual for mouse-support and window-manager in gntgaim. Modified Paths: -------------- trunk/doc/gntgaim.1.in Modified: trunk/doc/gntgaim.1.in =================================================================== --- trunk/doc/gntgaim.1.in 2006-08-29 01:49:30 UTC (rev 17074) +++ trunk/doc/gntgaim.1.in 2006-08-29 01:58:14 UTC (rev 17075) @@ -107,6 +107,14 @@ .br shadow = 0 .br +# There is experimental mouse support +.br +mouse = 1 +.br +# To use some custom window-manager +.br +wm = /usr/local/lib/gaim/s.so +.br .br [colors] @@ -181,6 +189,23 @@ \\ = \\r .br +.SH Mouse Support +There is experimental mouse support. You can focus windows, activate buttons, +select rows in a list, scroll using the wheel-scroll etc. Mouse support is +disabled by default, so you need to enable it in ~/.gntrc (see the sample +above). + +.SH Window Management +The default window management is very limited. But it is possible to write +custom window managers to suit your needs. There is a sample window-manager +included (named \fIs.so\fR) which adds a little 'close-button' for the windows, +removes the borders from the buddylist and pops up new windows in the middle of +the screen, instead of at the upper-left corder. It is provided as a sample +simple manager, but it should be possible to write more complex managers, and +it's very possible that the window-manager API will need to be enhanced. Look at +the sample ~/.gntrc file above to see how to select a window-manager. + + .SH Conversation Commands There are a few helpful commands in addition to the regular commands. You can use these from any conversation to access other windows. @@ -226,6 +251,9 @@ fixed at each release, and if yours is out of date, the problem may already have been solved. +You are also encouraged to drop by at \fB#gaim\fR on \fIirc.freenode.net\fR to +discuss about development. + .SH SEE ALSO \fIhttp://gaim.sourceforge.net/\fR .br This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |