Added "container" utility module ZTK-1.1
authorThierry Florac <tflorac@ulthar.net>
Mon, 02 Jul 2012 18:31:53 +0200
branchZTK-1.1
changeset 157 3d92cfb6801b
parent 156 576f6b3c913a
child 158 8d08f0900624
Added "container" utility module
src/ztfy/utils/container.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/ztfy/utils/container.py	Mon Jul 02 18:31:53 2012 +0200
@@ -0,0 +1,40 @@
+### -*- coding: utf-8 -*- ####################################################
+##############################################################################
+#
+# Copyright (c) 2012 Thierry Florac <tflorac AT ulthar.net>
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+
+
+# import standard packages
+
+# import Zope3 interfaces
+
+# import local interfaces
+
+# import Zope3 packages
+
+# import local packages
+
+
+def getContentName(container, base_name):
+    """Get a real name for a given base name and a container
+    
+    Target name will be suffixed with an index if base name already exists
+    """
+    if base_name not in container:
+        return base_name
+    index = 2
+    name = '%s-%02d' % (base_name, index)
+    while name in container:
+        index += 1
+        name = '%s-%02d' % (base_name, index)
+    return name