Beispiel #1
0
    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']
Beispiel #2
0
 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)
Beispiel #3
0
    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"]
Beispiel #4
0
    def _checkParams(self):
        ConferenceModifBase._checkParams(self)
        pm = ParameterManager(self._params)
        self.params = {}

        self.params["type"] = pm.extract("type",
                                         pType=str,
                                         allowEmpty=False,
                                         defaultValue="text")
        self.params["id"] = pm.extract("id", pType=str, allowEmpty=True)
        self.params["caption"] = pm.extract("caption",
                                            pType=str,
                                            allowEmpty=False)
        self.params["isMandatory"] = pm.extract("isMandatory",
                                                pType=bool,
                                                allowEmpty=True,
                                                defaultValue=False)

        if self.params["type"] == "textarea" or self.params["type"] == "input":
            self.params["maxLength"] = pm.extract("maxLength",
                                                  pType=int,
                                                  allowEmpty=True,
                                                  defaultValue=0)
            self.params["limitation"] = pm.extract("limitation",
                                                   pType=str,
                                                   allowEmpty=True,
                                                   defaultValue="chars")
        elif self.params["type"] == "selection":
            self.params["options"] = pm.extract("options",
                                                pType=list,
                                                allowEmpty=False)
Beispiel #5
0
    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']
Beispiel #6
0
 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)
Beispiel #7
0
 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)
     if self._submitter is None:
         raise NoReportError(_("The user that you are changing does not exist anymore in the database"))
Beispiel #8
0
    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()))
Beispiel #9
0
    def _checkParams(self):
        ConferenceModifBase._checkParams(self)
        pm = ParameterManager(self._params)
        self.params = {}

        self.params["type"] = pm.extract("type", pType=str, allowEmpty=False, defaultValue="text")
        self.params["id"] = pm.extract("id", pType=str, allowEmpty=True)
        self.params["caption"] = pm.extract("caption", pType=str, allowEmpty=False)
        self.params["isMandatory"] = pm.extract("isMandatory", pType=bool, allowEmpty=True, defaultValue=False)

        if self.params["type"] == "textarea" or self.params["type"] == "input":
            self.params["maxLength"] = pm.extract("maxLength", pType=int, allowEmpty=True, defaultValue=0)
            self.params["limitation"] = pm.extract("limitation", pType=str, allowEmpty=True, defaultValue="chars")
        elif self.params["type"] == "selection":
            self.params["options"] = pm.extract("options", pType=list, allowEmpty=False)
Beispiel #10
0
    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()))
Beispiel #11
0
    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 = self._conf.getCSBookingManager()
        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()))
Beispiel #12
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(
         self)  #sets self._target = self._conf = the Conference object
     self._CSBookingManager = Catalog.getIdx(
         "cs_bookingmanager_conference").get(self._conf.getId())
Beispiel #13
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     pm = ParameterManager(self._params)
     self._userList = pm.extract("userList", pType=list, allowEmpty=False)
Beispiel #14
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._CSManager = self._conf.getCSBookingManager()
Beispiel #15
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._confReview = self._conf.getConfReview()
Beispiel #16
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._CSManager = Catalog.getIdx("cs_bookingmanager_conference").get(self._conf.getId())
Beispiel #17
0
    def _checkParams(self):
        ConferenceModifBase._checkParams(self)

        self.newEmailAddress = self._params['value']
        self.spkId = self._params['spkId']
Beispiel #18
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     pm = ParameterManager(self._params)
     self._limits = pm.extract("limits", pType=list, allowEmpty=False)
Beispiel #19
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self.contList = self._params["contList"]
     self.userId = self._params["userId"]
Beispiel #20
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     pm = ParameterManager(self._params)
     self._registrant_ids = pm.extract("registrants",
                                       pType=list,
                                       allowEmpty=False)
Beispiel #21
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._event = self._conf.as_event
     self._confPaperReview = self._conf.getConfPaperReview()
Beispiel #22
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self) #sets self._target = self._conf = the Conference object
     self._checkCollaborationEnabled()
     self._CSBookingManager = self._conf.getCSBookingManager()
Beispiel #23
0
    def _checkParams(self):
        ConferenceModifBase._checkParams(self)

        self.newEmailAddress = self._params["value"]
        self.spkId = self._params["spkId"]
Beispiel #24
0
    def _checkParams(self):
        ConferenceModifBase._checkParams(self)

        self.newEmailAddress = self._params['value']
        self.spkId = self._params['spkId']
Beispiel #25
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self.contList = self._params['contList']
     self.userId = self._params['userId']
Beispiel #26
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._CSManager = Catalog.getIdx("cs_bookingmanager_conference").get(
         self._conf.getId())
Beispiel #27
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._event = self._conf.as_event
     self._confPaperReview = self._conf.getConfPaperReview()
Beispiel #28
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     ReportNumberRemove._checkParams(self)
Beispiel #29
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._confPaperReview = self._conf.getConfPaperReview()
     self._confAbstractReview = self._conf.getConfAbstractReview()
Beispiel #30
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(
         self)  #sets self._target = self._conf = the Conference object
     self._checkCollaborationEnabled()
     self._CSBookingManager = self._conf.getCSBookingManager()
Beispiel #31
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self.contList = self._params['contList']
     self.userId = self._params['userId']
Beispiel #32
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._CSManager = self._conf.getCSBookingManager()
Beispiel #33
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self) #sets self._target = self._conf = the Conference object
     self._CSBookingManager = Catalog.getIdx("cs_bookingmanager_conference").get(self._conf.getId())
Beispiel #34
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     pm = ParameterManager(self._params)
     self.fieldId = pm.extract("id", pType=str, allowEmpty=False)
Beispiel #35
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._confPaperReview = self._conf.getConfPaperReview()
     self._confAbstractReview = self._conf.getConfAbstractReview()
Beispiel #36
0
 def _checkParams(self):
     ConferenceModifBase._checkParams(self)
     self._confReview = self._conf.getConfReview()