コード例 #1
0
ファイル: epayment.py プロジェクト: lukasnellen/indico
 def getLocator(self):
     """Gives back (Locator) a globaly unique identification encapsulated in 
         a Locator object for the RegistrationForm instance """
     if self.getConference() == None:
         return Locator()
     lconf = self.getConference().getLocator()
     return lconf
コード例 #2
0
ファイル: booking.py プロジェクト: lukasnellen/indico
 def getLocator(self):
     """Gives back (Locator) a globally unique identification encapsulated in 
         a Locator object for the booking instance """
     if self.getConference() == None:
         return Locator()
     lconf = self.getConference().getLocator()
     lconf["bookingId"] = self.getId()
     return lconf
コード例 #3
0
 def getLocator(self):
     """
     FINAL (not intented to be overriden)
     Returns a globaly unique identification encapsulated in a Locator object
     """
     owner = self.getOwner()
     if owner:
         loc = owner.getLocator()
     else:
         from MaKaC.common.Locators import Locator
         loc = Locator()
     loc["roomLocation"] = self.locationName
     loc["roomID"] = self.id
     return loc
コード例 #4
0
 def getLocator(self):
     d = Locator()
     if self.id is not None:
         d['blockingId'] = self.id
     return d
コード例 #5
0
 def getLocator(self):
     d = Locator()
     d["roomMapperId"] = self.getId()
     return d
コード例 #6
0
 def getLocator(self):
     d = Locator()
     if self.user:
         d["userId"] = self.user.id
     return d
コード例 #7
0
 def getLocator(self):
     d = Locator()
     d['locationId'] = self.name
     return d
コード例 #8
0
ファイル: legacy.py プロジェクト: wtakase/indico
 def getLocator(self):
     return Locator(groupId=self.id)
コード例 #9
0
ファイル: domain.py プロジェクト: arturodr/indico
 def getLocator(self):
     d = Locator()
     d["domainId"] = self.getId()
     return d
コード例 #10
0
 def getLocator(self):
     locator = Locator()
     locator['roomLocation'] = self.location_name
     locator['resvID'] = self.id
     return locator
コード例 #11
0
 def getLocator(self):
     d = Locator()
     d["locationId"] = self.friendlyName
     return d
コード例 #12
0
ファイル: epayment.py プロジェクト: pferreir/indico-backup
 def getLocator(self):
     if self.getConference() == None:
         return Locator()
     lconf = self.getConference().getLocator()
     lconf["paymentMethodName"] = self.getName()
     return lconf
コード例 #13
0
 def getLocator(self):
     """Gives back (Locator) a globaly unique identification encapsulated in
         a Locator object for the conference instance """
     d = Locator()
     d["confId"] = self.id
     return d
コード例 #14
0
ファイル: base.py プロジェクト: lukasnellen/indico
 def getLocator(self):
     l = Locator()
     l["pluginType"] = self.getName()
     return l