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

« back to all changes in this revision

Viewing changes to src/common/fuzzyclock.py

  • Committer: Bazaar Package Importer
  • Author(s): Nafallo Bjälevik
  • Date: 2008-11-16 00:26:27 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20081116002627-4olie99o2rqc7001
Tags: 0.12~beta1-0ubuntu1
* New upstream beta release:
  + Security improvements: End-to-End encryption, SSL certificat verification
  + Ability to minimize groupchats in roster
  + Chat to groupchat transformation
  + Block/Unblock contacts directly from roster
  + Single window mode
  + PEP support (User activity, mood and tune)
  + Security improvements: Kerberos (GSSAPI) SASL Authentication mechanism
  + Improve GUI of some windows
  + Fix handling of invalid XML
  + Fix freeze on connection
* Dropped all changes, patches and backports.
* src/common/passwords.py:
  - Change keyring to 'login', which is what gets unlocked at login.
* debian/copyright:
  - Updated for the GPL-3 change and for the amount of upstream authors.
* debian/control:
  - Update Standards-Version and drop XS for Vcs-Bzr.
  - Add Homepage and use ${shlibs:Depends}.
* debian/rules:
  - Update to not ignore errors from make clean.
  - Update with dh_shlibdeps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
##      fuzzyclock.py
2
 
##
3
 
## Contributors for this file:
4
 
##
5
 
## - Yann Le Boulanger <asterix@lagaule.org>
6
 
## - Christoph Neuroth <delmonico@gmx.net>
7
 
##
8
 
## Copyright (C) 2006 Christoph Neuroth <delmonico@gmx.net>
9
 
##                    Yann Le Boulanger <asterix@lagaule.org>
10
 
##                    Dimitur Kirov <dkirov@gmail.com>
11
 
##                    Travis Shirk <travis@pobox.com>
12
 
##
13
 
## This program is free software; you can redistribute it and/or modify
 
1
# -*- coding:utf-8 -*-
 
2
## src/common/fuzzyclock.py
 
3
##
 
4
## Copyright (C) 2006 Christoph Neuroth <delmonico AT gmx.net>
 
5
## Copyright (C) 2006-2007 Yann Leboulanger <asterix AT lagaule.org>
 
6
## Copyright (C) 2007 Jean-Marie Traissard <jim AT lapin.org>
 
7
##
 
8
## This file is part of Gajim.
 
9
##
 
10
## Gajim is free software; you can redistribute it and/or modify
14
11
## it under the terms of the GNU General Public License as published
15
 
## by the Free Software Foundation; version 2 only.
 
12
## by the Free Software Foundation; version 3 only.
16
13
##
17
 
## This program is distributed in the hope that it will be useful,
 
14
## Gajim is distributed in the hope that it will be useful,
18
15
## but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
17
## GNU General Public License for more details.
21
18
##
 
19
## You should have received a copy of the GNU General Public License
 
20
## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
 
21
##
22
22
 
23
23
'''
24
24
Python class to show a "fuzzy clock".
134
134
                                newTimeStr = self.__fuzzyWeek[3]
135
135
 
136
136
                return newTimeStr
 
137
 
 
138
# vim: se ts=3: