diff options
author | Dan McGee <dan@archlinux.org> | 2012-03-26 10:27:01 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-03-26 10:27:01 -0500 |
commit | 8edc3c4b9dddecac436a741aa54b8ada52f87dae (patch) | |
tree | cd1f9d1aa08880f2f0e25df12fcf62d045199fab /mirrors | |
parent | fd1c992472ea259111a2f4930b73a805c07ee068 (diff) |
Bump signoffs and mirror status JSON API versions
Due to datetime formatting changes in Django 1.4, we know follow the
ECMA specification more closely and use 'yyyy-mm-ddThh:mm_ssZ' format.
As this could break existing users of the JSON data, bump the version.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors')
-rw-r--r-- | mirrors/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrors/views.py b/mirrors/views.py index 2ef8654d..e93097a3 100644 --- a/mirrors/views.py +++ b/mirrors/views.py @@ -169,7 +169,7 @@ class MirrorStatusJSONEncoder(DjangoJSONEncoder): def status_json(request): status_info = get_mirror_statuses() data = status_info.copy() - data['version'] = 1 + data['version'] = 2 to_json = simplejson.dumps(data, ensure_ascii=False, cls=MirrorStatusJSONEncoder) response = HttpResponse(to_json, mimetype='application/json') |