Changeset 343985 in indico
- Timestamp:
- 08/23/11 15:38:51 (21 months ago)
- Branches:
- master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
- Children:
- e8391a
- Parents:
- 7d69d4
- git-author:
- Adrian Moennich <jerome.ernst.monnich@…> (05/17/11 12:06:13)
- git-committer:
- Jose Benito <jose.benito.gonzalez@…> (08/23/11 15:38:51)
- File:
-
- 1 edited
-
indico/MaKaC/plugins/RoomBooking/export.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/plugins/RoomBooking/export.py
r7d69d4 r343985 24 24 from indico.web.http_api.responses import HTTPAPIError 25 25 from indico.web.wsgi import webinterface_handler_config as apache 26 from indico.util.fossilize import fossilize 26 from indico.util.fossilize import fossilize, IFossil 27 27 from MaKaC.common.info import HelperMaKaCInfo 28 28 from MaKaC.plugins.RoomBooking.default.factory import Factory … … 50 50 return expInt.room(self._location, self._idList) 51 51 52 class IRoomMetadataFossil(IFossil): 53 54 def id(self): 55 pass 56 def name(self): 57 pass 58 def locationName(self): 59 pass 60 def floor(self): 61 pass 62 def roomNr(self): 63 pass 64 def building(self): 65 pass 66 def getBookingUrl(self): 67 pass 68 def getFullName(self): 69 pass 70 52 71 class RoomExportInterface(ExportInterface): 53 72 DETAIL_INTERFACES = { 54 'rooms': IRoom Fossil73 'rooms': IRoomMetadataFossil 55 74 } 56 75
Note: See TracChangeset
for help on using the changeset viewer.
