add encoding and copyright header
authorChristian Weiske <cweiske@cweiske.de>
Mon, 28 Nov 2011 17:16:27 +0000 (18:16 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Mon, 28 Nov 2011 17:16:27 +0000 (18:16 +0100)
src/AtomFeed.py
src/CurlyTx.py
src/CurlyTxSettings.py
src/__init__.py
src/config.py
src/plugin.py

index f89c22fd64c6d75e462cd08d954e171f85ac7758..e24fee1b8f9d201e616e242f9c9bb1f298f16fba 100644 (file)
@@ -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
 
index fd4292198e882159e2e28c5dde8ec51b0b0938da..adc8704c25d42f35c65ff0c3d93f1a39bc421604 100644 (file)
@@ -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
index ec291e92f4e0640ab4511da58b13146483c66cee..377077bec83cb69c6f0868abb81437a1e04af95a 100644 (file)
@@ -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
index a1ccad05a06ea92b9e1cf590fddebab35be0b0e2..3540b5af0bb8ce2d33f761da0273b0d8d1a9735c 100644 (file)
@@ -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
index 4314f08ff151b32b770b0d67dff50c9c1e6d7db7..7f4d6810d652b60308e12320a4dcb5f2634cb1c0 100644 (file)
@@ -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():
index 6743991122ab97bd81c0ab5767b238f4fb45fe73..8d52cdb7bc0482ec6b3d7ca682ff3fa6c67b6ae8 100644 (file)
@@ -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