aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-05-01 18:42:14 +0200
committercedricbonhomme <devnull@localhost>2012-05-01 18:42:14 +0200
commitf8f50ae6ff7a5d358dfe7375222245967d62fbcd (patch)
tree457bad6ba74d8b038696d185560084a384d60282
parentImproved change_feed_url() function. (diff)
downloadnewspipe-f8f50ae6ff7a5d358dfe7375222245967d62fbcd.tar.gz
newspipe-f8f50ae6ff7a5d358dfe7375222245967d62fbcd.tar.bz2
newspipe-f8f50ae6ff7a5d358dfe7375222245967d62fbcd.zip
Version 3.4 of pyAggr3g470r. Export functions working with MongoDB. Minor bugfixes and improvements.
-rw-r--r--source/export.py3
-rw-r--r--source/mongodb.py4
-rwxr-xr-xsource/pyAggr3g470r.py4
-rwxr-xr-xsource/utils.py2
4 files changed, 7 insertions, 6 deletions
diff --git a/source/export.py b/source/export.py
index 62e244b9..57642ec8 100644
--- a/source/export.py
+++ b/source/export.py
@@ -20,8 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 0.1 $"
+__version__ = "$Revision: 0.2 $"
__date__ = "$Date: 2011/10/24 $"
+__revision__ = "$Date: 2012/05/01 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
diff --git a/source/mongodb.py b/source/mongodb.py
index 7bb5c841..4d8574cd 100644
--- a/source/mongodb.py
+++ b/source/mongodb.py
@@ -2,9 +2,9 @@
# -*- coding: utf-8 -*-
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 0.2 $"
+__version__ = "$Revision: 0.3 $"
__date__ = "$Date: 2012/03/03 $"
-__revision__ = "$Date: 2012/04/22 $"
+__revision__ = "$Date: 2012/05/01 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 48103319..aeaf4822 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -20,9 +20,9 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>
__author__ = "Cedric Bonhomme"
-__version__ = "$Revision: 3.3 $"
+__version__ = "$Revision: 3.4 $"
__date__ = "$Date: 2010/01/29 $"
-__revision__ = "$Date: 2012/04/16 $"
+__revision__ = "$Date: 2012/05/01 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
diff --git a/source/utils.py b/source/utils.py
index a4506d07..7962c4df 100755
--- a/source/utils.py
+++ b/source/utils.py
@@ -22,7 +22,7 @@
__author__ = "Cedric Bonhomme"
__version__ = "$Revision: 1.2 $"
__date__ = "$Date: 2010/12/07 $"
-__revision__ = "$Date: 2011/04/15 $"
+__revision__ = "$Date: 2012/05/01 $"
__copyright__ = "Copyright (c) Cedric Bonhomme"
__license__ = "GPLv3"
bgstack15