# HG changeset patch # User Thierry Florac # Date 1400075412 -7200 # Node ID 11ae6556a9accd9e56947a273a423b57a92448f5 # Parent 6ef4b364250aea7844b787beb724a27169450f44 Version 0.1.1 diff -r 6ef4b364250a -r 11ae6556a9ac .installed.cfg --- a/.installed.cfg Wed May 14 15:49:16 2014 +0200 +++ b/.installed.cfg Wed May 14 15:50:12 2014 +0200 @@ -84,3 +84,21 @@ location = /home/tflorac/Dropbox/src/ztfy.myams/parts/test recipe = zc.recipe.testrunner script = /home/tflorac/Dropbox/src/ztfy.myams/bin/test + +[buildout] +installed_develop_eggs = + +[buildout] +parts = i18n pyflakes pyflakesrun test package + +[buildout] +parts = pyflakes pyflakesrun test package i18n + +[buildout] +parts = pyflakesrun test package i18n pyflakes + +[buildout] +parts = test package i18n pyflakes pyflakesrun + +[buildout] +parts = package i18n pyflakes pyflakesrun test diff -r 6ef4b364250a -r 11ae6556a9ac buildout.cfg --- a/buildout.cfg Wed May 14 15:49:16 2014 +0200 +++ b/buildout.cfg Wed May 14 15:50:12 2014 +0200 @@ -47,5 +47,4 @@ eggs = ztfy.myams [test] [versions] -ztfy.myams = 0.1.0 -setuptools = 3.5.1 +ztfy.myams = 0.1.1 diff -r 6ef4b364250a -r 11ae6556a9ac docs/HISTORY.txt --- a/docs/HISTORY.txt Wed May 14 15:49:16 2014 +0200 +++ b/docs/HISTORY.txt Wed May 14 15:50:12 2014 +0200 @@ -1,6 +1,14 @@ HISTORY ======= +0.1.1 +----- + - small changes on exceptions views + - add view for JSON-RPC exceptions + - add minified Fanstatic resources + - improved AJAX errors management + - small CSS updates + 0.1.0 ----- - first release diff -r 6ef4b364250a -r 11ae6556a9ac setup.py --- a/setup.py Wed May 14 15:49:16 2014 +0200 +++ b/setup.py Wed May 14 15:50:12 2014 +0200 @@ -8,7 +8,7 @@ HISTORY = os.path.join(DOCS, 'HISTORY.txt') CONTRIBS = os.path.join(DOCS, 'CONTRIBUTORS.txt') -version = '0.1.0' +version = '0.1.1' long_description = open(README).read() + '\n\n' + \ open(CONTRIBS).read() + '\n\n' + \ open(HISTORY).read() @@ -47,6 +47,7 @@ 'z3c.formjs', 'z3c.formui', 'z3c.json', + 'z3c.jsonrpc', 'z3c.table', 'z3c.template', 'zope.annotation', diff -r 6ef4b364250a -r 11ae6556a9ac src/ztfy.myams.egg-info/PKG-INFO --- a/src/ztfy.myams.egg-info/PKG-INFO Wed May 14 15:49:16 2014 +0200 +++ b/src/ztfy.myams.egg-info/PKG-INFO Wed May 14 15:50:12 2014 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: ztfy.myams -Version: 0.1.0 +Version: 0.1.1 Summary: ZTFY new admin/application skin Home-page: http://hg.ztfy.org/ztfy.myams Author: Thierry Florac @@ -31,6 +31,14 @@ HISTORY ======= + 0.1.1 + ----- + - small changes on exceptions views + - add view for JSON-RPC exceptions + - add minified Fanstatic resources + - improved AJAX errors management + - small CSS updates + 0.1.0 ----- - first release diff -r 6ef4b364250a -r 11ae6556a9ac src/ztfy.myams.egg-info/requires.txt --- a/src/ztfy.myams.egg-info/requires.txt Wed May 14 15:49:16 2014 +0200 +++ b/src/ztfy.myams.egg-info/requires.txt Wed May 14 15:50:12 2014 +0200 @@ -4,6 +4,7 @@ z3c.formjs z3c.formui z3c.json +z3c.jsonrpc z3c.table z3c.template zope.annotation