diff options
author | cedricbonhomme <devnull@localhost> | 2012-07-22 08:33:54 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-07-22 08:33:54 +0200 |
commit | 898fa07ded12cbc1342cbfabf9862fa40b8a3485 (patch) | |
tree | 0a1afc9ccbbcc841a59ceed6c2fe1a8edd285892 /source | |
parent | Only use the URL of article for the QRCode. (diff) | |
download | newspipe-898fa07ded12cbc1342cbfabf9862fa40b8a3485.tar.gz newspipe-898fa07ded12cbc1342cbfabf9862fa40b8a3485.tar.bz2 newspipe-898fa07ded12cbc1342cbfabf9862fa40b8a3485.zip |
Updated header comments.
Diffstat (limited to 'source')
-rw-r--r-- | source/conf.py | 2 | ||||
-rw-r--r-- | source/export.py | 4 | ||||
-rw-r--r-- | source/mongodb.py | 18 | ||||
-rwxr-xr-x | source/pyAggr3g470r | 2 | ||||
-rwxr-xr-x | source/utils.py | 4 |
5 files changed, 24 insertions, 6 deletions
diff --git a/source/conf.py b/source/conf.py index e8e605e5..b45b1d51 100644 --- a/source/conf.py +++ b/source/conf.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # pyAggr3g470r - A Web based news aggregator. -# Copyright (C) 2010 Cédric Bonhomme - http://cedricbonhomme.org/ +# Copyright (C) 2010-2012 Cédric Bonhomme - http://cedricbonhomme.org/ # # For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/ # diff --git a/source/export.py b/source/export.py index 57642ec8..8380682a 100644 --- a/source/export.py +++ b/source/export.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # pyAggr3g470r - A Web based news aggregator. -# Copyright (C) 2010 Cédric Bonhomme - http://cedricbonhomme.org/ +# Copyright (C) 2010-2012 Cédric Bonhomme - http://cedricbonhomme.org/ # # For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/ # @@ -186,4 +186,4 @@ def export_pdf(feeds): try: pdf = pisa.CreatePDF(StringIO.StringIO(content), file(name, "wb")) except: - pass
\ No newline at end of file + pass diff --git a/source/mongodb.py b/source/mongodb.py index 9915de75..8d1a4848 100644 --- a/source/mongodb.py +++ b/source/mongodb.py @@ -1,6 +1,24 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +# pyAggr3g470r - A Web based news aggregator. +# Copyright (C) 2010-2012 Cédric Bonhomme - http://cedricbonhomme.org/ +# +# 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: 0.3 $" __date__ = "$Date: 2012/03/03 $" diff --git a/source/pyAggr3g470r b/source/pyAggr3g470r index 81f5cea0..2b367bb8 100755 --- a/source/pyAggr3g470r +++ b/source/pyAggr3g470r @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # pyAggr3g470r - A Web based news aggregator. -# Copyright (C) 2010 Cédric Bonhomme - http://cedricbonhomme.org/ +# Copyright (C) 2010-2012 Cédric Bonhomme - http://cedricbonhomme.org/ # # For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/ # diff --git a/source/utils.py b/source/utils.py index 7962c4df..7d1eaecc 100755 --- a/source/utils.py +++ b/source/utils.py @@ -2,7 +2,7 @@ #-*- coding: utf-8 -*- # pyAggr3g470r - A Web based news aggregator. -# Copyright (C) 2010 Cédric Bonhomme - http://cedricbonhomme.org/ +# Copyright (C) 2010-2012 Cédric Bonhomme - http://cedricbonhomme.org/ # # For more information : http://bitbucket.org/cedricbonhomme/pyaggr3g470r/ # @@ -281,4 +281,4 @@ def search_feed(url): if url not in feed_link['href']: return urlparse.urljoin(url, feed_link['href']) return feed_link['href'] - return None
\ No newline at end of file + return None |