Ignore:
Timestamp:
11/12/09 17:40:54 (4 years ago)
Author:
Cesar Munoz Orena <cesar.munoz.orena@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, new-webex, prov-dual-interface, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, 0da0c1403bae8e51d8229f460181c71b9e6dda72
Children:
ca428d
Parents:
d9b54f6
git-author:
Cesar Munoz Orena <cesar.munoz.orena@…> (11/12/09 17:22:31)
git-committer:
Cesar Munoz Orena <cesar.munoz.orena@…> (11/12/09 17:40:54)
Message:

[FIXED] Error when displaying conference timetable

  • When the timetable link of a conference was clicked there was an error because the handler (RHConferenceTimeTable) was not inheriting from the class that made the connection with the database (RoomBookingDBMixin)
  • fixes #31
File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/webinterface/rh/conferenceDisplay.py

    r0c8aad r931922  
    3939from MaKaC.authentication import AuthenticatorMgr 
    4040from MaKaC.webinterface.rh.base import RHDisplayBaseProtected 
     41from MaKaC.webinterface.rh.base import RoomBookingDBMixin 
    4142from MaKaC.webinterface.rh.conferenceBase import RHConferenceBase, RHSubmitMaterialBase 
    4243import MaKaC.common.filters as filters 
     
    616617        return data 
    617618 
    618 class RHConferenceTimeTable( RHConferenceBaseDisplay ): 
     619class RHConferenceTimeTable( RoomBookingDBMixin, RHConferenceBaseDisplay ): 
    619620    _uh = urlHandlers.UHConferenceTimeTable 
    620621 
Note: See TracChangeset for help on using the changeset viewer.