From c2a44e53be2034959405d8954ceff6856e8fc00b Mon Sep 17 00:00:00 2001 From: Aaron Cohen Date: Sat, 22 Sep 2012 21:35:07 -0700 Subject: [PATCH] Removing extraneous comments --- lib/pygazelle/user.py | 109 ------------------------------------------ 1 file changed, 109 deletions(-) diff --git a/lib/pygazelle/user.py b/lib/pygazelle/user.py index f70c417d..8d191107 100644 --- a/lib/pygazelle/user.py +++ b/lib/pygazelle/user.py @@ -106,112 +106,3 @@ class User(object): def __repr__(self): return "User: %s - ID: %s" % (self.username, self.id) - -#URL: -#ajax.php?action=usersearch -#Argument: -#search - The search term. -#{ -# "status": "success", -# "response": { -# "currentPage": 1, -# "pages": 1, -# "results": [ -# { -# "userId": 469, -# "username": "dr4g0n", -# "donor": true, -# "warned": false, -# "enabled": true, -# "class": "VIP" -# }, -# // ... -# ] -# } -#} - -#URL: -#ajax.php?action=user -# -#Arguments: -#id - id of the user to display -# -#Response format: -#{ -# "status": "success", -# "response": { -# "username": "xxxx", -# "avatar": "http://asdf.com/asdf.png", -# "isFriend": false, -# "profileText": "", -# "stats": { -# "joinedDate": "2007-10-28 14:26:12", -# "lastAccess": "2012-08-09 00:17:52", -# "uploaded": 585564424629, -# "downloaded": 177461229738, -# "ratio": 3.3, -# "requiredRatio": 0.6 -# }, -# "ranks": { -# "uploaded": 98, -# "downloaded": 95, -# "uploads": 85, -# "requests": 0, -# "bounty": 79, -# "posts": 98, -# "artists": 0, -# "overall": 85 -# }, -# "personal": { -# "class": "VIP", -# "paranoia": 0, -# "paranoiaText": "Off", -# "donor": true, -# "warned": false, -# "enabled": true, -# "passkey": "31d59d20ac9233bf2038e35e72c4d61e" -# }, -# "community": { -# "posts": 863, -# "torrentComments": 13, -# "collagesStarted": 0, -# "collagesContrib": 0, -# "requestsFilled": 0, -# "requestsVoted": 13, -# "perfectFlacs": 2, -# "uploaded": 29, -# "groups": 14, -# "seeding": 309, -# "leeching": 0, -# "snatched": 678, -# "invited": 7 -# } -# } -#} - -#URL: -#ajax.php?action=index -# -#Arguments: None -#{ -# "status": "success", -# "response": { -# "username": "xxxx", -# "id": 0000, -# "authkey": "redacted", -# "passkey": "redacted", -# "notifications": { -# "messages": 0, -# "notifications": 9000, -# "newAnnouncement": false, -# "newBlog": false -# }, -# "userstats": { -# "uploaded": 585564424629, -# "downloaded": 177461229738, -# "ratio": 3.29, -# "requiredratio": 0.6, -# "class": "VIP" -# } -# } -#}