From e75e0f7ef86f20db6b979a962445f8225a3c3cd2 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 5 Jul 2014 08:01:00 +0200 Subject: Updated NEWS.rst for the new release. --- NEWS.rst | 5 +++++ pyaggr3g470r/rest.py | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 17d102cc..74b22d80 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,5 +1,10 @@ pyAggr3g470r project news +5.6 2014-07-05 + pyAggr3g470r has now a RESTful JSON API which enables to manage Feed and + Article objects. The API is documented in the README file. + The main page is using a subset of this API with jQuery HTTP requests. + 5.5: 14 Jun 2014 13:09 This release introduces a redesigned homepage which loads much faster and is easier to read. pyAggr3g470r can now be run by Apache. diff --git a/pyaggr3g470r/rest.py b/pyaggr3g470r/rest.py index d9188c78..14870a52 100644 --- a/pyaggr3g470r/rest.py +++ b/pyaggr3g470r/rest.py @@ -20,9 +20,9 @@ # along with this program. If not, see . __author__ = "Cedric Bonhomme" -__version__ = "$Revision: 0.1 $" +__version__ = "$Revision: 0.2 $" __date__ = "$Date: 2014/06/18 $" -__revision__ = "$Date: 2014/06/18 $" +__revision__ = "$Date: 2014/07/05 $" __copyright__ = "Copyright (c) Cedric Bonhomme" __license__ = "AGPLv3" @@ -31,7 +31,6 @@ import dateutil.parser from functools import wraps from flask import g, Response, request, session, jsonify from flask.ext.restful import Resource, reqparse -#from flask.ext.restful.inputs import boolean import conf if not conf.ON_HEROKU: -- cgit