- Timestamp:
- 8 Mar 2012, 19:00:51 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/hostels/interfaces.py
r7718 r7811 18 18 from zope.interface import invariant, Invalid 19 19 from zope import schema 20 from waeup. sirp.interfaces import ISIRPObject21 from waeup. sirp.interfaces import MessageFactory as _22 from waeup. sirp.hostels.vocabularies import (20 from waeup.kofa.interfaces import IKOFAObject 21 from waeup.kofa.interfaces import MessageFactory as _ 22 from waeup.kofa.hostels.vocabularies import ( 23 23 bed_letters, blocks, special_handling, StudentSource) 24 24 25 class IHostelsContainer(I SIRPObject):25 class IHostelsContainer(IKOFAObject): 26 26 """A container for all kind of hostel objects. 27 27 28 28 """ 29 29 30 class IHostel(I SIRPObject):30 class IHostel(IKOFAObject): 31 31 """A base representation of hostels. 32 32 … … 146 146 raise Invalid(_('Bed categories overlap.')) 147 147 148 class IBed(I SIRPObject):148 class IBed(IKOFAObject): 149 149 """A base representation of beds. 150 150
Note: See TracChangeset for help on using the changeset viewer.