Update copyright info from 2005-2008 to 2005-2009
[gpodder.git] / src / gpodder / __init__.py
blob62a8d15bd487065e978c9c2dac7443332b34c7a6
1 # -*- coding: utf-8 -*-
3 # gPodder - A media aggregator and podcast client
4 # Copyright (c) 2005-2009 Thomas Perl and the gPodder Team
6 # gPodder is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # gPodder 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, see <http://www.gnu.org/licenses/>.
20 # The User-Agent string for downloads
21 user_agent = 'gPodder'
23 # Interface type enums
24 (CLI, GUI, MAEMO) = range(3)
26 # Are we running in GUI, Maemo or console mode?
27 interface = CLI