aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-09-29 18:11:48 +0200
committercedricbonhomme <devnull@localhost>2010-09-29 18:11:48 +0200
commit12c7fc59117e6c8a1cf504e015515d34e924793d (patch)
treed3521b832e7f1a346221edea782be2a8357ecce3
parentError in the README file (diff)
downloadnewspipe-12c7fc59117e6c8a1cf504e015515d34e924793d.tar.gz
newspipe-12c7fc59117e6c8a1cf504e015515d34e924793d.tar.bz2
newspipe-12c7fc59117e6c8a1cf504e015515d34e924793d.zip
Attached the GPL v3 notice to the start of each source file.
-rwxr-xr-xfeedgetter.py18
-rwxr-xr-xpyAggr3g470r.py18
-rwxr-xr-xutils.py18
3 files changed, 54 insertions, 0 deletions
diff --git a/feedgetter.py b/feedgetter.py
index 56e61662..8c3fa4a6 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -1,6 +1,24 @@
#! /usr/local/bin/python
#-*- coding: utf-8 -*-
+# pyAggr3g470r - A Web based news aggregator.
+# Copyright (C) 2010 Cédric Bonhomme - http://cedric.bonhomme.free.fr/
+#
+# For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>
+
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 1.0 $"
__date__ = "$Date: 2010/09/02 $"
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 7812b4b9..680acea2 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -1,6 +1,24 @@
#! /usr/local/bin/python
#-*- coding: utf-8 -*-
+# pyAggr3g470r - A Web based news aggregator.
+# Copyright (C) 2010 Cédric Bonhomme - http://cedric.bonhomme.free.fr/
+#
+# For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>
+
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 2.0 $"
__date__ = "$Date: 2010/09/03 $"
diff --git a/utils.py b/utils.py
index 780ebf91..1ff2a57e 100755
--- a/utils.py
+++ b/utils.py
@@ -1,6 +1,24 @@
#! /usr/local/bin/python
#-*- coding: utf-8 -*-
+# pyAggr3g470r - A Web based news aggregator.
+# Copyright (C) 2010 Cédric Bonhomme - http://cedric.bonhomme.free.fr/
+#
+# For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>
+
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 1.0 $"
__date__ = "$Date: 2010/08/25 $"
bgstack15