Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Gaczkowski <doomhammerng@gmail.com>2007-03-26 02:47:04 +0400
committerPiotr Gaczkowski <doomhammerng@gmail.com>2007-03-26 02:47:04 +0400
commite0c9b6309f6374addef58c5e67f665ef8d9e9df3 (patch)
tree9b7c26e6245e38fa332c88c5356b02d25373560c
parentd7ea3283b95936341c9ff1d86627e1c7cbcf3feb (diff)
Third buggy commit
-rw-r--r--src/common/contacts.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/contacts.py b/src/common/contacts.py
index 95d3bb17e..e61b6b753 100644
--- a/src/common/contacts.py
+++ b/src/common/contacts.py
@@ -18,7 +18,7 @@ import common.gajim
class Contact:
'''Information concerning each contact'''
- def __init__(self, jid='', name='', groups=[], show='', status='', sub='',
+ def __init__(self, jid='', name='', groups=[], show='', status='', mood='', sub='',
ask='', resource='', priority=0, keyID='', our_chatstate=None,
chatstate=None, last_status_time=None, msg_id = None, composing_jep = None):
self.jid = jid
@@ -26,6 +26,7 @@ class Contact:
self.groups = groups
self.show = show
self.status = status
+ self.mood = mood
self.sub = sub
self.ask = ask
self.resource = resource
@@ -139,16 +140,17 @@ class Contacts:
del self._gc_contacts[account]
del self._metacontacts_tags[account]
- def create_contact(self, jid='', name='', groups=[], show='', status='',
+ def create_contact(self, jid='', name='', groups=[], show='', status='', mood='',
sub='', ask='', resource='', priority=0, keyID='', our_chatstate=None,
chatstate=None, last_status_time=None, composing_jep=None):
- return Contact(jid, name, groups, show, status, sub, ask, resource,
+ return Contact(jid, name, groups, show, status, mood, sub, ask, resource,
priority, keyID, our_chatstate, chatstate, last_status_time,
composing_jep)
def copy_contact(self, contact):
return self.create_contact(jid = contact.jid, name = contact.name,
- groups = contact.groups, show = contact.show, status = contact.status,
+ groups = contact.groups, show = contact.show, status =
+ contact.status, mood = contact.mood,
sub = contact.sub, ask = contact.ask, resource = contact.resource,
priority = contact.priority, keyID = contact.keyID,
our_chatstate = contact.our_chatstate, chatstate = contact.chatstate,