1 """Template files look-up
5 Copyright (C) 2006, Catalin Marinas <catalin.marinas@gmail.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 from stgit
import basedir
26 def get_template(tfile
):
27 """Return the string in the template file passed as argument or
28 None if the file wasn't found.
30 tmpl_list
= [ os
.path
.join(basedir
.get(), tfile
),
31 os
.path
.join(os
.path
.expanduser('~'), '.stgit', 'templates',
33 os
.path
.join(sys
.prefix
, 'share', 'stgit', 'templates',