# HG changeset patch # User Thierry Florac # Date 1537868115 -7200 # Node ID 5e51b05a38facaea6a20bb35fb42996755bbbe46 # Parent 7a95fe7d51b0037d81a66cbd189358bd281336a7 Version 0.1.19 diff -r 7a95fe7d51b0 -r 5e51b05a38fa buildout.cfg --- a/buildout.cfg Tue Sep 25 11:23:25 2018 +0200 +++ b/buildout.cfg Tue Sep 25 11:35:15 2018 +0200 @@ -86,4 +86,4 @@ eggs = pyams_content [test] [versions] -pyams_content = 0.1.18.2 +pyams_content = 0.1.19 diff -r 7a95fe7d51b0 -r 5e51b05a38fa docs/HISTORY.txt --- a/docs/HISTORY.txt Tue Sep 25 11:23:25 2018 +0200 +++ b/docs/HISTORY.txt Tue Sep 25 11:35:15 2018 +0200 @@ -1,6 +1,14 @@ History ======= +0.1.19 +------ + - added "topic" shared content + - added description and notepad attributes to sites, folders and blogs + - added common base interface for all illustrations targets + - added shared content's title portlet + - updated gallery interfaces and properties + 0.1.18.2 -------- - check for broken objects while iterating over visible paragraphs diff -r 7a95fe7d51b0 -r 5e51b05a38fa setup.py --- a/setup.py Tue Sep 25 11:23:25 2018 +0200 +++ b/setup.py Tue Sep 25 11:35:15 2018 +0200 @@ -22,7 +22,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.18.2' +version = '0.1.19' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r 7a95fe7d51b0 -r 5e51b05a38fa src/pyams_content.egg-info/PKG-INFO --- a/src/pyams_content.egg-info/PKG-INFO Tue Sep 25 11:23:25 2018 +0200 +++ b/src/pyams_content.egg-info/PKG-INFO Tue Sep 25 11:35:15 2018 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pyams-content -Version: 0.1.18.2 +Version: 0.1.19 Summary: PyAMS base content interfaces and classes Home-page: http://hg.ztfy.org/pyams/pyams_content Author: Thierry Florac @@ -73,6 +73,14 @@ History ======= + 0.1.19 + ------ + - added "topic" shared content + - added description and notepad attributes to sites, folders and blogs + - added common base interface for all illustrations targets + - added shared content's title portlet + - updated gallery interfaces and properties + 0.1.18.2 -------- - check for broken objects while iterating over visible paragraphs diff -r 7a95fe7d51b0 -r 5e51b05a38fa src/pyams_content.egg-info/SOURCES.txt --- a/src/pyams_content.egg-info/SOURCES.txt Tue Sep 25 11:23:25 2018 +0200 +++ b/src/pyams_content.egg-info/SOURCES.txt Tue Sep 25 11:35:15 2018 +0200 @@ -37,6 +37,7 @@ src/pyams_content/component/gallery/zmi/interfaces.py src/pyams_content/component/gallery/zmi/paragraph.py src/pyams_content/component/gallery/zmi/templates/gallery-media-thumbnail.pt +src/pyams_content/component/gallery/zmi/templates/gallery-media.pt src/pyams_content/component/gallery/zmi/templates/gallery-medias.pt src/pyams_content/component/illustration/__init__.py src/pyams_content/component/illustration/paragraph.py @@ -245,10 +246,14 @@ src/pyams_content/shared/common/interfaces/zmi.py src/pyams_content/shared/common/portlet/__init__.py src/pyams_content/shared/common/portlet/head.py +src/pyams_content/shared/common/portlet/title.py src/pyams_content/shared/common/portlet/interfaces/__init__.py +src/pyams_content/shared/common/portlet/skin/__init__.py src/pyams_content/shared/common/portlet/zmi/__init__.py src/pyams_content/shared/common/portlet/zmi/head.py +src/pyams_content/shared/common/portlet/zmi/title.py src/pyams_content/shared/common/portlet/zmi/templates/head-preview.pt +src/pyams_content/shared/common/portlet/zmi/templates/title-preview.pt src/pyams_content/shared/common/skin/__init__.py src/pyams_content/shared/common/skin/oid.py src/pyams_content/shared/common/skin/opengraph.py @@ -341,6 +346,10 @@ src/pyams_content/shared/site/zmi/widget/__init__.py src/pyams_content/shared/site/zmi/widget/interfaces.py src/pyams_content/shared/site/zmi/widget/templates/folders-input.pt +src/pyams_content/shared/topic/__init__.py +src/pyams_content/shared/topic/manager.py +src/pyams_content/shared/topic/interfaces/__init__.py +src/pyams_content/shared/topic/zmi/__init__.py src/pyams_content/shared/view/__init__.py src/pyams_content/shared/view/manager.py src/pyams_content/shared/view/merge.py