diff frontends/quick_frontend/quick_app.py @ 132:a86607e5cf38

quick_app: self.occupants for group chat are now managed by quick_chat. self.options.profile now support unicode
author Goffi <goffi@goffi.org>
date Fri, 16 Jul 2010 20:12:54 +0800
parents 8d611eb9ae48
children 80661755ea8d
line wrap: on
line diff
--- a/frontends/quick_frontend/quick_app.py	Wed Jul 14 19:36:40 2010 +0800
+++ b/frontends/quick_frontend/quick_app.py	Fri Jul 16 20:12:54 2010 +0800
@@ -91,6 +91,8 @@
         parser.add_option("-p", "--profile", help=_("Select the profile to use"))
 
         (self.options, args) = parser.parse_args()
+        if self.options.profile:
+            self.options.profile = self.options.profile.decode('utf-8')
         return args
 
     def plug_profile(self, profile_key='@DEFAULT@'):
@@ -141,7 +143,7 @@
         for sub in waitingSub:
             self.subscribe(waitingSub[sub], sub, profile)
 
-        #Now we open the MUC window when we already are:
+        #Now we open the MUC window where we already are:
         for room_args in self.bridge.getRoomJoined(profile):
             self.roomJoined(*room_args, profile=profile)
 
@@ -164,7 +166,7 @@
             return
         debug(_("Connected"))
         self.setStatusOnline(True)
-        #self.bridge.joinMUC('conference.necton2.int', 'test', self.profiles[self.profile]['whoami'].node, self.profile) #gof:
+        self.bridge.joinMUC('conference.necton2.int', 'test', self.profiles[self.profile]['whoami'].node, self.profile) #gof:
         
 
     def disconnected(self, profile):