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