annotate src/core/default_config.py @ 538:2c4016921403

core, frontends, bridgen plugins: fixed methods which were unproperly managing multi-profiles - added profile argument to askConfirmation, actionResult, actionResultExt, entityDataUpdated, confirmationAnswer, getProgress - core, frontends: fixed calls/signals according to new bridge API - user of proper profile namespace for progression indicators and dialogs - memory: getParam* now return bool when param type is bool - memory: added getStringParam* to return string instead of typed value - core, memory, storage, quick_frontend: getHistory now manage properly multi-profiles - plugins XEP-0047, XEP-0054, XEP-0065, XEP-0077, XEP-0096; multi-profiles proper handling
author Goffi <goffi@goffi.org>
date Sat, 10 Nov 2012 16:38:16 +0100
parents 2a072735e459
children ca13633d3b6b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
364
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/usr/bin/python
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
3
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
4 """
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
5 SAT: a jabber client
459
cf005701624b copyleft date update
Goffi <goffi@goffi.org>
parents: 364
diff changeset
6 Copyright (C) 2009, 2010, 2011, 2012 Jérôme Poisson (goffi@goffi.org)
364
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
7
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
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
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
10 the Free Software Foundation, either version 3 of the License, or
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
11 (at your option) any later version.
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
12
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
13 This program is distributed in the hope that it will be useful,
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
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
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
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
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
20 """
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
21
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
22 CONST = {
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
23 'client_name' : u'SàT (Salut à toi)',
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
24 'client_version' : u'0.2.0D', #Please add 'D' at the end for dev versions
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
25 'local_dir' : '~/.sat'
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
26 }
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
27
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
28 ### Defaut configuration values ###
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
29
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
30 default_config = {
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
31 'local_dir': '~/.sat',
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
32 'media_dir': '/usr/share/sat/media',
312ca6f9d84a core: configuration file
Goffi <goffi@goffi.org>
parents:
diff changeset
33 }