[Zope3-Users] Security in Zope 3
Chris Withers
chris at simplistix.co.uk
Tue Sep 19 05:10:00 EDT 2006
Hi All,
Curious about security in Zope 3.
In Zope 2 the following would be bad:
class X(SimpleItem): pass
class Y(SimpleItem): pass
class Z(SimpleItem): pass
x = X()
y = Y()
z = Z()
x.y = y
x.z = z
y.z = z
...because z has two containment paths:
x.z
x.y.z
...which might have different security constraints.
How does Zope 3 handle the same kind of setup?
cheers,
Chris
--
Simplistix - Content Management, Zope & Python Consulting
- http://www.simplistix.co.uk
More information about the Zope3-users
mailing list