# HG changeset patch # User Thierry Florac # Date 1547032750 -3600 # Node ID ecd94f3b81f78944270f1d8166f151b61e6509bb # Parent 927860b990e3f0c4aead637ebd751fc1ed488aa2 Version 0.1.28 diff -r 927860b990e3 -r ecd94f3b81f7 buildout.cfg --- a/buildout.cfg Wed Jan 09 10:15:23 2019 +0100 +++ b/buildout.cfg Wed Jan 09 12:19:10 2019 +0100 @@ -96,4 +96,4 @@ eggs = pyams_utils [test] [versions] -pyams_utils = 0.1.27.1 +pyams_utils = 0.1.28 diff -r 927860b990e3 -r ecd94f3b81f7 docs/HISTORY.txt --- a/docs/HISTORY.txt Wed Jan 09 10:15:23 2019 +0100 +++ b/docs/HISTORY.txt Wed Jan 09 12:19:10 2019 +0100 @@ -1,6 +1,11 @@ Changelog ========= +0.1.28 +------ + - added NamespaceTraverser to replace "++oid++XX::title.html" URL syntax with a simpler "*/+/XX::title.html". + This requires an ITraversable adapter named "+" for context and request to handle content access. + 0.1.27.1 -------- - force timezone in "timestamp" TALES adapter diff -r 927860b990e3 -r ecd94f3b81f7 setup.py --- a/setup.py Wed Jan 09 10:15:23 2019 +0100 +++ b/setup.py Wed Jan 09 12:19:10 2019 +0100 @@ -25,7 +25,7 @@ README = os.path.join(DOCS, 'README.txt') HISTORY = os.path.join(DOCS, 'HISTORY.txt') -version = '0.1.27.1' +version = '0.1.28' long_description = open(README).read() + '\n\n' + open(HISTORY).read() tests_require = [ diff -r 927860b990e3 -r ecd94f3b81f7 src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Wed Jan 09 10:15:23 2019 +0100 +++ b/src/pyams_utils.egg-info/PKG-INFO Wed Jan 09 12:19:10 2019 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.27.1 +Version: 0.1.28 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -47,6 +47,11 @@ Changelog ========= + 0.1.28 + ------ + - added NamespaceTraverser to replace "++oid++XX::title.html" URL syntax with a simpler "*/+/XX::title.html". + This requires an ITraversable adapter named "+" for context and request to handle content access. + 0.1.27.1 -------- - force timezone in "timestamp" TALES adapter