Create stgit/basedir.py for determining the .git directory
[stgit] / stgit / config.py
CommitLineData
41a6d859
CM
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
170f576b 23from stgit import basedir
41a6d859 24
41a6d859
CM
25
26config = ConfigParser.RawConfigParser()
27
47e93ba9
CM
28# Set the defaults
29config.add_section('stgit')
30config.set('stgit', 'autoresolved', 'no')
31config.set('stgit', 'smtpserver', 'localhost:25')
1e78b006 32config.set('stgit', 'smtpdelay', '2')
c19dc3db 33config.set('stgit', 'merger',
47e93ba9
CM
34 'diff3 -L local -L older -L remote -m -E ' \
35 '"%(branch1)s" "%(ancestor)s" "%(branch2)s" > "%(output)s"')
c19dc3db 36config.set('stgit', 'keeporig', 'yes')
47e93ba9
CM
37
38# Read the configuration files (if any) and override the default settings
39config.read('/etc/stgitrc')
41a6d859 40config.read(os.path.expanduser('~/.stgitrc'))
170f576b 41config.read(os.path.join(basedir.get(), 'stgitrc'))
c19dc3db
CM
42
43# [gitmergeonefile] section is deprecated. In case it exists copy the
44# options/values to the [stgit] one
45if config.has_section('gitmergeonefile'):
46 for option, value in config.items('gitmergeonefile'):
47 config.set('stgit', option, value)