diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/BUILD.win32 | 10 | ||||
-rw-r--r-- | doc/user-guide/Makefile | 2 | ||||
-rw-r--r-- | doc/user-guide/commands.xml | 6 |
3 files changed, 6 insertions, 12 deletions
diff --git a/doc/BUILD.win32 b/doc/BUILD.win32 deleted file mode 100644 index e1afe600..00000000 --- a/doc/BUILD.win32 +++ /dev/null @@ -1,10 +0,0 @@ -Instructions for building BitlBee for Windows
-=============================================
-
-1) Install the mingw32 compiler
-
-2) Compile GLib2 for the target i586-mingw32msvc
-
-3) Cross-compile BitlBee:
-
-$ ./configure --target=i586-mingw32msvc --ssl=bogus --arch=Windows
diff --git a/doc/user-guide/Makefile b/doc/user-guide/Makefile index 0215ede8..af4180a1 100644 --- a/doc/user-guide/Makefile +++ b/doc/user-guide/Makefile @@ -16,7 +16,7 @@ all: user-guide.txt user-guide.html help.txt # user-guide.pdf user-guide.ps user mv $*.db.txt $@ %.html: %.db.xml - xsltproc --output $@ http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl $< + xsltproc --param generate.consistent.ids 1 --output $@ http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl $< %.pdf: %.db.xml xmlto --skip-validation pdf $< diff --git a/doc/user-guide/commands.xml b/doc/user-guide/commands.xml index 45a6674f..e7d56ba1 100644 --- a/doc/user-guide/commands.xml +++ b/doc/user-guide/commands.xml @@ -1789,13 +1789,17 @@ </bitlbee-command> <bitlbee-command name="blist"> - <syntax>blist [all|online|offline|away]</syntax> + <syntax>blist [all|online|offline|away] [<pattern>]</syntax> <short-description>List all the buddies in the current channel</short-description> <description> <para> You can get a more readable buddy list using the <emphasis>blist</emphasis> command. If you want a complete list (including the offline users) you can use the <emphasis>all</emphasis> argument. </para> + + <para> + A perl-compatible regular expression can be supplied as <emphasis>pattern</emphasis> to filter the results (case-insensitive). + </para> </description> </bitlbee-command> |