# HG changeset patch # User Thierry Florac # Date 1558530825 -7200 # Node ID ed3c936dcd946797f9f8f2abbf945e29ac7e4d51 # Parent 8fc7bc61494bfbd770cffddd24165109109e9d2c Version 0.1.40 diff -r 8fc7bc61494b -r ed3c936dcd94 buildout.cfg --- a/buildout.cfg Wed May 22 14:16:34 2019 +0200 +++ b/buildout.cfg Wed May 22 15:13:45 2019 +0200 @@ -78,4 +78,4 @@ eggs = pyams_default_theme [test] [versions] -pyams_default_theme = 0.1.39 +pyams_default_theme = 0.1.40 diff -r 8fc7bc61494b -r ed3c936dcd94 docs/HISTORY.txt --- a/docs/HISTORY.txt Wed May 22 14:16:34 2019 +0200 +++ b/docs/HISTORY.txt Wed May 22 15:13:45 2019 +0200 @@ -1,6 +1,10 @@ History ======= +0.1.40 +------ + - added conditions on iterators contents using new TALES "boolean_iter()" expression + 0.1.39 ------ - added navigation illustration adapter for contents which only have a navigation illustration but no header diff -r 8fc7bc61494b -r ed3c936dcd94 setup.py --- a/setup.py Wed May 22 14:16:34 2019 +0200 +++ b/setup.py Wed May 22 15:13:45 2019 +0200 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.39' +version = '0.1.40' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] @@ -58,6 +58,7 @@ # -*- Extra requirements: -*- 'pyams_content', 'pyams_skin', + 'pyams_utils >= 0.1.31', 'pyahocorasick', 'pyramid', 'zope.component', diff -r 8fc7bc61494b -r ed3c936dcd94 src/pyams_default_theme.egg-info/PKG-INFO --- a/src/pyams_default_theme.egg-info/PKG-INFO Wed May 22 14:16:34 2019 +0200 +++ b/src/pyams_default_theme.egg-info/PKG-INFO Wed May 22 15:13:45 2019 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-default-theme -Version: 0.1.39 +Version: 0.1.40 Summary: PyAMS default theme Home-page: http://hg.ztfy.org/pyams/pyams_default_theme Author: Thierry Florac @@ -11,6 +11,10 @@ History ======= + 0.1.40 + ------ + - added conditions on iterators contents using new TALES "boolean_iter()" expression + 0.1.39 ------ - added navigation illustration adapter for contents which only have a navigation illustration but no header diff -r 8fc7bc61494b -r ed3c936dcd94 src/pyams_default_theme.egg-info/requires.txt --- a/src/pyams_default_theme.egg-info/requires.txt Wed May 22 14:16:34 2019 +0200 +++ b/src/pyams_default_theme.egg-info/requires.txt Wed May 22 15:13:45 2019 +0200 @@ -1,6 +1,7 @@ setuptools pyams_content pyams_skin +pyams_utils>=0.1.31 pyahocorasick pyramid zope.component