diff options
Diffstat (limited to 'doc/user-guide')
-rw-r--r-- | doc/user-guide/Makefile | 2 | ||||
-rw-r--r-- | doc/user-guide/commands.xml | 6 |
2 files changed, 6 insertions, 2 deletions
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> |