예제 #1
0
	def get_tags_cloud(self, onlypublic=False, limit=1):
		""" 
		Tag cloud data
		2015-03-17: updated - now this is just a wrapper on the Tag method
		"""		
		
		return Tag.tagsListPerUser(self.user, onlyPublic=onlypublic, count_fragments=True, count_limit=limit)
예제 #2
0
	def get_tags(self, onlypublic=False, count=False):
		""" 
		Get all Tags for a given user
		2015-02-15: updated 
		2015-03-17: updated
		"""				
		return Tag.tagsListPerUser(self.user, onlyPublic=onlypublic, totcount=count)