本文整理汇总了Python中MaKaC.webinterface.rh.conferenceBase.RHConferenceBase类的典型用法代码示例。如果您正苦于以下问题:Python RHConferenceBase类的具体用法?Python RHConferenceBase怎么用?Python RHConferenceBase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RHConferenceBase类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _checkParams
def _checkParams(self, params):
RHConferenceBase._checkParams(self, params)
self._abstractId = params.get("abstractId","")
self._abstractExist = False
try:
abstract = self._conf.getAbstractMgr().getAbstractById(self._abstractId)
self._abstractExist = True
RHAbstractModifBase._checkParams(self, params)
except KeyError:
pass
示例2: _checkParams
def _checkParams( self, params ):
RHConferenceBase._checkParams( self, params )
示例3: _checkParams
def _checkParams(self, params):
RHConferenceBase._checkParams( self, params )
self._templateId = params.get("reviewingTemplateId")
示例4: _checkParams
def _checkParams(self, params):
RHConferenceBase._checkParams(self, params)
self.object_type, self.base_object, self.object = get_object_from_args()
if self.object is None:
raise NotFound
示例5: _checkParams
def _checkParams(self, params):
RHConferenceBase._checkParams(self, params)
self.authKey = params['authKey']
示例6: _checkParams
def _checkParams(self, params):
RHConferenceBase._checkParams(self, params)
RHResetPasswordBase._checkParams(self, params)