diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2011-11-28 18:16:27 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2011-11-28 18:16:27 +0100 |
| commit | 3a6efba0d71972e2fe14a40cd405ccb0a6a6c078 (patch) | |
| tree | 446aec35bfa80456db8c8fe7733d810e59e36f18 /src | |
| parent | a6f66bf40cd3b12d2b29940a72426d84626163c7 (diff) | |
| download | enigma2-curlytx-3a6efba0d71972e2fe14a40cd405ccb0a6a6c078.tar.gz enigma2-curlytx-3a6efba0d71972e2fe14a40cd405ccb0a6a6c078.zip | |
add encoding and copyright header
Diffstat (limited to 'src')
| -rw-r--r-- | src/AtomFeed.py | 4 | ||||
| -rw-r--r-- | src/CurlyTx.py | 4 | ||||
| -rw-r--r-- | src/CurlyTxSettings.py | 4 | ||||
| -rw-r--r-- | src/__init__.py | 3 | ||||
| -rw-r--r-- | src/config.py | 4 | ||||
| -rw-r--r-- | src/plugin.py | 4 |
6 files changed, 23 insertions, 0 deletions
diff --git a/src/AtomFeed.py b/src/AtomFeed.py index f89c22f..e24fee1 100644 --- a/src/AtomFeed.py +++ b/src/AtomFeed.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# CurlyTx Atom feed parser +# Copyright (C) 2011 Christian Weiske <cweiske@cweiske.de> + from twisted.web.client import getPage from xml.etree.cElementTree import fromstring diff --git a/src/CurlyTx.py b/src/CurlyTx.py index fd42921..adc8704 100644 --- a/src/CurlyTx.py +++ b/src/CurlyTx.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# CurlyTx main window +# Copyright (C) 2011 Christian Weiske <cweiske@cweiske.de> + from . import _ from Screens.Screen import Screen diff --git a/src/CurlyTxSettings.py b/src/CurlyTxSettings.py index ec291e9..377077b 100644 --- a/src/CurlyTxSettings.py +++ b/src/CurlyTxSettings.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# CurlyTx configuration window +# Copyright (C) 2011 Christian Weiske <cweiske@cweiske.de> + from . import _ from Screens.Screen import Screen diff --git a/src/__init__.py b/src/__init__.py index a1ccad0..3540b5a 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- +# CurlyTx translation initialization +# Copyright (C) 2011 Christian Weiske <cweiske@cweiske.de> + from Components.Language import language from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_LANGUAGE from os import environ as os_environ diff --git a/src/config.py b/src/config.py index 4314f08..7f4d681 100644 --- a/src/config.py +++ b/src/config.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# CurlyTx configuration +# Copyright (C) 2011 Christian Weiske <cweiske@cweiske.de> + from Components.config import config, ConfigYesNo, ConfigSelection, ConfigNumber, ConfigText, ConfigSubsection, ConfigSubList, ConfigInteger def createPage(): diff --git a/src/plugin.py b/src/plugin.py index 6743991..8d52cdb 100644 --- a/src/plugin.py +++ b/src/plugin.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +# CurlyTx plugin registration and startup +# Copyright (C) 2011 Christian Weiske <cweiske@cweiske.de> + from Plugins.Plugin import PluginDescriptor import CurlyTx |
