remove obsolete property from Loops root, ensuring compatibility with ZTK
This commit is contained in:
parent
96e7c20a56
commit
9670ace28c
1 changed files with 5 additions and 8 deletions
13
base.py
13
base.py
|
@ -1,7 +1,5 @@
|
||||||
# -*- coding: UTF-8 -*-
|
|
||||||
# -*- Mode: Python; py-indent-offset: 4 -*-
|
|
||||||
#
|
#
|
||||||
# Copyright (c) 2006 Helmut Merz helmutm@cy55.de
|
# Copyright (c) 2017 Helmut Merz helmutm@cy55.de
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -19,8 +17,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
Implementation of loops root object.
|
||||||
$Id$
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from zope.app.container.btree import BTreeContainer
|
from zope.app.container.btree import BTreeContainer
|
||||||
|
@ -43,9 +40,9 @@ class Loops(Folder):
|
||||||
#def getSiteManager(self):
|
#def getSiteManager(self):
|
||||||
# return self.__parent__.getSiteManager()
|
# return self.__parent__.getSiteManager()
|
||||||
|
|
||||||
@property
|
#@property
|
||||||
def _SampleContainer__data(self):
|
#def _SampleContainer__data(self):
|
||||||
return self.data
|
# return self.data
|
||||||
|
|
||||||
_skinName = ''
|
_skinName = ''
|
||||||
def getSkinName(self): return self._skinName
|
def getSkinName(self): return self._skinName
|
||||||
|
|
Loading…
Add table
Reference in a new issue