aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.rst5
-rw-r--r--pyaggr3g470r/rest.py5
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 <http://www.gnu.org/licenses/>.
__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:
bgstack15