Regression test for "stg import"
[stgit] / stgit / config.py
... / ...
CommitLineData
1"""Handles the Stacked GIT configuration files
2"""
3
4__copyright__ = """
5Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License version 2 as
9published by the Free Software Foundation.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19"""
20
21import os, ConfigParser
22
23from stgit import basedir
24
25
26config = ConfigParser.RawConfigParser()
27
28# Set the defaults
29config.add_section('stgit')
30config.set('stgit', 'autoresolved', 'no')
31config.set('stgit', 'smtpserver', 'localhost:25')
32config.set('stgit', 'smtpdelay', '5')
33config.set('stgit', 'pullcmd', 'git-pull')
34config.set('stgit', 'merger',
35 'diff3 -L current -L ancestor -L patched -m -E ' \
36 '"%(branch1)s" "%(ancestor)s" "%(branch2)s" > "%(output)s"')
37config.set('stgit', 'keeporig', 'yes')
38config.set('stgit', 'keepoptimized', 'no')
39config.set('stgit', 'extensions', '.ancestor .current .patched')
40
41# Read the configuration files (if any) and override the default settings
42config.read('/etc/stgitrc')
43config.read(os.path.expanduser('~/.stgitrc'))
44config.read(os.path.join(basedir.get(), 'stgitrc'))
45
46# Set the PAGER environment to the config value (if any)
47if config.has_option('stgit', 'pager'):
48 os.environ['PAGER'] = config.get('stgit', 'pager')
49
50# [gitmergeonefile] section is deprecated. In case it exists copy the
51# options/values to the [stgit] one
52if config.has_section('gitmergeonefile'):
53 for option, value in config.items('gitmergeonefile'):
54 config.set('stgit', option, value)
55
56
57# cached extensions
58__extensions = None
59
60def file_extensions():
61 """Returns a dictionary with the conflict file extensions
62 """
63 global __extensions
64
65 if not __extensions:
66 cfg_ext = config.get('stgit', 'extensions').split()
67 if len(cfg_ext) != 3:
68 raise CmdException, '"extensions" configuration error'
69
70 __extensions = { 'ancestor': cfg_ext[0],
71 'current': cfg_ext[1],
72 'patched': cfg_ext[2] }
73
74 return __extensions