示例#1
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if not self._conf.getAbstractMgr().isActive(
     ) or not self._conf.hasEnabledSection("cfa"):
         raise MaKaCError(
             _("The Call For Abstracts was disabled by the conference managers"
               ))
示例#2
0
 def _checkParams( self, params ):
     RHConferenceBaseDisplay._checkParams( self, params )
     self._abstractIds = normaliseListParam( params.get("abstracts", []) )
     self._abstracts = []
     abMgr = self._conf.getAbstractMgr()
     for id in self._abstractIds:
         if abMgr.getAbstractById(id).canView(self._aw):
             self._abstracts.append(abMgr.getAbstractById(id))
示例#3
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._abstractIds = normaliseListParam(params.get("abstracts", []))
     self._abstracts = []
     abMgr = self._conf.getAbstractMgr()
     for id in self._abstractIds:
         if abMgr.getAbstractById(id).canView(self._aw):
             self._abstracts.append(abMgr.getAbstractById(id))
示例#4
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.event = self._conf
示例#5
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams( self, params )
     self.spkUniqueId = params.get("spkId","")
示例#6
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.page = EventPage.get_one(request.view_args['page_id'])
示例#7
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.spkUniqueId = params.get("spkId", "")
示例#8
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.agreement = Agreement.find_one(id=request.view_args['id'])
     if self.agreement.is_orphan():
         raise NotFound('The agreement is not active anymore')
示例#9
0
文件: display.py 项目: florv/indico
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.layout = request.args.get('layout')
     if not self.layout:
         self.layout = request.args.get('ttLyt')
示例#10
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.contrib = Contribution.get_one(request.view_args['contrib_id'], is_deleted=False)
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._templateId = params.get('reviewingTemplateId')
示例#12
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if self.agreement.uuid != request.view_args['uuid']:
         raise Forbidden(_("The URL for this agreement is invalid."))
     if self.agreement.user:
         self._checkSessionUser()
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._templateId = params.get('reviewingTemplateId')
示例#14
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     SpecificFolderMixin._checkParams(self)
示例#15
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._authorId = params.get("authorId", "").strip()
示例#16
0
 def _checkProtection(self):
     if self._target.hasEnabledSection("paperReviewing"):
         RHConferenceBaseDisplay._checkProtection(self)
     else:
         raise MaKaCError(_("Paper Reviewing is not active for this conference"))
示例#17
0
文件: images.py 项目: indico/indico
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     image_id = request.view_args["image_id"]
     self.image = ImageFile.get_one(image_id)
示例#18
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if self.agreement.uuid != request.view_args['uuid']:
         raise AccessError()
     if self.agreement.user:
         self._checkSessionUser()
示例#19
0
 def _checkParams( self, params ):
     RHConferenceBaseDisplay._checkParams( self, params )
     self._authorId = params.get( "authorId", "" ).strip()
示例#20
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.contribs = self.event_new.contributions
     self.list_generator = ContributionDisplayListGenerator(event=self.event_new)
示例#21
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.layout = request.args.get('layout')
     if not self.layout:
         self.layout = request.args.get('ttLyt')
示例#22
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.entry = self.event_new.timetable_entries.filter_by(
         id=request.view_args['entry_id']).first_or_404()
示例#23
0
 def _checkProtection( self ):
     RHConferenceBaseDisplay._checkProtection(self)
     if not self._conf.getAbstractMgr().isActive() or not self._conf.hasEnabledSection("cfa"):
         raise MaKaCError( _("The Call For Abstracts was disabled by the conference managers"))
示例#24
0
 def _checkProtection(self):
     if not session.user:
         raise Forbidden
     RHConferenceBaseDisplay._checkProtection(self)
示例#25
0
 def _checkProtection( self ):
     RHConferenceBaseDisplay._checkProtection(self)
     if self._regForm.isMandatoryAccount() and self._getUser() == None:
         self._redirect( self._getLoginURL() )
         self._doProcess = False
示例#26
0
 def _checkParams( self, params ):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._evaluation = self._conf.getEvaluation()
示例#27
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
示例#28
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if not self.folder.can_access(session.user):
         raise Forbidden
示例#29
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if self._regForm.isMandatoryAccount() and self._getUser() == None:
         self._redirect(self._getLoginURL())
         self._doProcess = False
示例#30
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._evaluation = self._conf.getEvaluation()
示例#31
0
 def _checkProtection(self):
     if not session.user:
         raise Forbidden
     RHConferenceBaseDisplay._checkProtection(self)
示例#32
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.authKey = params['authKey']
示例#33
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.session = Session.get_one(request.view_args['session_id'], is_deleted=False)
示例#34
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.event = self._conf
示例#35
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.contribs = self.event_new.contributions
     self.list_generator = ContributionDisplayListGenerator(
         event=self.event_new)
示例#36
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.agreement = Agreement.find_one(id=request.view_args['id'])
     if self.agreement.is_orphan():
         raise NotFound('The agreement is not active anymore')
示例#37
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.contrib = Contribution.get_one(request.view_args['contrib_id'],
                                         is_deleted=False)
示例#38
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if not self.contrib.can_access(session.user):
         raise Forbidden
示例#39
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if not is_menu_entry_enabled(self.MENU_ENTRY_NAME, self.event_new):
         self._forbidden_if_not_admin()
示例#40
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if not is_menu_entry_enabled(self.MENU_ENTRY_NAME, self.event_new):
         self._forbidden_if_not_admin()
示例#41
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.authKey = params['authKey']
示例#42
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
示例#43
0
 def _getLoginURL(self):
     return RHConferenceBaseDisplay._getLoginURL(
         self, urlHandlers.UHConfEvaluationDisplay.getURL(self._conf))
示例#44
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     image_id = request.view_args['image_id']
     self.image = ImageFile.get_one(image_id)
示例#45
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     # Only let event managers access the management versions.
     if self.management and not self.event_new.can_manage(session.user):
         raise Forbidden
 def _checkParams( self, params ):
     RHConferenceBaseDisplay._checkParams(self, params)
     self._regForm = self._conf.getRegistrationForm()
示例#47
0
 def _checkProtection(self):
     if self._target.hasEnabledSection("paperReviewing"):
         RHConferenceBaseDisplay._checkProtection(self)
     else:
         raise MaKaCError(_("Paper Reviewing is not active for this conference"))
示例#48
0
文件: display.py 项目: florv/indico
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.entry = self.event_new.timetable_entries.filter_by(id=request.view_args['entry_id']).first_or_404()
示例#49
0
文件: display.py 项目: fph/indico
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.contribs = self.event_new.contributions
     self.reporter = ContributionDisplayReporter(event=self.event_new)
示例#50
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.session = Session.get_one(request.view_args['session_id'],
                                    is_deleted=False)
示例#51
0
文件: rh.py 项目: Ictp/indico
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
示例#52
0
 def _checkProtection(self):
     RHConferenceBaseDisplay._checkProtection(self)
     if self.agreement.uuid != request.view_args['uuid']:
         raise Forbidden(_("The URL for this agreement is invalid."))
     if self.agreement.user:
         self._checkSessionUser()
示例#53
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     SpecificFolderMixin._checkParams(self)
示例#54
0
 def _getLoginURL(self):
     return RHConferenceBaseDisplay._getLoginURL(self, urlHandlers.UHConfEvaluationDisplay.getURL(self._conf))
示例#55
0
 def _checkParams(self, params):
     RHConferenceBaseDisplay._checkParams(self, params)
     self.contribs = self.event_new.contributions
     self.reporter = ContributionDisplayReporter(event=self.event_new)