Ignore:
Timestamp:
10/19/09 13:51:20 (4 years ago)
Author:
David Martín Clavo <david.martin.clavo@…>
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:
21082a0
Parents:
63511f
git-author:
David Martín Clavo <david.martin.clavo@…> (09/14/09 17:48:26)
git-committer:
David Martín Clavo <david.martin.clavo@…> (10/19/09 13:51:20)
Message:

[IMPROVEMENT] Forthcoming webcast info on event display

-Added a line of etxt for meetings, lectures and conferences
display pages when the event is on the list of
forthcoming webcasts.

[IMPROVEMENT] Better forthcoming webcast message

-Improved message for forthcoming webcasts.
-Allowed configuration of Webcast Service URL
(used for forthcoming webcasts) in Server Admin interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/MaKaC/webinterface/pages/conferences.py

    rfd0c10 r94bbee  
    319319         
    320320        wm = webcast.HelperWebcastManager.getWebcastManagerInstance() 
    321         webcastURL = wm.isOnAir(self._conf) 
     321        onAirURL = wm.isOnAir(self._conf) 
     322        if onAirURL: 
     323            webcastURL = onAirURL 
     324        else: 
     325            webcastURL = wm.getWebcastServiceURL()  
     326        forthcomingWebcast = not onAirURL and wm.getForthcomingWebcast(self._conf) 
    322327         
    323328        frameParams = {\ 
     
    329334            "nowHappening": drawer.getNowHappeningHTML(), \ 
    330335            "simpleTextAnnouncement": drawer.getSimpleText(), \ 
    331             "webcastURL": webcastURL } 
     336            "onAirURL": onAirURL, 
     337            "webcastURL": webcastURL, 
     338            "forthcomingWebcast": forthcomingWebcast } 
    332339        if self._conf.getLogo(): 
    333340            frameParams["logoURL"] = urlHandlers.UHConferenceLogo.getURL( self._conf) 
Note: See TracChangeset for help on using the changeset viewer.