Optimize stg goto in the pop case.
[stgit] / stgit / templates.py
CommitLineData
1f3bb017
CM
1"""Template files look-up
2"""
3
4__copyright__ = """
5Copyright (C) 2006, 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 sys, os
22
23from stgit import basedir
24
25
26def get_template(tfile):
27 """Return the string in the template file passed as argument or
28 None if the file wasn't found.
29 """
30 tmpl_list = [ os.path.join(basedir.get(), tfile),
31 os.path.join(os.path.expanduser('~'), '.stgit', 'templates',
32 tfile),
33 os.path.join(sys.prefix, 'share', 'stgit', 'templates',
34 tfile) ]
35
36 tmpl = None
37 for t in tmpl_list:
38 if os.path.isfile(t):
39 tmpl = file(t).read()
40 break
41
42 return tmpl