本文整理汇总了Python中MaKaC.services.implementation.conference.ConferenceModifBase类的典型用法代码示例。如果您正苦于以下问题:Python ConferenceModifBase类的具体用法?Python ConferenceModifBase怎么用?Python ConferenceModifBase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ConferenceModifBase类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
pm = ParameterManager(self._params)
submitterId = pm.extract("submitterId", pType=str, allowEmpty=False)
abstractId = pm.extract("abstractId", pType=str, allowEmpty=False)
self._abstract = self._conf.getAbstractMgr().getAbstractById(abstractId)
self._submitter = user.AvatarHolder().getById(submitterId)
示例2: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
if "startDate" in self._params:
self._startDate = self._params["startDate"]
if "endDate" in self._params:
self._endDate = self._params["endDate"]
示例3: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
pm = ParameterManager(self._params)
ah = AvatarHolder()
userId = pm.extract("userId", pType=str, allowEmpty=False)
self._user = ah.getById(userId)
if self._user == None:
raise ServiceError("ERR-U0", _("User '%s' does not exist.") % userId)
示例4: _checkCanManagePlugin
def _checkCanManagePlugin(self, plugin):
isAdminOnlyPlugin = CollaborationTools.isAdminOnlyPlugin(plugin)
hasAdminRights = RCCollaborationAdmin.hasRights(self._getUser()) or RCCollaborationPluginAdmin.hasRights(self._getUser(), [plugin])
if not hasAdminRights and isAdminOnlyPlugin:
raise CollaborationException(_("Cannot acces service of admin-only plugin if user is not admin, for event: ") + str(self._conf.getId()) + _(" with the service ") + str(self.__class__) )
elif not hasAdminRights and not RCVideoServicesManager.hasRights(self._getUser(), self._conf, [plugin]):
#we check if it's an event creator / manager (this will call ConferenceModifBase._checkProtection)
ConferenceModifBase._checkProtection(self)
示例5: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
self.uniqueIdList = self._params["uniqueIdList"]
self.emailToList = []
self.fromEmail = self._params["from"]
self.content = self._params["content"]
manager = self._conf.getCSBookingManager()
for uniqueId in self.uniqueIdList:
self.emailToList.extend(manager.getSpeakerEmailByUniqueId(uniqueId, self._aw.getUser()))
示例6: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
self._pm = ParameterManager(self._params)
self.uniqueIdList = self._pm.extract("uniqueIdList", list, False, [])
fromMail = self._pm.extract("from", dict, False, {})
self.fromEmail = fromMail['email']
self.fromName = fromMail['name']
self.content = self._pm.extract("content", str, False, "")
p_cc = self._pm.extract("cc", str, True, "").strip()
self.cc = setValidEmailSeparators(p_cc).split(',') if p_cc else []
self.emailToList = []
manager = Catalog.getIdx("cs_bookingmanager_conference").get(self._conf.getId())
for uniqueId in self.uniqueIdList:
spk = manager.getSpeakerWrapperByUniqueId(uniqueId)
if spk.getStatus() not in [SpeakerStatusEnum.SIGNED, SpeakerStatusEnum.FROMFILE]:
self.emailToList.extend(manager.getSpeakerEmailByUniqueId(uniqueId, self._aw.getUser()))
示例7: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
pm = ParameterManager(self._params)
self._limits = pm.extract("limits", pType=list, allowEmpty=False)
示例8: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self) #sets self._target = self._conf = the Conference object
self._checkCollaborationEnabled()
self._CSBookingManager = self._conf.getCSBookingManager()
示例9: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
ReportNumberRemove._checkParams(self)
示例10: _checkProtection
def _checkProtection(self):
if self._target.getConference().hasEnabledSection("paperReviewing"):
ConferenceModifBase._checkProtection(self)
else:
raise ServiceError("ERR-REV1a",_("Paper Reviewing is not active for this conference"))
示例11: _checkProtection
def _checkProtection(self):
if not self._target.canManageRegistration(self.getAW().getUser()):
ConferenceModifBase._checkProtection(self)
示例12: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
self._CSManager = self._conf.getCSBookingManager()
示例13: process
def process(self):
try:
return ConferenceModifBase.process(self)
except CollaborationException, e:
raise CollaborationServiceException(e.getMessage(), str(e.getInner()))
示例14: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
self._confPaperReview = self._conf.getConfPaperReview()
self._confAbstractReview = self._conf.getConfAbstractReview()
示例15: _checkParams
def _checkParams(self):
ConferenceModifBase._checkParams(self)
self._confReview = self._conf.getConfReview()