~jtaylor/ubuntu/oneiric/gajim/multiple-CVE

« back to all changes in this revision

Viewing changes to src/common/xmpp/auth.py

  • Committer: Bazaar Package Importer
  • Author(s): Nafallo Bjälevik
  • Date: 2009-06-12 13:49:19 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090612134919-basez34an73qkkb1
Tags: 0.12.2-0ubuntu1
* New upstream bugfix release:
  + Better keepalive / ping behaviour
  + Fix custom port handling
  + Improve error messages handling
  + Totem support for played music
  + Fix SSL with some servers
  + Handle XFCE notification-daemon
  + Restore old behaviour of click on systray: left click to open events
  + Network manager 0.7 support
  + Improve Kerberos support
  + Many bugfixes here and there
  + Add -c option to history_manager
* debian/patches/00list:
  - Disable de-update.patch, since it doesn't apply
  - Drop svn-11058.patch since it is included in the new release
* debian/patches/svn-11058.patch:
  - Drop patch since it is included in the new release
* debian/control:
  - Bump required version for intltool as per upstream's requirements

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
        PlugIn.__init__(self)
36
36
        self.DBG_LINE='gen_auth'
37
37
        self.user=user
38
 
        self.password=password
 
38
        self.password=password or ''
39
39
        self.resource=resource
40
40
 
41
41
    def plugin(self,owner):
99
99
    def __init__(self,username,password):
100
100
        PlugIn.__init__(self)
101
101
        self.username=username
102
 
        self.password=password
 
102
        self.password=password or ''
103
103
 
104
104
    def plugin(self,owner):
105
105
        if 'version' not in self._owner.Dispatcher.Stream._document_attrs: self.startsasl='not-supported'
305
305
            self.DEBUG('Binding failed: timeout expired.','error')
306
306
            return ''
307
307
 
308
 
# vim: se ts=3:
 
 
b'\\ No newline at end of file'
 
308
# vim: se ts=3: