From: Christian Weiske Date: Tue, 29 Nov 2011 17:21:47 +0000 (+0100) Subject: add license to python files X-Git-Tag: v1.0.0~18 X-Git-Url: https://git.cweiske.de/enigma2-curlytx.git/commitdiff_plain/f66a0e8b58535735e74ec963322b10802e16e031 add license to python files --- diff --git a/src/AtomFeed.py b/src/AtomFeed.py index 7a9fe78..2a9f55d 100644 --- a/src/AtomFeed.py +++ b/src/AtomFeed.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # CurlyTx Atom feed parser # Copyright (C) 2011 Christian Weiske +# License: GPLv3 or later from twisted.web.client import getPage from xml.etree.cElementTree import fromstring diff --git a/src/CurlyTx.py b/src/CurlyTx.py index adc8704..01954ef 100644 --- a/src/CurlyTx.py +++ b/src/CurlyTx.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # CurlyTx main window # Copyright (C) 2011 Christian Weiske +# License: GPLv3 or later from . import _ diff --git a/src/CurlyTxSettings.py b/src/CurlyTxSettings.py index 377077b..6d841e9 100644 --- a/src/CurlyTxSettings.py +++ b/src/CurlyTxSettings.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # CurlyTx configuration window # Copyright (C) 2011 Christian Weiske +# License: GPLv3 or later from . import _ diff --git a/src/__init__.py b/src/__init__.py index ee83253..858e52e 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # CurlyTx translation initialization # Copyright (C) 2011 Christian Weiske +# License: GPLv3 or later from Components.Language import language from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_LANGUAGE diff --git a/src/config.py b/src/config.py index 496fb42..e32e27b 100644 --- a/src/config.py +++ b/src/config.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # CurlyTx configuration # Copyright (C) 2011 Christian Weiske +# License: GPLv3 or later from Components.config import config, ConfigYesNo, ConfigSelection, ConfigNumber, ConfigText, ConfigSubsection, ConfigSubList, ConfigInteger diff --git a/src/plugin.py b/src/plugin.py index 3c1794a..81669b0 100644 --- a/src/plugin.py +++ b/src/plugin.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # CurlyTx plugin registration and startup # Copyright (C) 2011 Christian Weiske +# License: GPLv3 or later from Plugins.Plugin import PluginDescriptor