Ignore:
Timestamp:
06/17/10 16:52:44 (3 years ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, burotel, hello-world-walkthrough, ipv6, new-webex, v0.97-series, v0.98-series, v0.98.2, v0.98.3, v0.98b1, v0.98b2, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
Children:
18ea58
Parents:
336d4e
git-author:
Leszek Syroka <leszek.marek.syroka@…> (05/27/10 16:22:05)
git-committer:
Jose Benito <jose.benito.gonzalez@…> (06/17/10 16:52:44)
Message:

[FIX] Conference header hide navigation icons

  • navigation bar logic moved from conference class to ConfDisplayMgr? class
  • naivagtion bar interface moved from event's general setting to layout->conference header webpage
  • fix#301
File:
1 edited

Legend:

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

    r5c80b9 r7a1c52  
    68636863        vars["searchBoxURL"]=quoteattr(str(urlSB)) 
    68646864 
     6865        #enable or disable navigation icons 
     6866        vars["confType"] = self._conf.getType() 
     6867        urlSB=urlHandlers.UHConfModifToggleNavigationBar.getURL(self._conf) 
     6868        if displayMgr.ConfDisplayMgrRegistery().getDisplayMgr(self._conf).getDisplayNavigationBar(): 
     6869            vars["navigationBoxIcon"]=vars["enablePic"] 
     6870            vars["navigationBoxTextIcon"]=enabledText 
     6871        else: 
     6872            vars["navigationBoxIcon"]=vars["disablePic"] 
     6873            vars["navigationBoxTextIcon"]=disabledText 
     6874        vars["navigationBoxURL"]=quoteattr(str(urlSB)) 
    68656875 
    68666876        return vars 
Note: See TracChangeset for help on using the changeset viewer.