Changes between Version 5 and Version 6 of DjangoBot


Ignore:
Timestamp:
Feb 15, 2008, 5:20:02 PM (16 years ago)
Author:
Brian Rosner
Comment:

forgot to add the help, ticket and changeset commands ;)

Legend:

Unmodified
Added
Removed
Modified
  • DjangoBot

    v5 v6  
    66== Features ==
    77
     8=== The ```help``` command ===
     9
     10There is now a ```help``` command that gives you help. You can pass in the name of other commands to get their help.
     11
     12{{{
     13/msg DjangoBot help who
     14<DjangoBot> who <nickname> [<nickname> ...]
     15<DjangoBot> Sends back the real name, location and URL for the nickname if the person is registered on djangopeople.net.
     16}}}
     17
    818=== Trac Ticket/Changeset Linking ===
    919
    1020It is very common for someone to reference a ticket or changeset in the IRC room. The !DjangoBot will handle the linking for you if you follow the basic syntax it requires. To reference a ticket simply use the Trac syntax '''#13'''. The same applies to changesets, r530. The !DjangoBot does not work with the square bracket notation due to IRC nickname collisions for those who use square brackets around their numbered name.
     21
     22There are two commands ```ticket``` and ```changeset``` that when sent to the bot in a private message will result in returning a link. Here is an example:
     23
     24{{{
     25/msg DjangoBot ticket 13 2070
     26<DjangoBot> http://code.djangoproject.com/ticket/13
     27<DjangoBot> http://code.djangoproject.com/ticket/2070
     28
     29/msg DjangoBot changeset 530
     30<DjangoBot> http://code.djangoproject.com/changeset/530
     31}}}
    1132
    1233=== !DjangoPeople Integration ===
Back to Top