~ubuntu-branches/ubuntu/oneiric/emesene/oneiric-proposed

« back to all changes in this revision

Viewing changes to abstract/Session.py

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2011-03-03 14:49:13 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110303144913-0adl9cmw2s35lvzo
Tags: 2.0~git20110303-0ubuntu1
* New upstream git revision (LP: #728469).
* Remove debian/watch, debian/emesene.xpm, debian/install and
  debian/README.source files.
* Remove 21_svn2451_fix_avatar and 20_dont_build_own_libmimic patches.
* debian/control: modify python to python (>= 2.5) in Build-Depends field.
* debian/control: remove python-libmimic from Recommends field.
* debian/control: modify python-gtk2 (>= 2.10) to python-gtk2 (>= 2.12) in
  Depends field.
* debian/control: add python-appindicator and python-xmpp to Recommends
  field.
* debian/control: add python-papyon (>= 0.5.4) and python-webkit to Depends
  field.
* debian/control: update Description field.
* debian/control: add python-setuptools to Build-Depends field.
* debian/control: move python-dbus and python-notify to Depends field.
* Update debian/copyright file.
* Update debian/links file.
* debian/menu: update description field.
* Bump Standards-Version to 3.9.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
 
3
 
#   This file is part of emesene.
4
 
#
5
 
#    Emesene is free software; you can redistribute it and/or modify
6
 
#    it under the terms of the GNU General Public License as published by
7
 
#    the Free Software Foundation; either version 2 of the License, or
8
 
#    (at your option) any later version.
9
 
#
10
 
#    emesene is distributed in the hope that it will be useful,
11
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
#    GNU General Public License for more details.
14
 
#
15
 
#    You should have received a copy of the GNU General Public License
16
 
#    along with emesene; if not, write to the Free Software
17
 
#    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
'''a module that define a class to contain all the information regarding a 
19
 
session
20
 
'''
21
 
 
22
 
class Session(Object.Object):
23
 
    '''a class that contain information and methods to handle a session'''
24
 
 
25
 
    def __init__(self, account, password, host, port):
26
 
        '''class constructor'''
27
 
        self.account = account
28
 
        self.password = password
29
 
        self.host = host
30
 
        self.port = port
31
 
 
32
 
        # set this on login
33
 
        self.contacts = None
34
 
        self.groups = None
35
 
 
36
 
        self.signal_add('login-successful', 0)
37
 
        # message
38
 
        self.signal_add('login-error', 1)
39
 
        # message
40
 
        self.signal_add('connection-error', 1)
41
 
 
42
 
    def login(self, account, password, stat):
43
 
        '''do login and set status'''
44
 
        raise NotImplementedError("This method isn't not implemented")
45
 
 
46
 
    def cancel_login(self):
47
 
        '''cancel the login process if posible on the protocol implementation
48
 
        '''
49
 
        raise NotImplementedError("This method isn't not implemented")
50
 
 
51
 
    def logout(self):
52
 
        '''do logout'''
53
 
        raise NotImplementedError("This method isn't not implemented")
54