Changeset 11
- Timestamp:
- 08/05/05 23:04:00 (7 years ago)
- Location:
- trunk/src/chronolog
- Files:
-
- 2 modified
-
DEPENDENCIES.cfg (modified) (1 diff)
-
interfaces.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/chronolog/DEPENDENCIES.cfg
r9 r11 1 1 zope.interface 2 2 zope.schema 3 zope.app -
trunk/src/chronolog/interfaces.py
r10 r11 18 18 from zope.interface.common.mapping import IEnumerableMapping 19 19 from zope.schema import Text, TextLine, Date, Timedelta, Set, Int 20 from zope.app.container.constraints import ContainerTypesConstraint 20 21 21 22 class ITimeLogKey(Interface): … … 98 99 description=u'''A set of keys describing the entry against which 99 100 time is logged.''', 100 required=True) 101 required=True, 102 min_length=1, 103 constraint=ContainerTypesConstraint(ITimeLogKey)) 101 104 102 105 date = Date( … … 221 224 description=u'The keys defining the view on the underlying ' 222 225 u'ITimeLogStore.', 223 required=True) 226 required=True, 227 constraint=ContainerTypesConstraint(ITimeLogKey))
