Changeset 028ca92
- Timestamp:
- 2016-09-21T02:48:14Z (8 years ago)
- Branches:
- master
- Children:
- 35401cd
- Parents:
- 7e4f439c
- Location:
- doc/user-guide
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/user-guide/commands.xml
r7e4f439c r028ca92 258 258 259 259 <para> 260 Available actions: add, with . See <emphasis>help chat <action></emphasis> for more information.260 Available actions: add, with, list. See <emphasis>help chat <action></emphasis> for more information. 261 261 </para> 262 262 … … 272 272 273 273 <para> 274 After adding a room to your list, you can simply use the IRC /join command to enter the room. Also, you can tell BitlBee to automatically join the room when you log in. ( See <emphasis>chat set</emphasis>)274 After adding a room to your list, you can simply use the IRC /join command to enter the room. Also, you can tell BitlBee to automatically join the room when you log in. (<emphasis>channel <channel> set auto_join true</emphasis>) 275 275 </para> 276 276 … … 287 287 <description> 288 288 <para> 289 List existing chatrooms provided by an account. BitlBee needs this to propogate an internal list of chats. The existing chat can then be added with <emphasis>chat add</emphasis>. 290 </para> 291 </description> 289 List existing chatrooms provided by an account. BitlBee needs this to propogate an internal list of chats. The existing chat can then be added with <emphasis>chat add</emphasis>, using the number in the index column after a "!" as a shortcut. 290 </para> 291 </description> 292 293 <ircexample> 294 <ircline nick="dx">chat list facebook</ircline> 295 <ircline pre="1" nick="root">Index Title Topic</ircline> 296 <ircline pre="1" nick="root"> 1 869891016470949 cool kids club</ircline> 297 <ircline pre="1" nick="root"> 2 457892181062459 uncool kids club</ircline> 298 <ircline nick="root">2 facebook chatrooms</ircline> 299 <ircline nick="dx">chat add facebook !1 #cool-kids-club</ircline> 300 </ircexample> 292 301 </bitlbee-command> 293 302 … … 298 307 <para> 299 308 While most <emphasis>chat</emphasis> subcommands are about named chatrooms, this command can be used to open an unnamed groupchat with one or more persons. This command is what <emphasis>/join #nickname</emphasis> used to do in older BitlBee versions. 309 </para> 310 311 <para> 312 Another way to do this is to join to a new, empty channel with <emphasis>/join #newchannel</emphasis> and invite the first person with <emphasis>/invite nickname</emphasis> 300 313 </para> 301 314 </description> -
doc/user-guide/genhelp.py
r7e4f439c r028ca92 65 65 66 66 # Actually normalize whitespace 67 tag.text = normalize(tag.text) 67 if 'pre' not in tag.attrib: 68 tag.text = normalize(tag.text) 68 69 tag.tail = normalize(tag.tail) 69 70
Note: See TracChangeset
for help on using the changeset viewer.