Our custom ordering system
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from persistent.mapping import PersistentMapping |
|
|
|
|
|
class MyModel(PersistentMapping): |
|
__parent__ = __name__ = None |
|
|
|
|
|
def appmaker(zodb_root): |
|
if 'app_root' not in zodb_root: |
|
app_root = MyModel() |
|
zodb_root['app_root'] = app_root |
|
return zodb_root['app_root']
|
|
|