This commit is contained in:
Florent Le Coz 2011-01-12 21:08:17 +01:00
parent 89ed926096
commit 7a9b9edee8
2 changed files with 4 additions and 0 deletions

View file

@ -4,9 +4,11 @@ http://codingteam.net/project/poezio/roadmap
* Poezio 0.7 - dev
Codename ”Koshie & Mathieui”
- Library changed from xmpppy to SleekXMPP
- Introduce the roster
- One to one conversations
- Roster search
- Add/remove/accept/deny contact in the roster
- Resizable mini-buffer displaying various informations
- All colors can be changed with a theme file
- /say and // commands

View file

@ -248,6 +248,8 @@ class ChatTab(Tab):
def on_enter(self):
txt = self.input.key_enter()
if not self.execute_command(txt):
if txt.startswith('//'):
txt = txt[1:]
self.command_say(txt)
def command_say(self, line):