equal
deleted
inserted
replaced
14 |
14 |
15 |
15 |
16 # import standard library |
16 # import standard library |
17 |
17 |
18 # import interfaces |
18 # import interfaces |
|
19 from pyramid.interfaces import IView |
19 |
20 |
20 # import packages |
21 # import packages |
21 from zope.interface import Interface |
22 from zope.interface import Interface |
22 from zope.schema import TextLine, Bool |
23 from zope.schema import TextLine, Bool |
23 |
24 |
24 |
25 |
25 class IContainerBaseView(Interface): |
26 class IContainerBaseView(IView): |
26 """Base container marker interface""" |
27 """Base container marker interface""" |
27 |
28 |
28 |
29 |
29 class IOrderedContainerBaseView(Interface): |
30 class IOrderedContainerBaseView(Interface): |
30 """Ordered container marker interface""" |
31 """Ordered container marker interface""" |