gajim

view src/common/defs.py @ 10773:1076fc9700f5

merge elghinn's branch (roster versioning) to trunk. Fixes #4661, #3190
author Yann Leboulanger <asterix@lagaule.org>
date Fri, 10 Jul 2009 15:05:01 +0200
parents 08f8027d91bc 4e609a89ac14
children b2d16bc55260
line source
1 # -*- coding:utf-8 -*-
2 ## src/common/defs.py
3 ##
4 ## Copyright (C) 2006 Nikos Kouremenos <kourem AT gmail.com>
5 ## Copyright (C) 2006-2008 Yann Leboulanger <asterix AT lagaule.org>
6 ## Jean-Marie Traissard <jim AT lapin.org>
7 ## Copyright (C) 2007 Brendan Taylor <whateley AT gmail.com>
8 ## Tomasz Melcer <liori AT exroot.org>
9 ## Copyright (C) 2008 Jonathan Schleifer <js-gajim AT webkeks.org>
10 ##
11 ## This file is part of Gajim.
12 ##
13 ## Gajim is free software; you can redistribute it and/or modify
14 ## it under the terms of the GNU General Public License as published
15 ## by the Free Software Foundation; version 3 only.
16 ##
17 ## Gajim is distributed in the hope that it will be useful,
18 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ## GNU General Public License for more details.
21 ##
22 ## You should have received a copy of the GNU General Public License
23 ## along with Gajim. If not, see <http://www.gnu.org/licenses/>.
24 ##
26 docdir = '../'
27 datadir = '../'
28 localedir = '../po'
30 version = '0.12.1.5-dev'
32 import sys, os.path
33 for base in ('.', 'common'):
34 sys.path.append(os.path.join(base, '.libs'))
36 # vim: se ts=3: