Mercurial > libervia-backend
annotate src/core/default_config.py @ 601:a4f6f78f0620
jp, core: jp's clean_ustr moved to a new general utils module
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 22 Feb 2013 00:11:47 +0100 |
parents | cc09cc8c78fc |
children | 84a6e83157c2 |
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 = { | |
589
d1b4805124a1
Fix pep8 support in src/core.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
23 'client_name': u'SàT (Salut à toi)', |
597
cc09cc8c78fc
core: version update to development version
Goffi <goffi@goffi.org>
parents:
589
diff
changeset
|
24 'client_version': u'0.3.0D', # Please add 'D' at the end for dev versions |
589
d1b4805124a1
Fix pep8 support in src/core.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
581
diff
changeset
|
25 'local_dir': '~/.sat' |
364 | 26 } |
27 | |
28 ### Defaut configuration values ### | |
29 | |
30 default_config = { | |
31 'local_dir': '~/.sat', | |
32 'media_dir': '/usr/share/sat/media', | |
33 } |