Changeset bce3a4 in indico for indico/MaKaC/conference.py
- Timestamp:
- 04/13/12 10:13:38 (13 months ago)
- Branches:
- master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
- Children:
- 7c200d
- Parents:
- 2ea62cb
- git-author:
- Pedro Ferreira <jose.pedro.ferreira@…> (03/29/12 16:59:41)
- git-committer:
- Pedro Ferreira <jose.pedro.ferreira@…> (04/13/12 10:13:38)
- File:
-
- 1 edited
-
indico/MaKaC/conference.py (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
indico/MaKaC/conference.py
ref29b3 rbce3a4 309 309 if not root.has_key("rootCategory"): 310 310 r = Category() 311 r.setName( _("Home"))311 r.setName("Home") 312 312 self.add( r ) 313 313 root["rootCategory"] = r … … 4965 4965 def __init__(self): 4966 4966 self._sections = { 4967 "cfa": _("Call for abstracts"), 4968 #comment the following line to make the Paper Reviewing module not appear 4969 "paperReviewing" : _("Paper Reviewing"), 4970 "evaluation": _("Evaluation Form"), 4971 "videoconference": _("Videoconference"), # only for meetings 4972 "collaboration": _("Collaboration"), # only for meetings 4973 "regForm": _("Registration Form") 4967 "cfa": "Call for abstracts", 4968 "paperReviewing" : "Paper Reviewing", 4969 "evaluation": "Evaluation Form", 4970 "videoconference": "Videoconference", # only for meetings 4971 "collaboration": "Collaboration", # only for meetings 4972 "regForm": "Registration Form" 4974 4973 } 4975 4974 … … 5217 5216 5218 5217 def __init__(self): 5219 self._rights = {"modifContribs": _("Modify the contributions"), \5220 "unrestrictedSessionTT": _("Unrestricted session timetable management")5221 }5218 self._rights = {"modifContribs": "Modify the contributions", 5219 "unrestrictedSessionTT": "Unrestricted session timetable management" 5220 } 5222 5221 5223 5222 def hasRight(self, r): … … 5703 5702 """ 5704 5703 5705 self.setTitle( sessionData.get("title", _("NO TITLE ASSIGNED")) )5704 self.setTitle( sessionData.get("title", "NO TITLE ASSIGNED") ) 5706 5705 self.setDescription( sessionData.get("description", "") ) 5707 5706 code = sessionData.get("code", "") … … 6787 6786 i=self.getConfSchEntry().getSchedule().getEntries().index(self.getConfSchEntry())+1 6788 6787 entriesList = self.getConfSchEntry().getSchedule().getEntries()[i:] 6789 self.title=data.get("title", _("NO TITLE ASSIGNED"))6788 self.title=data.get("title", "NO TITLE ASSIGNED") 6790 6789 # Do we move all entries in the slot 6791 6790 move = int(data.get("move",0)) … … 10658 10657 will set to a default value. 10659 10658 """ 10660 self.setTitle( params.get( "title", _("NO TITLE ASSIGNED") ))10659 self.setTitle(params.get("title", "NO TITLE ASSIGNED")) 10661 10660 self.setDescription( params.get( "description", "" ) ) 10662 10661 self.notifyModification()
Note: See TracChangeset
for help on using the changeset viewer.
