コード例 #1
0
ファイル: color.py プロジェクト: aninhalacerda/indico
 def __init__(self, rh, colorCodeTarget, colorPreviewTarget, formId=0):
     WPNotDecorated.__init__(self, rh)
     self._colorCodeTarget = colorCodeTarget
     self._colorPreviewTarget = colorPreviewTarget
     if formId.strip()=="":
         formId="0"
     self._formId=formId
コード例 #2
0
ファイル: roomBooking.py プロジェクト: aninhalacerda/indico
 def __init__(self, rh, aspects, buildings, defaultLocation, forVideoConference, roomID):
     WPNotDecorated.__init__(self, rh)
     self._aspects = aspects
     self._buildings = buildings
     self._defaultLocation = defaultLocation
     self._forVideoConference = forVideoConference
     self._roomID = roomID
コード例 #3
0
 def __init__(self, rh, colorCodeTarget, colorPreviewTarget, formId=0):
     WPNotDecorated.__init__(self, rh)
     self._colorCodeTarget = colorCodeTarget
     self._colorPreviewTarget = colorPreviewTarget
     if formId.strip() == "":
         formId = "0"
     self._formId = formId
コード例 #4
0
ファイル: conf_calendar.py プロジェクト: lukasnellen/indico
 def __init__( self, rh, month, year, day, form ):
     # month/year indicates which month should be displayed in the calendar
     # day indicates if a day should be highlighted in the calendar
     WPNotDecorated.__init__( self, rh )
     self._month  = month
     self._year = year
     self._day = day
     self._form = form
コード例 #5
0
 def __init__( self, rh, month, year, day, form ):
     # month/year indicates which month should be displayed in the calendar
     # day indicates if a day should be highlighted in the calendar
     WPNotDecorated.__init__( self, rh )
     self._month  = month
     self._year = year
     self._day = day
     self._form = form
コード例 #6
0
 def __init__(self, rh, aspects, buildings, defaultLocation,
              forVideoConference, roomID):
     WPNotDecorated.__init__(self, rh)
     self._aspects = aspects
     self._buildings = buildings
     self._defaultLocation = defaultLocation
     self._forVideoConference = forVideoConference
     self._roomID = roomID
コード例 #7
0
ファイル: rooms.py プロジェクト: dbourillot/indico
 def getCSSFiles(self):
     return WPNotDecorated.getCSSFiles(self) + ['css/mapofrooms.css']
コード例 #8
0
ファイル: roomBooking.py プロジェクト: aninhalacerda/indico
 def _getTitle(self):
     return WPNotDecorated._getTitle(self) + " - " + _("Map of rooms")
コード例 #9
0
ファイル: rooms.py プロジェクト: hennogous/indico
 def _getTitle(self):
     return "{} - {}".format(WPNotDecorated._getTitle(self), _("Map of rooms"))
コード例 #10
0
 def _getTitle(self):
     return WPNotDecorated._getTitle(self) + " - " + _("Map of rooms")
コード例 #11
0
 def __init__(self, rh, file):
     WPNotDecorated.__init__(self, rh)
     self._file = file
コード例 #12
0
 def _getTitle(self):
     return '{} - {}'.format(WPNotDecorated._getTitle(self), _('Map of rooms'))
コード例 #13
0
 def getJSFiles(self):
     return WPNotDecorated.getJSFiles(self) + self._includeJSPackage('RoomBooking')
コード例 #14
0
 def getCSSFiles(self):
     return WPNotDecorated.getCSSFiles(self) + ['css/mapofrooms.css']
コード例 #15
0
ファイル: rooms.py プロジェクト: dbourillot/indico
 def getJSFiles(self):
     return WPNotDecorated.getJSFiles(self) + self._includeJSPackage('RoomBooking')
コード例 #16
0
ファイル: rooms.py プロジェクト: dbourillot/indico
 def _getTitle(self):
     return '{} - {}'.format(WPNotDecorated._getTitle(self), _('Map of rooms'))
コード例 #17
0
ファイル: files.py プロジェクト: bubbas/indico
 def __init__(self,rh,file):
     WPNotDecorated.__init__(self,rh)
     self._file=file