# HG changeset patch # User Thierry Florac # Date 1334183613 -7200 # Node ID 0639af2d572db5b42dbd1c935c2eff2acf3e655e # Parent 953e07953290f414ac7be0e43c0ffecfdddcc233 Version 0.3.10 diff -r 953e07953290 -r 0639af2d572d setup.py --- a/setup.py Thu Apr 12 00:32:00 2012 +0200 +++ b/setup.py Thu Apr 12 00:33:33 2012 +0200 @@ -65,27 +65,34 @@ 'httplib2', 'hurry.query', 'pytz', + 'transaction', 'z3c.form', 'zc.set', + 'ZODB3', 'zope.annotation', 'zope.app.authentication', 'zope.app.file', + 'zope.authentication', 'zope.catalog', 'zope.component', 'zope.container', 'zope.datetime', + 'zope.deprecation', 'zope.i18n', + 'zope.i18nmessageid', 'zope.index', 'zope.interface', 'zope.intid', 'zope.location', + 'zope.pluggableauth', 'zope.publisher', 'zope.schema', 'zope.security', 'zope.session', 'zope.tales', + 'zope.traversing', 'zopyx.txng3.core', - 'ztfy.jqueryui >= 0.5.6', + 'ztfy.jqueryui >= 0.6.0', ], entry_points=""" # -*- Entry points: -*- diff -r 953e07953290 -r 0639af2d572d ztfy.utils.egg-info/PKG-INFO --- a/ztfy.utils.egg-info/PKG-INFO Thu Apr 12 00:32:00 2012 +0200 +++ b/ztfy.utils.egg-info/PKG-INFO Thu Apr 12 00:33:33 2012 +0200 @@ -43,7 +43,11 @@ 0.3.10 ------ + - upgraded for ztfy.jqueryui 0.6.0 + - added Color schema field and widget - added StringLine schema field + - added "text:translate" TAL adapter + - moved ITransactionManager adapter from ztfy.scheduler package 0.3.9 ----- diff -r 953e07953290 -r 0639af2d572d ztfy.utils.egg-info/SOURCES.txt --- a/ztfy.utils.egg-info/SOURCES.txt Thu Apr 12 00:32:00 2012 +0200 +++ b/ztfy.utils.egg-info/SOURCES.txt Thu Apr 12 00:33:33 2012 +0200 @@ -36,9 +36,13 @@ ztfy/utils/text.py ztfy/utils/traversing.py ztfy/utils/unicode.py +ztfy/utils/zodb.py ztfy/utils/browser/__init__.py +ztfy/utils/browser/color.py ztfy/utils/browser/configure.zcml ztfy/utils/browser/encoding.py +ztfy/utils/browser/templates/color_display.pt +ztfy/utils/browser/templates/color_input.pt ztfy/utils/catalog/__init__.py ztfy/utils/catalog/configure.zcml ztfy/utils/catalog/index.py diff -r 953e07953290 -r 0639af2d572d ztfy.utils.egg-info/requires.txt --- a/ztfy.utils.egg-info/requires.txt Thu Apr 12 00:32:00 2012 +0200 +++ b/ztfy.utils.egg-info/requires.txt Thu Apr 12 00:33:33 2012 +0200 @@ -4,26 +4,34 @@ httplib2 hurry.query pytz +transaction z3c.form zc.set +ZODB3 zope.annotation zope.app.authentication zope.app.file +zope.authentication zope.catalog zope.component zope.container zope.datetime +zope.deprecation zope.i18n +zope.i18nmessageid zope.index zope.interface zope.intid zope.location +zope.pluggableauth zope.publisher zope.schema zope.security zope.session zope.tales +zope.traversing zopyx.txng3.core +ztfy.jqueryui >= 0.6.0 [test] zope.testing \ No newline at end of file diff -r 953e07953290 -r 0639af2d572d ztfy/utils/docs/HISTORY.txt --- a/ztfy/utils/docs/HISTORY.txt Thu Apr 12 00:32:00 2012 +0200 +++ b/ztfy/utils/docs/HISTORY.txt Thu Apr 12 00:33:33 2012 +0200 @@ -3,6 +3,8 @@ 0.3.10 ------ + - upgraded for ztfy.jqueryui 0.6.0 + - added Color schema field and widget - added StringLine schema field - added "text:translate" TAL adapter - moved ITransactionManager adapter from ztfy.scheduler package