コード例 #1
0
	def getPostalCode(self):
		"""
		Get the postalcode parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'postalcode')
コード例 #2
0
	def getSubLocality(self):
		"""
		Get the subLocality parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'subLocality')
コード例 #3
0
	def getSubAdministrativeArea(self):
		"""
		Get the subAdministrativeArea parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'subAdministrativeArea')
コード例 #4
0
	def get(self):
		self.execute(self.getUsername(),self.getPassword(),util.tornadoGetArg(self,"newPassword"))
コード例 #5
0
	def getSubThoroughfare(self):
		"""
		Get the subThoroughfare parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'subThoroughfare')
コード例 #6
0
	def getUsername(self):
		"""
		Shortcut to get the username parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'username')
コード例 #7
0
	def getLimit(self):
		"""
		Shortcut to get the limit parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"limit",25)
コード例 #8
0
	def getFiletype(self):
		"""
		Shortcut to get the upload file type.
		"""
		return util.tornadoGetArg(self,"filetype",None)
コード例 #9
0
	def getImageName(self):
	    """
	    Shortcut to get the imageName value.
	    """
	    return util.tornadoGetArg(self,"imageName",None)
コード例 #10
0
	def getLongitude(self):
		"""
		Shortcut to get the longitude parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"longitude",None)
コード例 #11
0
	def getOrientation(self):
		"""
		Shortcut to get the orientation parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"orientation",None)
コード例 #12
0
	def getRating(self):
		"""
		Shortcut to get the rating parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"rating",0)
コード例 #13
0
	def getTagId(self):
		"""
		Shortcut to get the tagId parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"tagId")
コード例 #14
0
	def getQuery(self):
		"""
		Shortcut to get the query parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"query")
コード例 #15
0
	def getCountry(self):
		"""
		Get the country parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'country')
コード例 #16
0
	def getLargeFilename(self):
		"""
		Shortcut to get the large filename record.
		"""
		return util.tornadoGetArg(self,"filename",None)
コード例 #17
0
	def getEmail(self):
		"""
		Shortcut to get the email parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'email')
コード例 #18
0
	def getThumbFilename(self):
		"""
		Shortcut to get the thumb filaname record.
		"""
		return util.tornadoGetArg(self,"thumbFilename",None)
コード例 #19
0
	def getPassword(self):
		"""
		Shortcut to get the password parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,'password')
コード例 #20
0
	def getOffset(self):
		"""
		Shortcut to get the offset parameter out of request arguments.
		"""
		return util.tornadoGetArg(self,"offset",0)