# HG changeset patch # User Thierry Florac # Date 1540289693 -7200 # Node ID 56cbd405769f11a6861e7fc8dcc696aafaf0307a # Parent 8046e05b206d533408606410340cc029d0a0972c Version 0.1.22 diff -r 8046e05b206d -r 56cbd405769f buildout.cfg --- a/buildout.cfg Tue Oct 23 11:00:50 2018 +0200 +++ b/buildout.cfg Tue Oct 23 12:14:53 2018 +0200 @@ -86,4 +86,4 @@ eggs = pyams_content [test] [versions] -pyams_content = 0.1.21 +pyams_content = 0.1.22 diff -r 8046e05b206d -r 56cbd405769f docs/HISTORY.txt --- a/docs/HISTORY.txt Tue Oct 23 11:00:50 2018 +0200 +++ b/docs/HISTORY.txt Tue Oct 23 12:14:53 2018 +0200 @@ -1,6 +1,15 @@ History ======= +0.1.22 +------ + - sort pictograms in manager settings form + - use request hostname in portlets cache key + - added attributes, methods and portlet related to site navigation + - added settings to add prefix to all external files download links + - added sitemap and "robots.txt" views + - updated videos renderers + 0.1.21 ------ - updated cancel button's type in paragraphs inner edit forms diff -r 8046e05b206d -r 56cbd405769f setup.py --- a/setup.py Tue Oct 23 11:00:50 2018 +0200 +++ b/setup.py Tue Oct 23 12:14:53 2018 +0200 @@ -24,7 +24,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.21' +version = '0.1.22' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [] diff -r 8046e05b206d -r 56cbd405769f src/pyams_content.egg-info/PKG-INFO --- a/src/pyams_content.egg-info/PKG-INFO Tue Oct 23 11:00:50 2018 +0200 +++ b/src/pyams_content.egg-info/PKG-INFO Tue Oct 23 12:14:53 2018 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-content -Version: 0.1.21 +Version: 0.1.22 Summary: PyAMS base content interfaces and classes Home-page: http://hg.ztfy.org/pyams/pyams_content Author: Thierry Florac @@ -72,6 +72,15 @@ History ======= + 0.1.22 + ------ + - sort pictograms in manager settings form + - use request hostname in portlets cache key + - added attributes, methods and portlet related to site navigation + - added settings to add prefix to all external files download links + - added sitemap and "robots.txt" views + - updated videos renderers + 0.1.21 ------ - updated cancel button's type in paragraphs inner edit forms diff -r 8046e05b206d -r 56cbd405769f src/pyams_content.egg-info/SOURCES.txt --- a/src/pyams_content.egg-info/SOURCES.txt Tue Oct 23 11:00:50 2018 +0200 +++ b/src/pyams_content.egg-info/SOURCES.txt Tue Oct 23 12:14:53 2018 +0200 @@ -24,9 +24,14 @@ src/pyams_content/component/association/zmi/interfaces.py src/pyams_content/component/association/zmi/paragraph.py src/pyams_content/component/extfile/__init__.py +src/pyams_content/component/extfile/manager.py src/pyams_content/component/extfile/interfaces/__init__.py src/pyams_content/component/extfile/zmi/__init__.py src/pyams_content/component/extfile/zmi/container.py +src/pyams_content/component/extfile/zmi/manager.py +src/pyams_content/component/extfile/zmi/widget.py +src/pyams_content/component/extfile/zmi/templates/extfile-title-display.pt +src/pyams_content/component/extfile/zmi/templates/extfile-title-input.pt src/pyams_content/component/file/__init__.py src/pyams_content/component/gallery/__init__.py src/pyams_content/component/gallery/file.py @@ -196,6 +201,12 @@ src/pyams_content/features/review/zmi/templates/review-comments-json.pt src/pyams_content/features/review/zmi/templates/review-comments.pt src/pyams_content/features/review/zmi/templates/review-notification.pt +src/pyams_content/features/sitemap/__init__.py +src/pyams_content/features/sitemap/skin/__init__.py +src/pyams_content/features/sitemap/skin/templates/humans.pt +src/pyams_content/features/sitemap/skin/templates/robots.pt +src/pyams_content/features/sitemap/skin/templates/root-sitemap.pt +src/pyams_content/features/sitemap/skin/templates/tool-sitemap.pt src/pyams_content/generations/__init__.py src/pyams_content/interfaces/__init__.py src/pyams_content/interfaces/container.py @@ -336,8 +347,14 @@ src/pyams_content/shared/site/link.py src/pyams_content/shared/site/manager.py src/pyams_content/shared/site/interfaces/__init__.py +src/pyams_content/shared/site/portlet/__init__.py +src/pyams_content/shared/site/portlet/interfaces.py +src/pyams_content/shared/site/portlet/zmi/__init__.py +src/pyams_content/shared/site/portlet/zmi/templates/site-summary-preview.pt src/pyams_content/shared/site/skin/__init__.py src/pyams_content/shared/site/skin/breadcrumb.py +src/pyams_content/shared/site/skin/folder.py +src/pyams_content/shared/site/skin/link.py src/pyams_content/shared/site/zmi/__init__.py src/pyams_content/shared/site/zmi/container.py src/pyams_content/shared/site/zmi/folder.py