Commit 9d596e9c authored by 's avatar

- added forward-compatibility shim for UserFolder (this makes it easier to...

- added forward-compatibility shim for UserFolder (this makes it easier to write CMF migration code)
parent 93b1b2e3
......@@ -16,6 +16,8 @@ Bugs Fixed
Features Added
++++++++++++++
- OFS: Added forward-compatibility shim for UserFolder.
- Updated packages:
- DateTime = 2.12.5
......
##############################################################################
#
# Copyright (c) 2002 Zope Foundation and Contributors.
#
# 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.
#
##############################################################################
"""User folders
"""
from AccessControl.User import UserFolder as BaseUserFolder
class UserFolder(BaseUserFolder):
"""Forward compatibility shim.
"""
def __init__(self):
super(UserFolder, self).__init__()
self._ofs_migrated = True
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment