Mercurial > libervia-backend
annotate src/core/default_config.py @ 581:78ca32cc0b51
CHANGELOG + version updates (yes, that's a release \o/)
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 09 Jan 2013 22:55:59 +0100 |
parents | ca13633d3b6b |
children | d1b4805124a1 |
rev | line source |
---|---|
364 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 SAT: a jabber client | |
572 | 6 Copyright (C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson (goffi@goffi.org) |
364 | 7 |
8 This program is free software: you can redistribute it and/or modify | |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
459
diff
changeset
|
9 it under the terms of the GNU Affero General Public License as published by |
364 | 10 the Free Software Foundation, either version 3 of the License, or |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
459
diff
changeset
|
16 GNU Affero General Public License for more details. |
364 | 17 |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
459
diff
changeset
|
18 You should have received a copy of the GNU Affero General Public License |
364 | 19 along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 """ | |
21 | |
22 CONST = { | |
23 'client_name' : u'SàT (Salut à toi)', | |
581
78ca32cc0b51
CHANGELOG + version updates (yes, that's a release \o/)
Goffi <goffi@goffi.org>
parents:
572
diff
changeset
|
24 'client_version' : u'0.3.0', #Please add 'D' at the end for dev versions |
364 | 25 'local_dir' : '~/.sat' |
26 } | |
27 | |
28 ### Defaut configuration values ### | |
29 | |
30 default_config = { | |
31 'local_dir': '~/.sat', | |
32 'media_dir': '/usr/share/sat/media', | |
33 } |