diff --git a/test/IntegrationTest.py b/test/IntegrationTest.py deleted file mode 100644 index 9183c769..00000000 --- a/test/IntegrationTest.py +++ /dev/null @@ -1,621 +0,0 @@ -#!/bin/env python - -import re -import time -import sys -import httplib -import base64 - -from github import Github - -class RecordReplayException( Exception ): - pass - -class RecordingHttpsConnection: - class HttpResponse( object ): - def __init__( self, file, res ): - self.status = res.status - self.__headers = res.getheaders() - self.__output = res.read() - file.write( str( self.status ) + "\n" ) - file.write( str( self.__headers ) + "\n" ) - file.write( str( self.__output ) + "\n" ) - - def getheaders( self ): - return self.__headers - - def read( self ): - return self.__output - - __realHttpsConnection = httplib.HTTPSConnection - - def __init__( self, file, *args, **kwds ): - self.__file = file - self.__cnx = self.__realHttpsConnection( *args, **kwds ) - - def request( self, verb, url, input, headers ): - print verb, url - self.__cnx.request( verb, url, input, headers ) - del headers[ "Authorization" ] # Do not let sensitive info in git :-p - self.__file.write( verb + " " + url + " " + str( headers ) + " " + input + "\n" ) - - def getresponse( self ): - return RecordingHttpsConnection.HttpResponse( self.__file, self.__cnx.getresponse() ) - - def close( self ): - self.__file.write( "\n" ) - return self.__cnx.close() - -class ReplayingHttpsConnection: - class HttpResponse( object ): - def __init__( self, file ): - self.status = int( file.readline().strip() ) - self.__headers = eval( file.readline().strip() ) - self.__output = file.readline().strip() - - def getheaders( self ): - return self.__headers - - def read( self ): - return self.__output - - def __init__( self, file ): - self.__file = file - - def request( self, verb, url, input, headers ): - del headers[ "Authorization" ] - expectation = self.__file.readline().strip() - while expectation.startswith( "#" ): - self.__file.readline() - self.__file.readline() - self.__file.readline() - self.__file.readline() - expectation = self.__file.readline().strip() - if expectation != verb + " " + url + " " + str( headers ) + " " + input: - print "Expected [", expectation, "] but got [", verb + " " + url + " " + str( headers ) + " " + input, "]" - raise RecordReplayException( "This test has been changed since last record. Please re-run this script with argument '--record'" ) - - def getresponse( self ): - return ReplayingHttpsConnection.HttpResponse( self.__file ) - - def close( self ): - self.__file.readline() - -class IntegrationTest: - cobayeUser = "Lyloa" - cobayeOrganization = "BeaverSoftware" - - def main( self, argv ): - record = False - if len( argv ) >= 1: - if argv[ 0 ] == "--record": - argv = argv[ 1: ] - record = True - elif argv[ 0 ] == "--list": - print "List of available tests:" - print "\n".join( self.listTests() ) - return - - if record: - print "Record mode: this script is really going to do requests to github.com" - else: - print "Replay mode: this script will use requests to and replies from github.com recorded in previous runs in record mode" - - if len( argv ) == 0: - tests = self.listTests() - else: - tests = argv - self.runTests( tests, record ) - - # if self.succeeded: - # self.analyseCoverage() - - def prepareRecord( self, test ): - self.avoidError500FromGithub = lambda: time.sleep( 1 ) - try: - import GithubCredentials - self.g = Github( GithubCredentials.login, GithubCredentials.password ) - self.__file = open( self.__fileName( test ), "w" ) - httplib.HTTPSConnection = lambda *args, **kwds: RecordingHttpsConnection( self.__file, *args, **kwds ) - except ImportError: - raise RecordReplayException( textwrap.dedent( """\ - Please create a 'GithubCredentials.py' file containing:" - login = ''" - password = ''""" ) ) - - def prepareReplay( self, test ): - self.avoidError500FromGithub = lambda: 0 - try: - self.__file = None - self.__file = open( self.__fileName( test ) ) - httplib.HTTPSConnection = lambda *args, **kwds: ReplayingHttpsConnection( self.__file ) - self.g = Github( "login", "password" ) - except IOError: - raise RecordReplayException( "This test has never been recorded. Please re-run this script with argument '--record'" ) - - def __fileName( self, test ): - return "ReplayDataForIntegrationTest/" + test + ".txt" - - def listTests( self ): - return [ f[ 4: ] for f in dir( self ) if f.startswith( "test" ) ] - - def runTests( self, tests, record ): - self.succeeded = True - for test in tests: - print - print test - print "=" * len( test ) - try: - if record: - self.prepareRecord( test ) - else: - self.prepareReplay( test ) - getattr( self, "test" + test )() - if not record: - nextLine = self.__file.readline() - while nextLine.startswith( "#" ): - self.__file.readline() - self.__file.readline() - self.__file.readline() - self.__file.readline() - nextLine = self.__file.readline() - if nextLine: - print nextLine[ : 100 ] - raise RecordReplayException( "This test has been changed since last record. Please re-run this script with argument '--record'" ) - except RecordReplayException, e: - print "*" * len( str( e ) ) - print e - print "*" * len( str( e ) ) - self.succeeded = False - finally: - if self.__file is not None: - self.__file.close() - - def analyseCoverage( self ): - coveredUrls = dict() - for test in self.listTests(): - with open( self.__fileName( test ) ) as file: - requests = [ line.strip() for line in file.readlines() ][ 0 : : 5 ] - for request in requests: - verb, url = request.split( " " )[ 0 : 2 ] - if url not in coveredUrls: - coveredUrls[ url ] = set() - coveredUrls[ url ].add( verb ) - - uncoveredMethods = set() - uncoveredApis = set() - with open( "ReferenceOfApis.md" ) as file: - for line in file.readlines(): - line = line.strip() - if line.startswith( "API" ): - currentApi = line[ 5 : -1 ] - apiRegex = re.sub( ":\w+", "\w+", currentApi ) - if line.startswith( "* " ): - verb = line[ 2 : line.find( ":" ) ] - for url, verbs in coveredUrls.iteritems(): - if re.match( apiRegex, url ) and verb in verbs: - break - else: - if "`" in line: - uncoveredMethods.add( line[ line.find( "`" ) + 1 : -1 ] ) - else: - uncoveredApis.add( verb + " " + currentApi ) - - if len( uncoveredMethods ) != 0: - print - header = "Not covered (" + str( len( uncoveredMethods ) ) + ")" - print header - print "=" * len( header ) - print "\n".join( sorted( uncoveredMethods ) ) - - if len( uncoveredApis ) != 0: - print - header = "Not implemented (" + str( len( uncoveredApis ) ) + ")" - print header - print "=" * len( header ) - print "\n".join( sorted( uncoveredApis ) ) - - def testAuthenticatedUserDetails( self ): - u = self.g.get_user() - self.printList( "Organizations", u.get_orgs(), lambda o: o.login ) - - def testColaborators( self ): - r = self.g.get_user().get_repo( "TestPyGithub" ) - cobaye = self.g.get_user( self.cobayeUser ) - self.printList( "Collaborators", r.get_collaborators(), lambda m: m.login ) - r.add_to_collaborators( cobaye ) - assert r.has_in_collaborators( cobaye ) - self.printList( "Collaborators", r.get_collaborators(), lambda m: m.login ) - r.remove_from_collaborators( cobaye ) - assert not r.has_in_collaborators( cobaye ) - self.printList( "Collaborators", r.get_collaborators(), lambda m: m.login ) - - def testCommentCommit( self ): - r = self.g.get_user().get_repo( "TestPyGithub" ) - c = r.get_commits()[ 0 ] - self.printList( "Comments", c.get_comments(), lambda c: c.body ) - com1 = c.create_comment( "Comment created by PyGithub" ) - self.printList( "Comments", c.get_comments(), lambda c: c.body ) - com2 = c.create_comment( "Comment also created by PyGithub", path = "ReadMe.md", line = 1 ) - self.printList( "Comments", c.get_comments(), lambda c: c.body ) - com2.delete() - com1.edit( body = "Comment edited by PyGithub" ) - self.printList( "Comments", c.get_comments(), lambda c: c.body ) - - def testCreateForkForOrganization( self ): - o = self.g.get_organization( self.cobayeOrganization ) - r = self.g.get_user().get_repo( "TestPyGithub" ) - rf = o.create_fork( r ) - print r.owner.login + "/" + r.name, "->", rf.owner.login + "/" + rf.name - - def testCreateRepoForOrganization( self ): - o = self.g.get_organization( self.cobayeOrganization ) - self.printList( "Repos", o.get_repos(), lambda r: r.name ) - r = o.create_repo( "CreatedByPyGithub", has_wiki = False ) - self.printList( "Repos", o.get_repos(), lambda r: r.name ) - - def testCreateRepoForUser( self ): - u = self.g.get_user() - self.printList( "Repos", u.get_repos(), lambda r: r.name ) - r = u.create_repo( "CreatedByPyGithub", has_wiki = False ) - self.printList( "Repos", u.get_repos(), lambda r: r.name ) - - def testDownloads( self ): - r = self.g.get_user().get_repo( "TestPyGithub" ) - self.printList( "Downloads", r.get_downloads(), lambda d: d.name ) - d = r.create_download( "DownloadCreatedByPyGithub.txt", 1024 ) - self.printList( "Downloads", r.get_downloads(), lambda d: d.name ) - sameDownload = r.get_download( d.id ) - sameDownload.delete() - self.printList( "Downloads", r.get_downloads(), lambda d: d.name ) - - def testEditAuthenticatedUser( self ): - u = self.g.get_user() - originalName = u.name - print u.name - u.edit( name = u.name + " (edited by PyGithub)" ) - print u.name - u.edit( name = originalName ) - print u.name - - def testEditOrganization( self ): - o = self.g.get_organization( self.cobayeOrganization ) - originalName = o.name - print o.name - o.edit( name = str( o.name ) + " (edited by PyGithub)" ) - print o.name - o.edit( name = originalName ) - print o.name - - def testEditOrganizationTeamAndMembers( self ): - o = self.g.get_organization( self.cobayeOrganization ) - r = o.get_repo( "TestPyGithub" ) - - self.printList( "Teams", o.get_teams(), lambda t: t.name ) - t = o.create_team( "PyGithubTesters" ) - t.edit( "PyGithubTesters", permission = "push" ) - self.printList( "Teams", o.get_teams(), lambda t: t.name ) - - u = self.g.get_user( self.cobayeUser ) - - self.printList( "Team members", t.get_members(), lambda m: m.login ) - self.printList( "Team repos", t.get_repos(), lambda r: r.name ) - assert not t.has_in_repos( r ) - assert not t.has_in_members( u ) - t.add_to_members( u ) - t.add_to_repos( r ) - assert t.has_in_repos( r ) - assert t.has_in_members( u ) - self.printList( "Team members", t.get_members(), lambda m: m.login ) - self.printList( "Team repos", t.get_repos(), lambda r: r.name ) - - self.printList( "Public members", o.get_public_members(), lambda m: m.login ) - o.add_to_public_members( u ) - assert o.has_in_public_members( u ) - self.printList( "Public members", o.get_public_members(), lambda m: m.login ) - o.remove_from_public_members( u ) - assert not o.has_in_public_members( u ) - self.printList( "Public members", o.get_public_members(), lambda m: m.login ) - - self.printList( "Members", o.get_members(), lambda m: m.login ) - assert o.has_in_members( u ) - o.remove_from_members( u ) - assert not o.has_in_members( u ) - self.printList( "Members", o.get_members(), lambda m: m.login ) - - self.printList( "Team members", t.get_members(), lambda m: m.login ) - self.printList( "Team repos", t.get_repos(), lambda r: r.name ) - t.remove_from_members( u ) - t.remove_from_repos( r ) - assert not t.has_in_repos( r ) - assert not t.has_in_members( u ) - self.printList( "Team members", t.get_members(), lambda m: m.login ) - self.printList( "Team repos", t.get_repos(), lambda r: r.name ) - - t.delete() - self.printList( "Teams", o.get_teams(), lambda t: t.name ) - - def testEvents( self ): - self.printList( "User events", self.g.get_user( self.cobayeUser ).get_events(), lambda e: e.type ) - self.printList( "User public events", self.g.get_user( self.cobayeUser ).get_public_events(), lambda e: e.type ) - self.printList( "User public received events", self.g.get_user( self.cobayeUser ).get_public_received_events(), lambda e: e.type ) - self.printList( "User received events", self.g.get_user( self.cobayeUser ).get_received_events(), lambda e: e.type ) - - self.printList( "Organization events", self.g.get_organization( self.cobayeOrganization ).get_events(), lambda e: e.type ) - - self.printList( "User events", self.g.get_user().get_events(), lambda e: e.type ) - o = self.g.get_organization( self.cobayeOrganization ) - self.printList( "Organization events", self.g.get_user().get_organization_events( o ), lambda e: e.type ) - - self.printList( "Repo events", self.g.get_user().get_repo( "TestPyGithub" ).get_events(), lambda e: e.type ) - self.printList( "Repo issues events", self.g.get_user().get_repo( "TestPyGithub" ).get_issues_events(), lambda e: e.event ) - print self.g.get_user().get_repo( "TestPyGithub" ).get_issues_event( 10693379 ).event - self.printList( "Repo network events", self.g.get_user().get_repo( "TestPyGithub" ).get_network_events(), lambda e: e.type ) - - self.printList( "Issue events", self.g.get_user().get_repo( "TestPyGithub" ).get_issue( 23 ).get_events(), lambda e: e.event ) - - def testFollow( self ): - cobaye = self.g.get_user( self.cobayeUser ) - u = self.g.get_user() - u.remove_from_following( cobaye ) - assert not u.has_in_following( cobaye ) - u.add_to_following( cobaye ) - assert u.has_in_following( cobaye ) - self.printList( "Following", u.get_following(), lambda f: f.login ) - self.printList( "Followers", u.get_followers(), lambda f: f.login ) - - def testGists( self ): - u = self.g.get_user() - self.printList( "Gists", u.get_gists(), lambda g: g.description ) - g = u.create_gist( public = True, description = "Gist created by PyGithub", files = { "foo.bar": { "content": "This gist was created by PyGithub" } } ) - self.printList( "Gists", u.get_gists(), lambda g: g.description ) - g.edit( description = "Gist edited by PyGithub" ) - self.printList( "Gists", u.get_gists(), lambda g: g.description ) - - self.printList( "Starred gists", u.get_starred_gists(), lambda g: g.description ) - g.set_starred() - assert g.is_starred() - self.printList( "Starred gists", u.get_starred_gists(), lambda g: g.description ) - g.reset_starred() - self.printList( "Starred gists", u.get_starred_gists(), lambda g: g.description ) - - self.printList( "Gist comments", g.get_comments(), lambda c: c.body ) - c = g.create_comment( "Comment created by PyGithub" ) - self.printList( "Gist comments", g.get_comments(), lambda c: c.body ) - c.edit( "Comment edited by PyGithub" ) - self.printList( "Gist comments", g.get_comments(), lambda c: c.body ) - sameComment = g.get_comment( c.id ) - c.delete() - self.printList( "Gist comments", g.get_comments(), lambda c: c.body ) - - otherGist = self.g.get_gist( 1965703 ).create_fork() # Origin gist picked up randomly - self.printList( "Gists", u.get_gists(), lambda g: g.id ) - otherGist.delete() - self.printList( "Gists", u.get_gists(), lambda g: g.description ) - - g.delete() - self.printList( "Gists", u.get_gists(), lambda g: g.description ) - - def testGistsAll( self ): - self.printList( "Gists", self.g.get_gists(), lambda g: g.description ) - - # @todo custom url/repos/BeaverSoftware/TestPyGithub/git/refs/heads/master instead of /repos/BeaverSoftware/TestPyGithub/git_refs/refs/heads/master - # def testGitObjects( self ): - # o = self.g.get_organization( self.cobayeOrganization ) - # r = o.get_repo( "TestPyGithub" ) - - # masterRef = r.get_git_ref( "refs/heads/master" ) - # masterCommit = r.get_git_commit( masterRef.object[ "sha" ] ) - # masterTree = r.get_git_tree( masterCommit.tree.sha ) - # readmeBlob = None - # for element in masterTree.tree: - # if element[ "path" ] == "ReadMe.md": - # readmeBlob = r.get_git_blob( element[ "sha" ] ) - # break - - # blob = r.create_git_blob( "This blob was created by PyGithub", encoding = "latin1" ) - # tree = r.create_git_tree( [ { "path": "foo.bar", "mode": "100644", "type": "blob", "sha": blob.sha }, { "path": "ReadMe.md", "mode": "100644", "type": "blob", "sha": readmeBlob.sha } ] ) - # commit = r.create_git_commit( "This commit was created by PyGithub", tree.sha, [ masterCommit.sha ] ) - # r.create_git_ref( "refs/heads/previous_master", masterRef.object[ "sha" ] ) - # masterRef.edit( commit.sha ) - - # tag = r.create_git_tag( "tagCreatedByPyGithub", "This tag was created by PyGithub", commit.sha, "commit" ) - # r.create_git_ref( "refs/tags/tagCreatedByPyGithub", tag.sha ) - # reTag = r.get_git_tag( tag.sha ) - - # def testGitObjectsAlternative( self ): - # o = self.g.get_organization( self.cobayeOrganization ) - # r = o.get_repo( "TestPyGithub" ) - - # masterRef = r.get_git_ref( "refs/heads/master" ) - # masterCommit = r.get_git_commit( masterRef.object[ "sha" ] ) - # masterTree = r.get_git_tree( masterCommit.tree.sha, recursive = True ) - - # blob = r.create_git_blob( "This blob was also created by PyGithub", encoding = "latin1" ) - # tree = r.create_git_tree( [ { "path": "new.bar", "mode": "100644", "type": "blob", "sha": blob.sha } ], base_tree = masterTree.sha ) - - def testHooks( self ): - u = self.g.get_user() - r = u.get_repo( "TestPyGithub" ) - - self.printList( "Hooks", r.get_hooks(), lambda h: h.name + str( h.config ) ) - h = r.create_hook( "web", { "url": "http://www.invalid.org" } ) - self.printList( "Hooks", r.get_hooks(), lambda h: h.name + str( h.config ) ) - h.edit( "web", { "url": "http://www.postbin.org/w5cgjr" } ) - self.printList( "Hooks", r.get_hooks(), lambda h: h.name + str( h.config ) ) - - sameHook = r.get_hook( h.id ) - - h.test() - - h.delete() - self.printList( "Hooks", r.get_hooks(), lambda h: h.name + str( h.config ) ) - - ### @todo /repos/jacquev6/TestPyGithub/issues/comments/4462119 instead of /repos/jacquev6/TestPyGithub/issues/27/comments/4462119 => quite hard... maybe i.get_comment should be replaced by r.get_issue_comment - # def testIssuesAndMilestones( self ): - # u = self.g.get_user() - # r = u.get_repo( "TestPyGithub" ) - - # self.printList( "Issues", r.get_issues(), lambda i: i.title ) - # i = r.create_issue( "Issue created by PyGithub" ) - # self.printList( "Issues", r.get_issues(), lambda i: i.title ) - # i.edit( body = "Issue edited by PyGithub" ) - - # self.printList( "Comments on issue", i.get_comments(), lambda c: c.body ) - # c = i.create_comment( "Comment created by PyGithub" ) - # self.printList( "Comments on issue", i.get_comments(), lambda c: c.body ) - # c.edit( "Comment edited by PyGithub" ) - # sameComment = i.get_comment( c.id ) - # self.printList( "Comments on issue", i.get_comments(), lambda c: c.body ) - # c.delete() - # self.printList( "Comments on issue", i.get_comments(), lambda c: c.body ) - - # self.printList( "Milestones", r.get_milestones(), lambda m: m.title ) - # m = r.create_milestone( "Milestone created by PyGithub" ) - # self.printList( "Milestones", r.get_milestones(), lambda m: m.title ) - # m.edit( title = "Milestone edited by PyGithub" ) - # self.printList( "Milestones", r.get_milestones(), lambda m: m.title ) - - # self.printList( "Issues of milestone", r.get_issues( milestone = m.number ), lambda i: i.title ) - # i.edit( milestone = m.number ) - # self.printList( "Issues of milestone", r.get_issues( milestone = m.number ), lambda i: i.title ) - - # self.printList( "Repository labels", r.get_labels(), lambda l: l.name ) - # labelD = r.create_label( "D", "FF0000" ) - # self.printList( "Repository labels", r.get_labels(), lambda l: l.name ) - # labelD.edit( "Dada", "00FF00" ) - # self.printList( "Repository labels", r.get_labels(), lambda l: l.name ) - # labelD.delete() - # self.printList( "Repository labels", r.get_labels(), lambda l: l.name ) - - # labelA = r.get_label( "bug" ) - # labelB = r.get_label( "duplicate" ) - # labelC = r.get_label( "invalid" ) - - # self.printList( "Labels", i.get_labels(), lambda l: l.name ) - # i.set_labels( labelA, labelB ) - # self.printList( "Labels", i.get_labels(), lambda l: l.name ) - # i.remove_from_labels( labelB ) - # self.printList( "Labels", i.get_labels(), lambda l: l.name ) - # i.delete_labels() - # self.printList( "Labels", i.get_labels(), lambda l: l.name ) - # i.add_to_labels( labelB, labelC ) - # self.printList( "Labels", i.get_labels(), lambda l: l.name ) - - # self.printList( "Milestone labels", r.get_milestone( m.number ).get_labels(), lambda l: l.name ) - - # m.delete() - # self.printList( "Milestones", r.get_milestones(), lambda m: m.title ) - - def testIssuesForAuthenticatedUser( self ): - self.printList( "Issues", self.g.get_user().get_issues(), lambda i: i.title ) - - def testKeys( self ): - u = self.g.get_user() - self.printList( "Keys", u.get_keys(), lambda k: k.title ) - k = u.create_key( u.login + "@PyGithub", "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==" ) - self.printList( "Keys", u.get_keys(), lambda k: k.title ) - k.edit( title = u.login + "@PyGithub2" ) - k = u.get_key( k.id ) - self.printList( "Keys", u.get_keys(), lambda k: k.title ) - k.delete() - self.printList( "Keys", u.get_keys(), lambda k: k.title ) - - def testMergePullRequest( self ): - r = self.g.get_user().get_repo( "TestPyGithub" ) - p = r.get_pull( 26 ) - assert not p.is_merged() - p.merge() - assert p.is_merged() - - def testNamedUserDetails( self ): - u = self.g.get_user( "jacquev6" ) - print u.login, "(" + u.name + ") is from", u.location - self.printList( "Repos", u.get_repos(), lambda r: r.name ) - self.printList( "Followers", u.get_followers(), lambda m: m.login ) - self.printList( "Following", u.get_following(), lambda m: m.login ) - self.printList( "Watched", u.get_watched(), lambda r: r.owner.login + "/" + r.name ) - self.printList( "Organizations", u.get_orgs(), lambda o: o.login ) - self.printList( "Gists", u.get_gists(), lambda g: g.description ) - - def testOrganizationDetails( self ): - o = self.g.get_organization( "github" ) - print o.login, "(" + o.name + ") is in", o.location - - # @todo Two versions of Repository.create_pull - # def testPullRequest( self ): - # r = self.g.get_user().get_repo( "TestPyGithub" ) - # self.printList( "Pull requests", r.get_pulls(), lambda p: p.title ) - # p1 = r.create_pull( "Pull request created by PyGithub", "", "master", "BeaverSoftware:master" ) - # self.printList( "Pull requests", r.get_pulls(), lambda p: p.title ) - # p1.edit( state = "closed" ) - # self.printList( "Pull requests", r.get_pulls(), lambda p: p.title ) - # p2 = r.create_pull( "Pull request also created by PyGithub", "", "master", "BeaverSoftware:master" ) - # self.printList( "Pull requests", r.get_pulls(), lambda p: p.title ) - # self.printList( "Files", p2.get_files(), lambda f: f.filename ) - # self.printList( "Commits", p2.get_commits(), lambda c: c.commit.message ) - # self.printList( "Comments", p2.get_comments(), lambda c: c.body ) - # com = p2.create_comment( "Comment created by PyGithub", "e4e84560cb5e87f3c0e9f710dae1ddab0eef487b", "foo.bar", 1 ) - # self.printList( "Comments", p2.get_comments(), lambda c: c.body ) - # com.edit( body = "Comment edited by PyGithub" ) - # self.printList( "Comments", p2.get_comments(), lambda c: c.body ) - # sameCom = p2.get_comment( com.id ) - # sameCom.delete() - # self.printList( "Comments", p2.get_comments(), lambda c: c.body ) - # p2.edit( state = "closed" ) - # self.printList( "Pull requests", r.get_pulls(), lambda p: p.title ) - - def testRepositoryCompare( self ): - r = self.g.get_user().get_repo( "PyGithub" ) - print str( r.compare( "master", "develop" ) )[ :100 ] - - def testRepositoryDetails( self ): - r1 = self.g.get_user().get_repo( "PyGithub" ) - r2 = self.g.get_user().get_repo( "TestPyGithub" ) - self.printList( "Branches", r1.get_branches(), lambda b: b.name ) - self.printList( "Comments", r2.get_comments(), lambda c: c.body ) - r2.get_comment( r2.get_comments()[ 0 ].id ) - self.printList( "Contributors", r1.get_contributors(), lambda m: m.login ) - self.printList( "Forks", r2.get_forks(), lambda r: r.owner.login ) - print "Languages:", r1.get_languages() - self.printList( "Tags", r1.get_tags(), lambda t: t.name ) - self.printList( "Watchers", r1.get_watchers(), lambda m: m.login ) - - r3 = self.g.get_organization( "BeaverSoftware" ).get_repo( "TestPyGithub" ) - self.printList( "Teams", r3.get_teams(), lambda t: t.name ) - - # @todo Custom url - # def testRepositoryKeys( self ): - # r = self.g.get_user().get_repo( "TestPyGithub" ) - # self.printList( "Keys", r.get_keys(), lambda k: k.title ) - # k = r.create_key( "Key created by PyGithub", "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==" ) - # self.printList( "Keys", r.get_keys(), lambda k: k.title ) - # k.edit( "Key edited by PyGithub", "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==" ) - # self.printList( "Keys", r.get_keys(), lambda k: k.title ) - # sameKey = r.get_key( k.id ) - # sameKey.delete() - # self.printList( "Keys", r.get_keys(), lambda k: k.title ) - - def testWatch( self ): - r = self.g.get_user( "jacquev6" ).get_repo( "PyGithub" ) - u = self.g.get_user() - u.remove_from_watched( r ) - assert not u.has_in_watched( r ) - u.add_to_watched( r ) - assert u.has_in_watched( r ) - self.printList( "Watched", u.get_watched(), lambda r: r.name ) - - def testEmails( self ): - u = self.g.get_user() - self.printList( "Emails", u.get_emails() ) - u.add_to_emails( "ab@xxx.com", "cd@xxx.com" ) - self.printList( "Emails", u.get_emails() ) - u.remove_from_emails( "ab@xxx.com", "cd@xxx.com" ) - self.printList( "Emails", u.get_emails() ) - - def printList( self, title, iterable, f = lambda x: x ): - printed = list( iterable ) - print title + ":", ", ".join( str( f( x ) ) for x in printed[ :10 ] ), "..." if len( printed ) > 10 else "" - -sys.setrecursionlimit( 50 ) -IntegrationTest().main( sys.argv[ 1: ] ) diff --git a/test/ReplayDataForIntegrationTest/AuthenticatedUserDetails.txt b/test/ReplayDataForIntegrationTest/AuthenticatedUserDetails.txt deleted file mode 100644 index 899acba9..00000000 --- a/test/ReplayDataForIntegrationTest/AuthenticatedUserDetails.txt +++ /dev/null @@ -1,5 +0,0 @@ -GET /user/orgs {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4935'), ('content-length', '262'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3454c1345755c67af87593d8c4c9f79d"'), ('date', 'Sun, 04 Mar 2012 09:31:50 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"login":"BeaverSoftware","url":"https://api.github.com/orgs/BeaverSoftware","id":1424031,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png"}] - diff --git a/test/ReplayDataForIntegrationTest/Colaborators.txt b/test/ReplayDataForIntegrationTest/Colaborators.txt deleted file mode 100644 index e768d406..00000000 --- a/test/ReplayDataForIntegrationTest/Colaborators.txt +++ /dev/null @@ -1,50 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4991'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"8516c4047fdb107d6a3ec08981b26671"'), ('date', 'Sun, 04 Mar 2012 08:21:36 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17432,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","public_gists":1,"public_repos":17,"hireable":false,"private_gists":2,"plan":{"private_repos":5,"collaborators":1,"name":"micro","space":614400},"blog":"http://vincent-jacques.net","location":"Paris, France","bio":"","collaborators":0,"company":"Criteo","total_private_repos":5,"url":"https://api.github.com/users/jacquev6","html_url":"https://github.com/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","owned_private_repos":5,"id":327146,"followers":12} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4990'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"14e49b73728e4b2ba7978b158e43208c"'), ('date', 'Sun, 04 Mar 2012 08:21:37 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","homepage":"http://vincent-jacques.net/PyGithub","mirror_url":null,"has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4989'), ('content-length', '554'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f7d3e93a234c3e0d389940339ef8ac34"'), ('date', 'Sun, 04 Mar 2012 08:21:37 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"User","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","following":0,"login":"Lyloa","blog":null,"public_gists":0,"location":"Paris","hireable":false,"company":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","bio":null,"url":"https://api.github.com/users/Lyloa","html_url":"https://github.com/Lyloa","created_at":"2011-10-16T14:36:46Z","name":"Lyloa","email":"nyu@lyloa.net","id":1131432,"public_repos":0,"followers":1} - -GET /repos/jacquev6/TestPyGithub/collaborators {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4988'), ('content-length', '298'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0f7fc68f68409b0b3c1fc6958ea0ad7b"'), ('date', 'Sun, 04 Mar 2012 08:21:38 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146}] - -PUT /repos/jacquev6/TestPyGithub/collaborators/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4987'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 08:21:39 GMT')] - - -GET /repos/jacquev6/TestPyGithub/collaborators/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4986'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 08:21:39 GMT')] - - -GET /repos/jacquev6/TestPyGithub/collaborators {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4985'), ('content-length', '590'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"04c1d43ae0dc4037aeb590f030dc5931"'), ('date', 'Sun, 04 Mar 2012 08:21:40 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"Lyloa","url":"https://api.github.com/users/Lyloa","id":1131432}] - -DELETE /repos/jacquev6/TestPyGithub/collaborators/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4984'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 08:21:40 GMT')] - - -GET /repos/jacquev6/TestPyGithub/collaborators/Lyloa {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4983'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Sun, 04 Mar 2012 08:21:41 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -GET /repos/jacquev6/TestPyGithub/collaborators {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4982'), ('content-length', '298'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0f7fc68f68409b0b3c1fc6958ea0ad7b"'), ('date', 'Sun, 04 Mar 2012 08:21:42 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146}] - diff --git a/test/ReplayDataForIntegrationTest/CommentCommit.txt b/test/ReplayDataForIntegrationTest/CommentCommit.txt deleted file mode 100644 index 291ed44b..00000000 --- a/test/ReplayDataForIntegrationTest/CommentCommit.txt +++ /dev/null @@ -1,55 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('content-length', '801'), ('x-ratelimit-remaining', '4952'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3b296e11a55f0739bb046fd278e27d36"'), ('date', 'Sun, 04 Mar 2012 08:35:53 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"public_repos":16,"type":"User","bio":"","collaborators":0,"created_at":"2010-07-09T06:10:06Z","location":"Paris, France","total_private_repos":5,"html_url":"https://github.com/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","plan":{"collaborators":1,"private_repos":5,"name":"micro","space":614400},"owned_private_repos":5,"public_gists":1,"company":"Criteo","followers":12,"email":"vincent@vincent-jacques.net","url":"https://api.github.com/users/jacquev6","private_gists":2,"following":24,"name":"Vincent Jacques","disk_usage":17432,"hireable":false,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"blog":"http://vincent-jacques.net","login":"jacquev6"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4951'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ca89234a5c95a785a9ca7428b08e52a8"'), ('date', 'Sun, 04 Mar 2012 08:35:53 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"mirror_url":null,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /repos/jacquev6/TestPyGithub/commits {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4950'), ('content-length', '1319'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"89ade3ce2474e34958117cbb4bb0ba6f"'), ('date', 'Sun, 04 Mar 2012 08:35:54 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"commit":{"message":"Readme","author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-02T23:43:05-08:00"},"tree":{"sha":"fb9dc597be6b32f6c2e095ca46e3e7fd57af3a5e","url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/trees/fb9dc597be6b32f6c2e095ca46e3e7fd57af3a5e"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-02T23:43:05-08:00"}},"author":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"parents":[],"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","committer":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}}] - -GET /repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4949'), ('content-length', '2800'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d93812aa84e0c340d80662e3b2bd1fa6"'), ('date', 'Sun, 04 Mar 2012 08:35:55 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-04T08:32:17Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","created_at":"2012-03-04T08:32:17Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","path":"ReadMe.md","line":1,"id":1039835,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:33:53Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","created_at":"2012-03-04T08:33:53Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839","path":"ReadMe.md","line":1,"id":1039839,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:34:49Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","created_at":"2012-03-04T08:34:49Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842","path":null,"line":null,"id":1039842,"body":"Comment created by PyGithub"},{"updated_at":"2012-03-04T08:34:50Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","created_at":"2012-03-04T08:34:50Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843","path":"ReadMe.md","line":1,"id":1039843,"body":"Comment also created by PyGithub"}] - -POST /repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea/comments {} {"body": "Comment created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4948'), ('content-length', '692'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"777c7cdfec791ab2c4c451e8c456866b"'), ('date', 'Sun, 04 Mar 2012 08:35:55 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845')] -{"updated_at":"2012-03-04T08:35:55Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","created_at":"2012-03-04T08:35:55Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","path":null,"line":null,"id":1039845,"body":"Comment created by PyGithub"} - -GET /repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea/comments {} null -200 -[('status', '200 OK'), ('content-length', '3493'), ('x-ratelimit-remaining', '4947'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"abaf49cbec981c0092d1fb3dc66ca2fc"'), ('date', 'Sun, 04 Mar 2012 08:35:56 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"created_at":"2012-03-04T08:32:17Z","path":"ReadMe.md","html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","body":"Comment also created by PyGithub","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","line":1,"position":null,"updated_at":"2012-03-04T08:32:17Z","id":1039835},{"created_at":"2012-03-04T08:33:53Z","path":"ReadMe.md","html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839","body":"Comment also created by PyGithub","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","line":1,"position":null,"updated_at":"2012-03-04T08:33:53Z","id":1039839},{"created_at":"2012-03-04T08:34:49Z","path":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842","body":"Comment created by PyGithub","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","line":null,"position":null,"updated_at":"2012-03-04T08:34:49Z","id":1039842},{"created_at":"2012-03-04T08:34:50Z","path":"ReadMe.md","html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843","body":"Comment also created by PyGithub","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","line":1,"position":null,"updated_at":"2012-03-04T08:34:50Z","id":1039843},{"created_at":"2012-03-04T08:35:55Z","path":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","body":"Comment created by PyGithub","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","line":null,"position":null,"updated_at":"2012-03-04T08:35:55Z","id":1039845}] - -POST /repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea/comments {} {"body": "Comment also created by PyGithub", "path": "ReadMe.md", "line": 1} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4946'), ('content-length', '701'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"92f86d0e24f5f91b29a21c3202fc52d9"'), ('date', 'Sun, 04 Mar 2012 08:35:57 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039846')] -{"updated_at":"2012-03-04T08:35:57Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039846","created_at":"2012-03-04T08:35:57Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039846","path":"ReadMe.md","line":1,"id":1039846,"body":"Comment also created by PyGithub"} - -GET /repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4945'), ('content-length', '4195'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"518bbf50ee3ba2d4d945e3acd5f6893d"'), ('date', 'Sun, 04 Mar 2012 08:35:57 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","updated_at":"2012-03-04T08:32:17Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","created_at":"2012-03-04T08:32:17Z","position":null,"path":"ReadMe.md","line":1,"id":1039835,"body":"Comment also created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839","updated_at":"2012-03-04T08:33:53Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","created_at":"2012-03-04T08:33:53Z","position":null,"path":"ReadMe.md","line":1,"id":1039839,"body":"Comment also created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842","updated_at":"2012-03-04T08:34:49Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","created_at":"2012-03-04T08:34:49Z","position":null,"path":null,"line":null,"id":1039842,"body":"Comment created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843","updated_at":"2012-03-04T08:34:50Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","created_at":"2012-03-04T08:34:50Z","position":null,"path":"ReadMe.md","line":1,"id":1039843,"body":"Comment also created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","updated_at":"2012-03-04T08:35:55Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","created_at":"2012-03-04T08:35:55Z","position":null,"path":null,"line":null,"id":1039845,"body":"Comment created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039846","updated_at":"2012-03-04T08:35:57Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039846","created_at":"2012-03-04T08:35:57Z","position":null,"path":"ReadMe.md","line":1,"id":1039846,"body":"Comment also created by PyGithub"}] - -DELETE /repos/jacquev6/TestPyGithub/comments/1039846 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4944'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 08:35:58 GMT')] - - -PATCH /repos/jacquev6/TestPyGithub/comments/1039845 {} {"body": "Comment edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4943'), ('content-length', '691'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"282c88301c6c5105e7f32ebb5b1f9df1"'), ('date', 'Sun, 04 Mar 2012 08:35:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"updated_at":"2012-03-04T08:35:59Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","created_at":"2012-03-04T08:35:55Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","path":null,"line":null,"id":1039845,"body":"Comment edited by PyGithub"} - -GET /repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4942'), ('content-length', '3492'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3c76a352d7afa4de2e354423d44f4b56"'), ('date', 'Sun, 04 Mar 2012 08:35:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-04T08:32:17Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","created_at":"2012-03-04T08:32:17Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","path":"ReadMe.md","line":1,"id":1039835,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:33:53Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","created_at":"2012-03-04T08:33:53Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839","path":"ReadMe.md","line":1,"id":1039839,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:34:49Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","created_at":"2012-03-04T08:34:49Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842","path":null,"line":null,"id":1039842,"body":"Comment created by PyGithub"},{"updated_at":"2012-03-04T08:34:50Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","created_at":"2012-03-04T08:34:50Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843","path":"ReadMe.md","line":1,"id":1039843,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:35:59Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","created_at":"2012-03-04T08:35:55Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","path":null,"line":null,"id":1039845,"body":"Comment edited by PyGithub"}] - diff --git a/test/ReplayDataForIntegrationTest/CreateForkForOrganization.txt b/test/ReplayDataForIntegrationTest/CreateForkForOrganization.txt deleted file mode 100644 index 7abd0442..00000000 --- a/test/ReplayDataForIntegrationTest/CreateForkForOrganization.txt +++ /dev/null @@ -1,20 +0,0 @@ -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4960'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"8290675d07eecaf4d9610721da1c1bf2"'), ('date', 'Sat, 03 Mar 2012 07:53:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"type":"Organization","total_private_repos":0,"following":0,"html_url":"https://github.com/BeaverSoftware","blog":null,"login":"BeaverSoftware","owned_private_repos":0,"billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"private_repos":0,"name":"free","space":307200},"public_gists":0,"location":"Paris, France","public_repos":1,"company":null,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","private_gists":0,"url":"https://api.github.com/orgs/BeaverSoftware","created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"collaborators":0,"id":1424031,"followers":0} - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4959'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"90e781e59d3daef52b36b404ee56f0ff"'), ('date', 'Sat, 03 Mar 2012 07:53:18 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17368,"type":"User","bio":"","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","total_private_repos":5,"following":24,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","public_gists":4,"owned_private_repos":5,"private_gists":2,"plan":{"private_repos":5,"name":"micro","collaborators":1,"space":614400},"location":"Paris, France","public_repos":17,"company":"Criteo","url":"https://api.github.com/users/jacquev6","html_url":"https://github.com/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","blog":"http://vincent-jacques.net","email":"vincent@vincent-jacques.net","collaborators":0,"hireable":false,"id":327146,"followers":12} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('content-length', '1066'), ('x-ratelimit-remaining', '4958'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b2d6ee284273f92a3ca25d2b305b3c6d"'), ('date', 'Sat, 03 Mar 2012 07:53:18 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"git_url":"git://github.com/jacquev6/TestPyGithub.git","homepage":"http://vincent-jacques.net/PyGithub","forks":1,"svn_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub","has_wiki":true,"language":null,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","open_issues":0,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","watchers":0,"pushed_at":"2012-03-03T07:43:16Z","description":"Guinea-pig for PyGithub testing","fork":false,"size":84,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:43:30Z","name":"TestPyGithub","private":false,"has_downloads":true,"id":3609314,"mirror_url":null,"has_issues":true,"master_branch":null} - -POST /repos/jacquev6/TestPyGithub/forks?org=BeaverSoftware {} null -202 -[('status', '202 Accepted'), ('x-ratelimit-remaining', '4957'), ('content-length', '3594'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ab518650c1254abf0bb465f76c723433"'), ('date', 'Sat, 03 Mar 2012 07:53:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","source":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","mirror_url":null,"id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"parent":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","mirror_url":null,"id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","organization":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"forks":0,"fork":true,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","mirror_url":null,"id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0} - diff --git a/test/ReplayDataForIntegrationTest/CreateRepoForOrganization.txt b/test/ReplayDataForIntegrationTest/CreateRepoForOrganization.txt deleted file mode 100644 index 6e61fd65..00000000 --- a/test/ReplayDataForIntegrationTest/CreateRepoForOrganization.txt +++ /dev/null @@ -1,20 +0,0 @@ -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4995'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"4e8827d67e3d9e14b05b3d393b68fdcb"'), ('date', 'Sun, 04 Mar 2012 08:17:12 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"type":"Organization","following":0,"html_url":"https://github.com/BeaverSoftware","login":"BeaverSoftware","public_gists":0,"blog":null,"total_private_repos":0,"private_gists":0,"collaborators":0,"owned_private_repos":0,"billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"name":"free","private_repos":0,"space":307200},"location":"Paris, France","company":null,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/orgs/BeaverSoftware","created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"id":1424031,"public_repos":2,"followers":0} - -GET /orgs/BeaverSoftware/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4994'), ('content-length', '2151'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b47d94ab3eb50cad006b9bfdb8025262"'), ('date', 'Sun, 04 Mar 2012 08:17:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-16T21:51:15Z","svn_url":"https://github.com/BeaverSoftware/FatherBeaver","fork":false,"git_url":"git://github.com/BeaverSoftware/FatherBeaver.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/BeaverSoftware/FatherBeaver","size":0,"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","ssh_url":"git@github.com:BeaverSoftware/FatherBeaver.git","clone_url":"https://github.com/BeaverSoftware/FatherBeaver.git","created_at":"2012-02-09T19:32:21Z","owner":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"name":"FatherBeaver","open_issues":0,"id":3400397,"description":"","watchers":2,"pushed_at":null},{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","fork":true,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","size":112,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","created_at":"2012-03-03T07:53:19Z","owner":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"name":"TestPyGithub","open_issues":0,"id":3609352,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T08:57:40Z"}] - -POST /orgs/BeaverSoftware/repos {} {"has_wiki": false, "name": "CreatedByPyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4993'), ('content-length', '1397'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"5209d4d802f3675ad41695562be67a36"'), ('date', 'Sun, 04 Mar 2012 08:17:14 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub')] -{"organization":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"mirror_url":null,"has_downloads":true,"homepage":null,"has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-03-04T08:17:14Z","svn_url":"https://github.com/BeaverSoftware/CreatedByPyGithub","fork":false,"git_url":"git://github.com/BeaverSoftware/CreatedByPyGithub.git","has_wiki":false,"language":null,"private":false,"html_url":"https://github.com/BeaverSoftware/CreatedByPyGithub","size":0,"url":"https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub","ssh_url":"git@github.com:BeaverSoftware/CreatedByPyGithub.git","clone_url":"https://github.com/BeaverSoftware/CreatedByPyGithub.git","created_at":"2012-03-04T08:17:14Z","owner":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"name":"CreatedByPyGithub","open_issues":0,"id":3616888,"description":null,"watchers":1,"pushed_at":null} - -GET /orgs/BeaverSoftware/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4992'), ('content-length', '3223'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"c9a3f6dbd4ef4baea140d60cfd872ed0"'), ('date', 'Sun, 04 Mar 2012 08:17:14 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":2,"pushed_at":null,"html_url":"https://github.com/BeaverSoftware/FatherBeaver","homepage":"","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-02-16T21:51:15Z","git_url":"git://github.com/BeaverSoftware/FatherBeaver.git","forks":1,"fork":false,"svn_url":"https://github.com/BeaverSoftware/FatherBeaver","language":null,"private":false,"size":0,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","created_at":"2012-02-09T19:32:21Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"FatherBeaver","clone_url":"https://github.com/BeaverSoftware/FatherBeaver.git","id":3400397,"ssh_url":"git@github.com:BeaverSoftware/FatherBeaver.git","description":"","open_issues":0},{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},{"watchers":1,"pushed_at":null,"html_url":"https://github.com/BeaverSoftware/CreatedByPyGithub","homepage":null,"has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-04T08:17:14Z","git_url":"git://github.com/BeaverSoftware/CreatedByPyGithub.git","forks":1,"fork":false,"svn_url":"https://github.com/BeaverSoftware/CreatedByPyGithub","language":null,"private":false,"size":0,"has_wiki":false,"url":"https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub","created_at":"2012-03-04T08:17:14Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"CreatedByPyGithub","clone_url":"https://github.com/BeaverSoftware/CreatedByPyGithub.git","id":3616888,"ssh_url":"git@github.com:BeaverSoftware/CreatedByPyGithub.git","description":null,"open_issues":0}] - diff --git a/test/ReplayDataForIntegrationTest/CreateRepoForUser.txt b/test/ReplayDataForIntegrationTest/CreateRepoForUser.txt deleted file mode 100644 index cb671f51..00000000 --- a/test/ReplayDataForIntegrationTest/CreateRepoForUser.txt +++ /dev/null @@ -1,15 +0,0 @@ -GET /user/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4998'), ('content-length', '22129'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"8e8b6b71981a00e862831f962c6d924d"'), ('date', 'Sun, 04 Mar 2012 08:17:09 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16},{"watchers":5,"pushed_at":"2012-03-03T15:18:59Z","html_url":"https://github.com/jacquev6/PyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T16:22:44Z","git_url":"git://github.com/jacquev6/PyGithub.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/PyGithub","language":"Python","private":false,"size":592,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/PyGithub","created_at":"2012-02-25T12:53:47Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"PyGithub","clone_url":"https://github.com/jacquev6/PyGithub.git","id":3544490,"ssh_url":"git@github.com:jacquev6/PyGithub.git","description":"Python library (soon) implementing the full Github API v3","open_issues":1},{"watchers":0,"pushed_at":"2012-02-07T20:28:28Z","html_url":"https://github.com/jacquev6/developer.github.com","homepage":"","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-20T12:43:58Z","git_url":"git://github.com/jacquev6/developer.github.com.git","forks":0,"fork":true,"svn_url":"https://github.com/jacquev6/developer.github.com","language":"Ruby","private":false,"size":124,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/developer.github.com","created_at":"2012-02-05T18:22:26Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"developer.github.com","clone_url":"https://github.com/jacquev6/developer.github.com.git","id":3361136,"ssh_url":"git@github.com:jacquev6/developer.github.com.git","description":"","open_issues":0},{"watchers":0,"pushed_at":null,"html_url":"https://github.com/jacquev6/InteractiveCommandLineProgram","homepage":"","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-02-20T12:44:15Z","git_url":"git://github.com/jacquev6/InteractiveCommandLineProgram.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/InteractiveCommandLineProgram","language":null,"private":false,"size":0,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/InteractiveCommandLineProgram","created_at":"2012-02-03T11:05:09Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"InteractiveCommandLineProgram","clone_url":"https://github.com/jacquev6/InteractiveCommandLineProgram.git","id":3343767,"ssh_url":"git@github.com:jacquev6/InteractiveCommandLineProgram.git","description":"","open_issues":0},{"watchers":0,"pushed_at":null,"html_url":"https://github.com/jacquev6/RecursiveDocument","homepage":"","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-02-20T12:44:53Z","git_url":"git://github.com/jacquev6/RecursiveDocument.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/RecursiveDocument","language":null,"private":false,"size":0,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/RecursiveDocument","created_at":"2012-02-03T11:03:53Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"RecursiveDocument","clone_url":"https://github.com/jacquev6/RecursiveDocument.git","id":3343759,"ssh_url":"git@github.com:jacquev6/RecursiveDocument.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2012-02-12T07:00:58Z","html_url":"https://github.com/jacquev6/ActionTree","homepage":"http://vincent-jacques.net/ActionTree","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-20T12:43:37Z","git_url":"git://github.com/jacquev6/ActionTree.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/ActionTree","language":"Python","private":false,"size":140,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/ActionTree","created_at":"2012-01-31T12:35:28Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"ActionTree","clone_url":"https://github.com/jacquev6/ActionTree.git","id":3314582,"ssh_url":"git@github.com:jacquev6/ActionTree.git","description":"Python library for parallel execution of (long) actions having mutual dependencies\n","open_issues":0},{"watchers":0,"pushed_at":"2012-01-29T21:36:10Z","html_url":"https://github.com/jacquev6/PyMockMockMock","homepage":"","has_downloads":true,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-20T12:44:28Z","git_url":"git://github.com/jacquev6/PyMockMockMock.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/PyMockMockMock","language":"Python","private":false,"size":352,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/PyMockMockMock","created_at":"2012-01-17T21:39:52Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"PyMockMockMock","clone_url":"https://github.com/jacquev6/PyMockMockMock.git","id":3203482,"ssh_url":"git@github.com:jacquev6/PyMockMockMock.git","description":"Python mocking library focusing on as-strict-and-explicit-as-needed definition of the mock behaviour","open_issues":0},{"watchers":0,"pushed_at":"2011-12-14T19:56:18Z","html_url":"https://github.com/jacquev6/RipMyMusic","homepage":"","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-02-20T12:43:03Z","git_url":"git://github.com/jacquev6/RipMyMusic.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/RipMyMusic","language":"Python","private":false,"size":260,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/RipMyMusic","created_at":"2011-12-12T18:27:10Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"RipMyMusic","clone_url":"https://github.com/jacquev6/RipMyMusic.git","id":2966372,"ssh_url":"git@github.com:jacquev6/RipMyMusic.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2011-12-07T20:11:17Z","html_url":"https://github.com/jacquev6/acme-public-website","homepage":"","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-20T12:43:32Z","git_url":"git://github.com/jacquev6/acme-public-website.git","forks":0,"fork":true,"svn_url":"https://github.com/jacquev6/acme-public-website","language":null,"private":false,"size":120,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/acme-public-website","created_at":"2011-12-07T20:00:40Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"acme-public-website","clone_url":"https://github.com/jacquev6/acme-public-website.git","id":2935252,"ssh_url":"git@github.com:jacquev6/acme-public-website.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2012-01-03T17:54:12Z","html_url":"https://github.com/jacquev6/CinePlanning","homepage":"CinePlanning","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-12T07:18:06Z","git_url":"git://github.com/jacquev6/CinePlanning.git","forks":0,"fork":false,"svn_url":"https://github.com/jacquev6/CinePlanning","language":"Python","private":true,"size":148,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/CinePlanning","created_at":"2011-10-21T16:52:28Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"CinePlanning","clone_url":"https://github.com/jacquev6/CinePlanning.git","id":2621677,"ssh_url":"git@github.com:jacquev6/CinePlanning.git","description":"","open_issues":0},{"watchers":1,"pushed_at":"2011-11-27T20:51:06Z","html_url":"https://github.com/jacquev6/C4Planner","homepage":"http://vincent-jacques.net/C4Planner","has_downloads":true,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-16T21:51:01Z","git_url":"git://github.com/jacquev6/C4Planner.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/C4Planner","language":"Python","private":false,"size":4716,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/C4Planner","created_at":"2011-08-24T08:30:55Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"C4Planner","clone_url":"https://github.com/jacquev6/C4Planner.git","id":2260441,"ssh_url":"git@github.com:jacquev6/C4Planner.git","description":"Caesar IV: anticipate your city","open_issues":0},{"watchers":0,"pushed_at":"2012-02-07T19:46:49Z","html_url":"https://github.com/jacquev6/Programming","homepage":"Programming","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-12T07:18:08Z","git_url":"git://github.com/jacquev6/Programming.git","forks":0,"fork":false,"svn_url":"https://github.com/jacquev6/Programming","language":"Python","private":true,"size":120,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/Programming","created_at":"2011-07-02T15:59:51Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"Programming","clone_url":"https://github.com/jacquev6/Programming.git","id":1988081,"ssh_url":"git@github.com:jacquev6/Programming.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2012-02-19T20:23:09Z","html_url":"https://github.com/jacquev6/vincent-jacques.net","homepage":"vincent-jacques.net","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-19T20:23:09Z","git_url":"git://github.com/jacquev6/vincent-jacques.net.git","forks":0,"fork":false,"svn_url":"https://github.com/jacquev6/vincent-jacques.net","language":"Python","private":true,"size":164,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/vincent-jacques.net","created_at":"2011-07-02T07:08:56Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"vincent-jacques.net","clone_url":"https://github.com/jacquev6/vincent-jacques.net.git","id":1986874,"ssh_url":"git@github.com:jacquev6/vincent-jacques.net.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2011-11-14T20:19:48Z","html_url":"https://github.com/jacquev6/Contests","homepage":"Contests","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-12T07:18:09Z","git_url":"git://github.com/jacquev6/Contests.git","forks":0,"fork":false,"svn_url":"https://github.com/jacquev6/Contests","language":"Python","private":true,"size":448,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/Contests","created_at":"2011-06-27T11:55:34Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"Contests","clone_url":"https://github.com/jacquev6/Contests.git","id":1959919,"ssh_url":"git@github.com:jacquev6/Contests.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2012-02-25T08:14:07Z","html_url":"https://github.com/jacquev6/Candidates","homepage":"","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-02-25T08:14:08Z","git_url":"git://github.com/jacquev6/Candidates.git","forks":0,"fork":false,"svn_url":"https://github.com/jacquev6/Candidates","language":"C++","private":true,"size":200,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/Candidates","created_at":"2011-04-09T18:24:08Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"Candidates","clone_url":"https://github.com/jacquev6/Candidates.git","id":1592290,"ssh_url":"git@github.com:jacquev6/Candidates.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2011-12-11T12:40:26Z","html_url":"https://github.com/jacquev6/Tests","homepage":"","has_downloads":true,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2011-12-11T12:40:26Z","git_url":"git://github.com/jacquev6/Tests.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/Tests","language":"C","private":false,"size":2928,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/Tests","created_at":"2011-03-28T20:24:02Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"Tests","clone_url":"https://github.com/jacquev6/Tests.git","id":1538471,"ssh_url":"git@github.com:jacquev6/Tests.git","description":"Various tests","open_issues":0},{"watchers":0,"pushed_at":"2011-11-11T21:07:56Z","html_url":"https://github.com/jacquev6/DrawTurksHead","homepage":"http://vincent-jacques.net/DrawTurksHead/","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":"master","updated_at":"2011-11-11T21:07:56Z","git_url":"git://github.com/jacquev6/DrawTurksHead.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/DrawTurksHead","language":"C++","private":false,"size":3208,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/DrawTurksHead","created_at":"2010-07-10T08:54:09Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"DrawTurksHead","clone_url":"https://github.com/jacquev6/DrawTurksHead.git","id":767403,"ssh_url":"git@github.com:jacquev6/DrawTurksHead.git","description":"A tool to draw Turk's Head Knots. Try it online","open_issues":0},{"watchers":0,"pushed_at":"2011-11-27T14:00:32Z","html_url":"https://github.com/jacquev6/DrawSyntax","homepage":"http://vincent-jacques.net/DrawSyntax/","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":"master","updated_at":"2011-11-27T14:00:34Z","git_url":"git://github.com/jacquev6/DrawSyntax.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/DrawSyntax","language":"C++","private":false,"size":1760,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/DrawSyntax","created_at":"2010-07-10T08:39:56Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"DrawSyntax","clone_url":"https://github.com/jacquev6/DrawSyntax.git","id":767392,"ssh_url":"git@github.com:jacquev6/DrawSyntax.git","description":"Draw syntax diagrams from EBNF grammars. API in C++ and Python. Try it online.","open_issues":0},{"watchers":0,"pushed_at":"2012-01-03T18:01:18Z","html_url":"https://github.com/jacquev6/QuadProgMm","homepage":"http://vincent-jacques.net/QuadProgMm","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":"master","updated_at":"2012-01-03T18:01:20Z","git_url":"git://github.com/jacquev6/QuadProgMm.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/QuadProgMm","language":"C++","private":false,"size":748,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/QuadProgMm","created_at":"2010-07-10T08:36:57Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"QuadProgMm","clone_url":"https://github.com/jacquev6/QuadProgMm.git","id":767386,"ssh_url":"git@github.com:jacquev6/QuadProgMm.git","description":"A C++ interface to specify quadratic problems by C++ expressions of your variables. Try it online.","open_issues":0},{"watchers":2,"pushed_at":"2011-11-27T14:00:23Z","html_url":"https://github.com/jacquev6/Boost.HierarchicalEnum","homepage":"","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":"master","updated_at":"2012-02-20T12:43:24Z","git_url":"git://github.com/jacquev6/Boost.HierarchicalEnum.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/Boost.HierarchicalEnum","language":"C++","private":false,"size":112,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/Boost.HierarchicalEnum","created_at":"2010-07-10T08:32:12Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"Boost.HierarchicalEnum","clone_url":"https://github.com/jacquev6/Boost.HierarchicalEnum.git","id":767382,"ssh_url":"git@github.com:jacquev6/Boost.HierarchicalEnum.git","description":"","open_issues":0},{"watchers":0,"pushed_at":"2012-01-03T16:13:38Z","html_url":"https://github.com/jacquev6/ViDE","homepage":"","has_downloads":false,"mirror_url":null,"has_issues":false,"master_branch":"master","updated_at":"2012-01-03T16:13:39Z","git_url":"git://github.com/jacquev6/ViDE.git","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/ViDE","language":"Python","private":false,"size":1452,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/ViDE","created_at":"2010-07-10T07:33:24Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"ViDE","clone_url":"https://github.com/jacquev6/ViDE.git","id":767343,"ssh_url":"git@github.com:jacquev6/ViDE.git","description":"Vincent's Development Environment","open_issues":0}] - -POST /user/repos {} {"has_wiki": false, "name": "CreatedByPyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4997'), ('content-length', '1021'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"bd71fc0d0ec0da1dd90dcd6a53636b44"'), ('date', 'Sun, 04 Mar 2012 08:17:10 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/CreatedByPyGithub')] -{"watchers":1,"pushed_at":null,"homepage":null,"mirror_url":null,"has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-04T08:17:10Z","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/CreatedByPyGithub","language":null,"private":false,"size":0,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/CreatedByPyGithub","html_url":"https://github.com/jacquev6/CreatedByPyGithub","created_at":"2012-03-04T08:17:10Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"CreatedByPyGithub","git_url":"git://github.com/jacquev6/CreatedByPyGithub.git","clone_url":"https://github.com/jacquev6/CreatedByPyGithub.git","id":3616886,"ssh_url":"git@github.com:jacquev6/CreatedByPyGithub.git","description":null,"open_issues":0} - -GET /user/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4996'), ('content-length', '23151'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d4aeeb24b110881101587c510f1fd871"'), ('date', 'Sun, 04 Mar 2012 08:17:11 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"mirror_url":null,"has_downloads":true,"homepage":null,"has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-03-04T08:17:10Z","svn_url":"https://github.com/jacquev6/CreatedByPyGithub","fork":false,"git_url":"git://github.com/jacquev6/CreatedByPyGithub.git","has_wiki":false,"language":null,"private":false,"html_url":"https://github.com/jacquev6/CreatedByPyGithub","size":0,"url":"https://api.github.com/repos/jacquev6/CreatedByPyGithub","ssh_url":"git@github.com:jacquev6/CreatedByPyGithub.git","clone_url":"https://github.com/jacquev6/CreatedByPyGithub.git","created_at":"2012-03-04T08:17:10Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"CreatedByPyGithub","open_issues":0,"id":3616886,"description":null,"watchers":1,"pushed_at":null},{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":2,"updated_at":"2012-03-03T07:53:19Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","size":84,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","created_at":"2012-03-03T07:41:19Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","open_issues":16,"id":3609314,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T07:43:16Z"},{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-03-03T16:22:44Z","svn_url":"https://github.com/jacquev6/PyGithub","fork":false,"git_url":"git://github.com/jacquev6/PyGithub.git","has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/PyGithub","size":592,"url":"https://api.github.com/repos/jacquev6/PyGithub","ssh_url":"git@github.com:jacquev6/PyGithub.git","clone_url":"https://github.com/jacquev6/PyGithub.git","created_at":"2012-02-25T12:53:47Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"PyGithub","open_issues":1,"id":3544490,"description":"Python library (soon) implementing the full Github API v3","watchers":5,"pushed_at":"2012-03-03T15:18:59Z"},{"mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-20T12:43:58Z","svn_url":"https://github.com/jacquev6/developer.github.com","fork":true,"git_url":"git://github.com/jacquev6/developer.github.com.git","has_wiki":false,"language":"Ruby","private":false,"html_url":"https://github.com/jacquev6/developer.github.com","size":124,"url":"https://api.github.com/repos/jacquev6/developer.github.com","ssh_url":"git@github.com:jacquev6/developer.github.com.git","clone_url":"https://github.com/jacquev6/developer.github.com.git","created_at":"2012-02-05T18:22:26Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"developer.github.com","open_issues":0,"id":3361136,"description":"","watchers":0,"pushed_at":"2012-02-07T20:28:28Z"},{"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:44:15Z","svn_url":"https://github.com/jacquev6/InteractiveCommandLineProgram","fork":false,"git_url":"git://github.com/jacquev6/InteractiveCommandLineProgram.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/InteractiveCommandLineProgram","size":0,"url":"https://api.github.com/repos/jacquev6/InteractiveCommandLineProgram","ssh_url":"git@github.com:jacquev6/InteractiveCommandLineProgram.git","clone_url":"https://github.com/jacquev6/InteractiveCommandLineProgram.git","created_at":"2012-02-03T11:05:09Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"InteractiveCommandLineProgram","open_issues":0,"id":3343767,"description":"","watchers":0,"pushed_at":null},{"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:44:53Z","svn_url":"https://github.com/jacquev6/RecursiveDocument","fork":false,"git_url":"git://github.com/jacquev6/RecursiveDocument.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/RecursiveDocument","size":0,"url":"https://api.github.com/repos/jacquev6/RecursiveDocument","ssh_url":"git@github.com:jacquev6/RecursiveDocument.git","clone_url":"https://github.com/jacquev6/RecursiveDocument.git","created_at":"2012-02-03T11:03:53Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"RecursiveDocument","open_issues":0,"id":3343759,"description":"","watchers":0,"pushed_at":null},{"mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/ActionTree","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:43:37Z","svn_url":"https://github.com/jacquev6/ActionTree","fork":false,"git_url":"git://github.com/jacquev6/ActionTree.git","has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/ActionTree","size":140,"url":"https://api.github.com/repos/jacquev6/ActionTree","ssh_url":"git@github.com:jacquev6/ActionTree.git","clone_url":"https://github.com/jacquev6/ActionTree.git","created_at":"2012-01-31T12:35:28Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"ActionTree","open_issues":0,"id":3314582,"description":"Python library for parallel execution of (long) actions having mutual dependencies\n","watchers":0,"pushed_at":"2012-02-12T07:00:58Z"},{"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:44:28Z","svn_url":"https://github.com/jacquev6/PyMockMockMock","fork":false,"git_url":"git://github.com/jacquev6/PyMockMockMock.git","has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/PyMockMockMock","size":352,"url":"https://api.github.com/repos/jacquev6/PyMockMockMock","ssh_url":"git@github.com:jacquev6/PyMockMockMock.git","clone_url":"https://github.com/jacquev6/PyMockMockMock.git","created_at":"2012-01-17T21:39:52Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"PyMockMockMock","open_issues":0,"id":3203482,"description":"Python mocking library focusing on as-strict-and-explicit-as-needed definition of the mock behaviour","watchers":0,"pushed_at":"2012-01-29T21:36:10Z"},{"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:43:03Z","svn_url":"https://github.com/jacquev6/RipMyMusic","fork":false,"git_url":"git://github.com/jacquev6/RipMyMusic.git","has_wiki":true,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/RipMyMusic","size":260,"url":"https://api.github.com/repos/jacquev6/RipMyMusic","ssh_url":"git@github.com:jacquev6/RipMyMusic.git","clone_url":"https://github.com/jacquev6/RipMyMusic.git","created_at":"2011-12-12T18:27:10Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"RipMyMusic","open_issues":0,"id":2966372,"description":"","watchers":0,"pushed_at":"2011-12-14T19:56:18Z"},{"mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-20T12:43:32Z","svn_url":"https://github.com/jacquev6/acme-public-website","fork":true,"git_url":"git://github.com/jacquev6/acme-public-website.git","has_wiki":false,"language":null,"private":false,"html_url":"https://github.com/jacquev6/acme-public-website","size":120,"url":"https://api.github.com/repos/jacquev6/acme-public-website","ssh_url":"git@github.com:jacquev6/acme-public-website.git","clone_url":"https://github.com/jacquev6/acme-public-website.git","created_at":"2011-12-07T20:00:40Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"acme-public-website","open_issues":0,"id":2935252,"description":"","watchers":0,"pushed_at":"2011-12-07T20:11:17Z"},{"mirror_url":null,"has_downloads":false,"homepage":"CinePlanning","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-12T07:18:06Z","svn_url":"https://github.com/jacquev6/CinePlanning","fork":false,"git_url":"git://github.com/jacquev6/CinePlanning.git","has_wiki":false,"language":"Python","private":true,"html_url":"https://github.com/jacquev6/CinePlanning","size":148,"url":"https://api.github.com/repos/jacquev6/CinePlanning","ssh_url":"git@github.com:jacquev6/CinePlanning.git","clone_url":"https://github.com/jacquev6/CinePlanning.git","created_at":"2011-10-21T16:52:28Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"CinePlanning","open_issues":0,"id":2621677,"description":"","watchers":0,"pushed_at":"2012-01-03T17:54:12Z"},{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/C4Planner","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2012-02-16T21:51:01Z","svn_url":"https://github.com/jacquev6/C4Planner","fork":false,"git_url":"git://github.com/jacquev6/C4Planner.git","has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/C4Planner","size":4716,"url":"https://api.github.com/repos/jacquev6/C4Planner","ssh_url":"git@github.com:jacquev6/C4Planner.git","clone_url":"https://github.com/jacquev6/C4Planner.git","created_at":"2011-08-24T08:30:55Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"C4Planner","open_issues":0,"id":2260441,"description":"Caesar IV: anticipate your city","watchers":1,"pushed_at":"2011-11-27T20:51:06Z"},{"mirror_url":null,"has_downloads":false,"homepage":"Programming","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-12T07:18:08Z","svn_url":"https://github.com/jacquev6/Programming","fork":false,"git_url":"git://github.com/jacquev6/Programming.git","has_wiki":false,"language":"Python","private":true,"html_url":"https://github.com/jacquev6/Programming","size":120,"url":"https://api.github.com/repos/jacquev6/Programming","ssh_url":"git@github.com:jacquev6/Programming.git","clone_url":"https://github.com/jacquev6/Programming.git","created_at":"2011-07-02T15:59:51Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Programming","open_issues":0,"id":1988081,"description":"","watchers":0,"pushed_at":"2012-02-07T19:46:49Z"},{"mirror_url":null,"has_downloads":false,"homepage":"vincent-jacques.net","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-19T20:23:09Z","svn_url":"https://github.com/jacquev6/vincent-jacques.net","fork":false,"git_url":"git://github.com/jacquev6/vincent-jacques.net.git","has_wiki":false,"language":"Python","private":true,"html_url":"https://github.com/jacquev6/vincent-jacques.net","size":164,"url":"https://api.github.com/repos/jacquev6/vincent-jacques.net","ssh_url":"git@github.com:jacquev6/vincent-jacques.net.git","clone_url":"https://github.com/jacquev6/vincent-jacques.net.git","created_at":"2011-07-02T07:08:56Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"vincent-jacques.net","open_issues":0,"id":1986874,"description":"","watchers":0,"pushed_at":"2012-02-19T20:23:09Z"},{"mirror_url":null,"has_downloads":false,"homepage":"Contests","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-12T07:18:09Z","svn_url":"https://github.com/jacquev6/Contests","fork":false,"git_url":"git://github.com/jacquev6/Contests.git","has_wiki":false,"language":"Python","private":true,"html_url":"https://github.com/jacquev6/Contests","size":448,"url":"https://api.github.com/repos/jacquev6/Contests","ssh_url":"git@github.com:jacquev6/Contests.git","clone_url":"https://github.com/jacquev6/Contests.git","created_at":"2011-06-27T11:55:34Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Contests","open_issues":0,"id":1959919,"description":"","watchers":0,"pushed_at":"2011-11-14T20:19:48Z"},{"mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-25T08:14:08Z","svn_url":"https://github.com/jacquev6/Candidates","fork":false,"git_url":"git://github.com/jacquev6/Candidates.git","has_wiki":false,"language":"C++","private":true,"html_url":"https://github.com/jacquev6/Candidates","size":200,"url":"https://api.github.com/repos/jacquev6/Candidates","ssh_url":"git@github.com:jacquev6/Candidates.git","clone_url":"https://github.com/jacquev6/Candidates.git","created_at":"2011-04-09T18:24:08Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Candidates","open_issues":0,"id":1592290,"description":"","watchers":0,"pushed_at":"2012-02-25T08:14:07Z"},{"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2011-12-11T12:40:26Z","svn_url":"https://github.com/jacquev6/Tests","fork":false,"git_url":"git://github.com/jacquev6/Tests.git","has_wiki":false,"language":"C","private":false,"html_url":"https://github.com/jacquev6/Tests","size":2928,"url":"https://api.github.com/repos/jacquev6/Tests","ssh_url":"git@github.com:jacquev6/Tests.git","clone_url":"https://github.com/jacquev6/Tests.git","created_at":"2011-03-28T20:24:02Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Tests","open_issues":0,"id":1538471,"description":"Various tests","watchers":0,"pushed_at":"2011-12-11T12:40:26Z"},{"mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/DrawTurksHead/","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2011-11-11T21:07:56Z","svn_url":"https://github.com/jacquev6/DrawTurksHead","fork":false,"git_url":"git://github.com/jacquev6/DrawTurksHead.git","has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/DrawTurksHead","size":3208,"url":"https://api.github.com/repos/jacquev6/DrawTurksHead","ssh_url":"git@github.com:jacquev6/DrawTurksHead.git","clone_url":"https://github.com/jacquev6/DrawTurksHead.git","created_at":"2010-07-10T08:54:09Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"DrawTurksHead","open_issues":0,"id":767403,"description":"A tool to draw Turk's Head Knots. Try it online","watchers":0,"pushed_at":"2011-11-11T21:07:56Z"},{"mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/DrawSyntax/","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2011-11-27T14:00:34Z","svn_url":"https://github.com/jacquev6/DrawSyntax","fork":false,"git_url":"git://github.com/jacquev6/DrawSyntax.git","has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/DrawSyntax","size":1760,"url":"https://api.github.com/repos/jacquev6/DrawSyntax","ssh_url":"git@github.com:jacquev6/DrawSyntax.git","clone_url":"https://github.com/jacquev6/DrawSyntax.git","created_at":"2010-07-10T08:39:56Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"DrawSyntax","open_issues":0,"id":767392,"description":"Draw syntax diagrams from EBNF grammars. API in C++ and Python. Try it online.","watchers":0,"pushed_at":"2011-11-27T14:00:32Z"},{"mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/QuadProgMm","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2012-01-03T18:01:20Z","svn_url":"https://github.com/jacquev6/QuadProgMm","fork":false,"git_url":"git://github.com/jacquev6/QuadProgMm.git","has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/QuadProgMm","size":748,"url":"https://api.github.com/repos/jacquev6/QuadProgMm","ssh_url":"git@github.com:jacquev6/QuadProgMm.git","clone_url":"https://github.com/jacquev6/QuadProgMm.git","created_at":"2010-07-10T08:36:57Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"QuadProgMm","open_issues":0,"id":767386,"description":"A C++ interface to specify quadratic problems by C++ expressions of your variables. Try it online.","watchers":0,"pushed_at":"2012-01-03T18:01:18Z"},{"mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2012-02-20T12:43:24Z","svn_url":"https://github.com/jacquev6/Boost.HierarchicalEnum","fork":false,"git_url":"git://github.com/jacquev6/Boost.HierarchicalEnum.git","has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/Boost.HierarchicalEnum","size":112,"url":"https://api.github.com/repos/jacquev6/Boost.HierarchicalEnum","ssh_url":"git@github.com:jacquev6/Boost.HierarchicalEnum.git","clone_url":"https://github.com/jacquev6/Boost.HierarchicalEnum.git","created_at":"2010-07-10T08:32:12Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Boost.HierarchicalEnum","open_issues":0,"id":767382,"description":"","watchers":2,"pushed_at":"2011-11-27T14:00:23Z"},{"mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2012-01-03T16:13:39Z","svn_url":"https://github.com/jacquev6/ViDE","fork":false,"git_url":"git://github.com/jacquev6/ViDE.git","has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/ViDE","size":1452,"url":"https://api.github.com/repos/jacquev6/ViDE","ssh_url":"git@github.com:jacquev6/ViDE.git","clone_url":"https://github.com/jacquev6/ViDE.git","created_at":"2010-07-10T07:33:24Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"ViDE","open_issues":0,"id":767343,"description":"Vincent's Development Environment","watchers":0,"pushed_at":"2012-01-03T16:13:38Z"}] - diff --git a/test/ReplayDataForIntegrationTest/Downloads.txt b/test/ReplayDataForIntegrationTest/Downloads.txt deleted file mode 100644 index b4171942..00000000 --- a/test/ReplayDataForIntegrationTest/Downloads.txt +++ /dev/null @@ -1,40 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4952'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"af60c5219a9f43db638a8829ef34dd06"'), ('date', 'Sun, 04 Mar 2012 09:21:33 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17432,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","public_gists":1,"following":24,"html_url":"https://github.com/jacquev6","bio":"","login":"jacquev6","private_gists":2,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","collaborators":0,"plan":{"collaborators":1,"name":"micro","private_repos":5,"space":614400},"location":"Paris, France","company":"Criteo","blog":"http://vincent-jacques.net","url":"https://api.github.com/users/jacquev6","total_private_repos":5,"created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","public_repos":16,"id":327146,"owned_private_repos":5,"followers":12,"hireable":false} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4951'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"affc476c2c09dd57c385f29030068b94"'), ('date', 'Sun, 04 Mar 2012 09:21:34 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","mirror_url":null,"language":null,"private":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /repos/jacquev6/TestPyGithub/downloads {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4950'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:21:35 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/downloads {} {"name": "DownloadCreatedByPyGithub.txt", "size": 1024} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4949'), ('content-length', '1174'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"451d8bbe00a984a32935496084f0260a"'), ('date', 'Sun, 04 Mar 2012 09:21:35 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/downloads/199118')] -{"s3_url":"https://github.s3.amazonaws.com/","signature":"4NbFHuOl1FCXyq0YDumbMQPlY9Q=","acl":"public-read","accesskeyid":"1DWESVTPGHQVTX38V182","redirect":false,"policy":"ewogICAgJ2V4cGlyYXRpb24nOiAnMjExMi0wMy0wNFQwOToyMTozNS4wMDBaJywKICAgICdjb25kaXRpb25zJzogWwogICAgICAgIHsnYnVja2V0JzogJ2dpdGh1Yid9LAogICAgICAgIHsna2V5JzogJ2Rvd25sb2Fkcy9qYWNxdWV2Ni9UZXN0UHlHaXRodWIvRG93bmxvYWRDcmVhdGVkQnlQeUdpdGh1Yi50eHQnfSwKICAgICAgICB7J2FjbCc6ICdwdWJsaWMtcmVhZCd9LAogICAgICAgIHsnc3VjY2Vzc19hY3Rpb25fc3RhdHVzJzogJzIwMSd9LAogICAgICAgIFsnc3RhcnRzLXdpdGgnLCAnJEZpbGVuYW1lJywgJyddLAogICAgICAgIFsnc3RhcnRzLXdpdGgnLCAnJENvbnRlbnQtVHlwZScsICcnXQogICAgXQp9","mime_type":"text/plain","prefix":"downloads/jacquev6/TestPyGithub","content_type":"text/plain","bucket":"github","size":1024,"html_url":"https://github.com/downloads/jacquev6/TestPyGithub/DownloadCreatedByPyGithub.txt","url":"https://api.github.com/repos/jacquev6/TestPyGithub/downloads/199118","expirationdate":"2112-03-04T09:21:35.000Z","created_at":"2012-03-04T09:21:35Z","name":"DownloadCreatedByPyGithub.txt","path":"downloads/jacquev6/TestPyGithub/DownloadCreatedByPyGithub.txt","id":199118,"download_count":0,"description":null} - -GET /repos/jacquev6/TestPyGithub/downloads {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4948'), ('content-length', '338'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"721bf9ef9c6c23a9d9535172e9166b22"'), ('date', 'Sun, 04 Mar 2012 09:21:36 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"download_count":0,"content_type":"text/plain","size":1024,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/downloads/199118","created_at":"2012-03-04T09:21:35Z","name":"DownloadCreatedByPyGithub.txt","html_url":"https://github.com/downloads/jacquev6/TestPyGithub/DownloadCreatedByPyGithub.txt","id":199118,"description":null}] - -GET /repos/jacquev6/TestPyGithub/downloads/199118 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4947'), ('content-length', '336'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d2bf872f9be7d3aa54527be83be3131a"'), ('date', 'Sun, 04 Mar 2012 09:21:36 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"download_count":0,"html_url":"https://github.com/downloads/jacquev6/TestPyGithub/DownloadCreatedByPyGithub.txt","content_type":"text/plain","size":1024,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/downloads/199118","created_at":"2012-03-04T09:21:35Z","name":"DownloadCreatedByPyGithub.txt","id":199118,"description":null} - -DELETE /repos/jacquev6/TestPyGithub/downloads/199118 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4946'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:21:39 GMT')] - - -GET /repos/jacquev6/TestPyGithub/downloads {} null -200 -[('status', '200 OK'), ('content-length', '2'), ('x-ratelimit-remaining', '4945'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:21:40 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - diff --git a/test/ReplayDataForIntegrationTest/EditAuthenticatedUser.txt b/test/ReplayDataForIntegrationTest/EditAuthenticatedUser.txt deleted file mode 100644 index 9ec88893..00000000 --- a/test/ReplayDataForIntegrationTest/EditAuthenticatedUser.txt +++ /dev/null @@ -1,15 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4980'), ('x-ratelimit-limit', '5000'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('etag', '"b20002247c9333d5a126bde09e47f03f"'), ('date', 'Thu, 01 Mar 2012 19:36:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"owned_private_repos":5,"type":"User","private_gists":2,"created_at":"2010-07-09T06:10:06Z","location":"Paris, France","plan":{"private_repos":5,"collaborators":1,"name":"micro","space":614400},"company":"Criteo","collaborators":0,"followers":12,"email":"vincent@vincent-jacques.net","hireable":false,"url":"https://api.github.com/users/jacquev6","blog":"http://vincent-jacques.net","bio":"","following":24,"html_url":"https://github.com/jacquev6","name":"Vincent Jacques","total_private_repos":5,"disk_usage":17252,"public_repos":15,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146,"public_gists":4,"login":"jacquev6"} - -PATCH /user {} {"name": "Vincent Jacques (edited by PyGithub)"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4979'), ('content-length', '822'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"88b4716a95aef77621acb9cd30e6f7da"'), ('date', 'Thu, 01 Mar 2012 19:36:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"private_gists":2,"disk_usage":17252,"collaborators":0,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","public_repos":15,"following":24,"hireable":false,"login":"jacquev6","bio":"","total_private_repos":5,"plan":{"collaborators":1,"private_repos":5,"name":"micro","space":614400},"html_url":"https://github.com/jacquev6","location":"Paris, France","company":"Criteo","owned_private_repos":5,"url":"https://api.github.com/users/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques (edited by PyGithub)","email":"vincent@vincent-jacques.net","public_gists":4,"id":327146,"followers":12,"blog":"http://vincent-jacques.net"} - -PATCH /user {} {"name": "Vincent Jacques"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4978'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"12f25f2f0113a8271ea9a607f2347ee9"'), ('date', 'Thu, 01 Mar 2012 19:36:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17252,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"bio":"","login":"jacquev6","blog":"http://vincent-jacques.net","total_private_repos":5,"owned_private_repos":5,"plan":{"private_repos":5,"name":"micro","collaborators":1,"space":614400},"html_url":"https://github.com/jacquev6","location":"Paris, France","company":"Criteo","url":"https://api.github.com/users/jacquev6","public_repos":15,"public_gists":4,"created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146,"private_gists":2,"collaborators":0,"followers":12,"hireable":false} - diff --git a/test/ReplayDataForIntegrationTest/EditOrganization.txt b/test/ReplayDataForIntegrationTest/EditOrganization.txt deleted file mode 100644 index f60c63a9..00000000 --- a/test/ReplayDataForIntegrationTest/EditOrganization.txt +++ /dev/null @@ -1,15 +0,0 @@ -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4892'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f73559c0664ec6f30687db3525857aa2"'), ('date', 'Thu, 01 Mar 2012 20:27:24 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"type":"Organization","following":0,"login":"BeaverSoftware","public_gists":0,"private_gists":0,"public_repos":2,"billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"private_repos":0,"name":"free","space":307200},"location":"Paris, France","company":null,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","collaborators":0,"url":"https://api.github.com/orgs/BeaverSoftware","total_private_repos":0,"html_url":"https://github.com/BeaverSoftware","created_at":"2012-02-09T19:20:12Z","name":null,"blog":null,"email":null,"id":1424031,"owned_private_repos":0,"followers":0} - -PATCH /orgs/BeaverSoftware {} {"name": "None (edited by PyGithub)"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4891'), ('content-length', '737'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e102f7d1ea751894fb3857442d8e77fd"'), ('date', 'Thu, 01 Mar 2012 20:27:25 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"public_repos":2,"type":"Organization","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","following":0,"html_url":"https://github.com/BeaverSoftware","blog":null,"login":"BeaverSoftware","billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"private_repos":0,"name":"free","space":307200},"public_gists":0,"location":"Paris, France","company":null,"private_gists":0,"url":"https://api.github.com/orgs/BeaverSoftware","total_private_repos":0,"created_at":"2012-02-09T19:20:12Z","name":"None (edited by PyGithub)","email":null,"collaborators":0,"id":1424031,"owned_private_repos":0,"followers":0} - -PATCH /orgs/BeaverSoftware {} {"name": null} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4890'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"5254dae932bd5b18fc04d2610ab4189b"'), ('date', 'Thu, 01 Mar 2012 20:27:25 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"plan":{"name":"free","private_repos":0,"space":307200},"type":"Organization","blog":null,"collaborators":0,"following":0,"login":"BeaverSoftware","billing_email":"BeaverSoftware@vincent-jacques.net","public_repos":2,"location":"Paris, France","public_gists":0,"company":null,"total_private_repos":0,"html_url":"https://github.com/BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/orgs/BeaverSoftware","private_gists":0,"created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"owned_private_repos":0,"disk_usage":0,"followers":0,"id":1424031} - diff --git a/test/ReplayDataForIntegrationTest/EditOrganizationTeamAndMembers.txt b/test/ReplayDataForIntegrationTest/EditOrganizationTeamAndMembers.txt deleted file mode 100644 index fe947fce..00000000 --- a/test/ReplayDataForIntegrationTest/EditOrganizationTeamAndMembers.txt +++ /dev/null @@ -1,195 +0,0 @@ -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4991'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"cfa759042dc02a332d2c8163b4a36f8c"'), ('date', 'Sun, 04 Mar 2012 09:17:58 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"type":"Organization","following":0,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"BeaverSoftware","public_gists":0,"public_repos":2,"private_gists":0,"billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"private_repos":0,"name":"free","space":307200},"blog":null,"location":"Paris, France","collaborators":0,"company":null,"total_private_repos":0,"url":"https://api.github.com/orgs/BeaverSoftware","html_url":"https://github.com/BeaverSoftware","created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"owned_private_repos":0,"id":1424031,"followers":0} - -GET /repos/BeaverSoftware/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4990'), ('content-length', '3597'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"52dde0bcd87fbe4570605c46795ed151"'), ('date', 'Sun, 04 Mar 2012 09:17:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","source":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16},"homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"parent":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16},"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","organization":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0} - -GET /orgs/BeaverSoftware/teams {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4989'), ('content-length', '150'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"43d7c883d1cb7d50a08d2c189550023c"'), ('date', 'Sun, 04 Mar 2012 09:18:00 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/teams/141496","name":"Members","id":141496},{"url":"https://api.github.com/teams/141487","name":"Owners","id":141487}] - -POST /orgs/BeaverSoftware/teams {} {"name": "PyGithubTesters"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4988'), ('content-length', '136'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"9d32da01e6b059472dea93675a1bce8f"'), ('date', 'Sun, 04 Mar 2012 09:18:00 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/teams/152420')] -{"repos_count":0,"members_count":0,"url":"https://api.github.com/teams/152420","name":"PyGithubTesters","id":152420,"permission":"pull"} - -PATCH /teams/152420 {} {"name": "PyGithubTesters", "permission": "push"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4987'), ('content-length', '136'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"43b93490a5778053ee5a048ab08fdb4a"'), ('date', 'Sun, 04 Mar 2012 09:18:01 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"members_count":0,"repos_count":0,"url":"https://api.github.com/teams/152420","name":"PyGithubTesters","id":152420,"permission":"push"} - -GET /orgs/BeaverSoftware/teams {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4986'), ('content-length', '233'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f774b8a588de9a9210f417fe35e7b33a"'), ('date', 'Sun, 04 Mar 2012 09:18:02 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/teams/141496","name":"Members","id":141496},{"url":"https://api.github.com/teams/141487","name":"Owners","id":141487},{"url":"https://api.github.com/teams/152420","name":"PyGithubTesters","id":152420}] - -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4985'), ('content-length', '554'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"4fd4148b4278cb268681c7712aa4cce6"'), ('date', 'Sun, 04 Mar 2012 09:18:02 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"User","blog":null,"hireable":false,"following":0,"login":"Lyloa","bio":null,"location":"Paris","public_gists":0,"company":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","html_url":"https://github.com/Lyloa","url":"https://api.github.com/users/Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","name":"Lyloa","email":"nyu@lyloa.net","public_repos":0,"followers":1,"id":1131432} - -GET /teams/152420/members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4984'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:18:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /teams/152420/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4983'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:18:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /teams/152420/repos/BeaverSoftware/TestPyGithub {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4982'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Sun, 04 Mar 2012 09:18:04 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -GET /teams/152420/members/Lyloa {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4981'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Sun, 04 Mar 2012 09:18:05 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -PUT /teams/152420/members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4980'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:05 GMT')] - - -PUT /teams/152420/repos/BeaverSoftware/TestPyGithub {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4979'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:06 GMT')] - - -GET /teams/152420/repos/BeaverSoftware/TestPyGithub {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4978'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:07 GMT')] - - -GET /teams/152420/members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4977'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:07 GMT')] - - -GET /teams/152420/members {} null -200 -[('status', '200 OK'), ('content-length', '293'), ('x-ratelimit-remaining', '4976'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"87c656909bfd0ee9970ae3c48f271644"'), ('date', 'Sun, 04 Mar 2012 09:18:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","id":1131432,"login":"Lyloa"}] - -GET /teams/152420/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4975'), ('content-length', '1119'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"5f467942afce5564360be34b69cb09cc"'), ('date', 'Sun, 04 Mar 2012 09:18:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png"},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","mirror_url":null,"id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0}] - -GET /orgs/BeaverSoftware/public_members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4974'), ('content-length', '298'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"4b489b2fa5e52eee15c0302190372870"'), ('date', 'Sun, 04 Mar 2012 09:18:09 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146}] - -PUT /orgs/BeaverSoftware/public_members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4973'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:10 GMT')] - - -GET /orgs/BeaverSoftware/public_members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4972'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:11 GMT')] - - -GET /orgs/BeaverSoftware/public_members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4971'), ('content-length', '590'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7e2e6a5dc7aa753ebf0443be19feb5c2"'), ('date', 'Sun, 04 Mar 2012 09:18:11 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},{"login":"Lyloa","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","id":1131432}] - -DELETE /orgs/BeaverSoftware/public_members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4970'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:12 GMT')] - - -GET /orgs/BeaverSoftware/public_members/Lyloa {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4969'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Sun, 04 Mar 2012 09:18:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -GET /orgs/BeaverSoftware/public_members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4968'), ('content-length', '298'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0f7fc68f68409b0b3c1fc6958ea0ad7b"'), ('date', 'Sun, 04 Mar 2012 09:18:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146}] - -GET /orgs/BeaverSoftware/members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4967'), ('content-length', '886'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1c680f8602334d11737f6c7634027131"'), ('date', 'Sun, 04 Mar 2012 09:18:14 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"197eed5292fd11c0277335c3524ccfd5","login":"cjuniet","avatar_url":"https://secure.gravatar.com/avatar/197eed5292fd11c0277335c3524ccfd5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/cjuniet","id":1233553},{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","login":"Lyloa","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/Lyloa","id":1131432}] - -GET /orgs/BeaverSoftware/members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4966'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:14 GMT')] - - -DELETE /orgs/BeaverSoftware/members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4965'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:15 GMT')] - - -GET /orgs/BeaverSoftware/members/Lyloa {} null -403 -[('status', '403 Forbidden'), ('x-ratelimit-remaining', '4964'), ('content-length', '37'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ab43ecb6e2f75e3940aa869edc5ed691"'), ('date', 'Sun, 04 Mar 2012 09:18:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"You need to be a member"} - -GET /orgs/BeaverSoftware/members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4963'), ('content-length', '594'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b8f497b9c5a79bfd8a5671118b39f69c"'), ('date', 'Sun, 04 Mar 2012 09:18:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"197eed5292fd11c0277335c3524ccfd5","avatar_url":"https://secure.gravatar.com/avatar/197eed5292fd11c0277335c3524ccfd5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"cjuniet","url":"https://api.github.com/users/cjuniet","id":1233553},{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146}] - -GET /teams/152420/members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4962'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:18:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /teams/152420/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4961'), ('content-length', '1119'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b76ded2d9b76b2a35d4e997ad18db0ee"'), ('date', 'Sun, 04 Mar 2012 09:18:18 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","mirror_url":null,"id":3609352,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0}] - -DELETE /teams/152420/members/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4960'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:18 GMT')] - - -DELETE /teams/152420/repos/BeaverSoftware/TestPyGithub {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4959'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:19 GMT')] - - -GET /teams/152420/repos/BeaverSoftware/TestPyGithub {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4958'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Sun, 04 Mar 2012 09:18:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -GET /teams/152420/members/Lyloa {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4957'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Sun, 04 Mar 2012 09:18:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -GET /teams/152420/members {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4956'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:18:21 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /teams/152420/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4955'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:18:21 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -DELETE /teams/152420 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4954'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:18:22 GMT')] - - -GET /orgs/BeaverSoftware/teams {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4953'), ('content-length', '150'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"43d7c883d1cb7d50a08d2c189550023c"'), ('date', 'Sun, 04 Mar 2012 09:18:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/teams/141496","name":"Members","id":141496},{"url":"https://api.github.com/teams/141487","name":"Owners","id":141487}] - diff --git a/test/ReplayDataForIntegrationTest/Emails.txt b/test/ReplayDataForIntegrationTest/Emails.txt deleted file mode 100644 index 78fdccde..00000000 --- a/test/ReplayDataForIntegrationTest/Emails.txt +++ /dev/null @@ -1,25 +0,0 @@ -GET /user/emails {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4997'), ('content-length', '64'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ea6dacf29569317ccf460b4bb07075e5"'), ('date', 'Sat, 03 Mar 2012 10:12:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -["vincent@vincent-jacques.net","github.com@vincent-jacques.net"] - -POST /user/emails {} ["ab@xxx.com", "cd@xxx.com"] -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4996'), ('content-length', '90'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"97fc1904c0b7302c11effa23aa4b37d1"'), ('date', 'Sat, 03 Mar 2012 10:12:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -["vincent@vincent-jacques.net","ab@xxx.com","cd@xxx.com","github.com@vincent-jacques.net"] - -GET /user/emails {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4995'), ('content-length', '90'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"97fc1904c0b7302c11effa23aa4b37d1"'), ('date', 'Sat, 03 Mar 2012 10:12:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -["vincent@vincent-jacques.net","ab@xxx.com","cd@xxx.com","github.com@vincent-jacques.net"] - -DELETE /user/emails {} ["ab@xxx.com", "cd@xxx.com"] -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4994'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 10:12:08 GMT')] - - -GET /user/emails {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4993'), ('content-length', '64'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ea6dacf29569317ccf460b4bb07075e5"'), ('date', 'Sat, 03 Mar 2012 10:12:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -["vincent@vincent-jacques.net","github.com@vincent-jacques.net"] - diff --git a/test/ReplayDataForIntegrationTest/Events.txt b/test/ReplayDataForIntegrationTest/Events.txt deleted file mode 100644 index 53d65d31..00000000 --- a/test/ReplayDataForIntegrationTest/Events.txt +++ /dev/null @@ -1,255 +0,0 @@ -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4802'), ('content-length', '554'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"40e0d04446f6149c9d2d6a747b43efc2"'), ('date', 'Mon, 12 Mar 2012 20:40:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/Lyloa","type":"User","blog":null,"url":"https://api.github.com/users/Lyloa","created_at":"2011-10-16T14:36:46Z","email":"nyu@lyloa.net","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","public_repos":0,"following":0,"login":"Lyloa","hireable":false,"followers":1,"name":"Lyloa","public_gists":0,"location":"Paris","bio":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1131432,"company":null} - -GET /users/Lyloa/events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4801'), ('content-length', '763'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"a5d830674484ac92692d5c9cb629b339"'), ('date', 'Mon, 12 Mar 2012 20:40:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"repo":{"url":"https://api.github.com/repos/jacquev6/CosmeticsRecipes","id":2586299,"name":"jacquev6/CosmeticsRecipes"},"type":"PushEvent","created_at":"2011-10-16T14:56:33Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","id":1131432,"login":"Lyloa"},"payload":{"head":"d68705bfc4ea5b70af03ab3414b46b844d5ba5d8","size":1,"push_id":46344004,"ref":"refs/heads/master","commits":[{"sha":"d68705bfc4ea5b70af03ab3414b46b844d5ba5d8","author":{"name":"Lyloa","email":"nyu@lyloa.net"},"url":"https://api.github.com/repos/jacquev6/CosmeticsRecipes/commits/d68705bfc4ea5b70af03ab3414b46b844d5ba5d8","message":"Organisation du backlog"}]},"id":"1492770735"}] - -GET /users/Lyloa/events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4800'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:21 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4799'), ('content-length', '554'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"5d91548a913168479bc6915a96b899be"'), ('date', 'Mon, 12 Mar 2012 20:40:21 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"User","url":"https://api.github.com/users/Lyloa","public_repos":0,"created_at":"2011-10-16T14:36:46Z","email":"nyu@lyloa.net","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","following":0,"login":"Lyloa","html_url":"https://github.com/Lyloa","followers":1,"hireable":false,"public_gists":0,"name":"Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","location":"Paris","bio":null,"id":1131432,"company":null,"blog":null} - -GET /users/Lyloa/events/public {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4798'), ('content-length', '763'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"4982c5ec9fb5115cbe8e3d87606240f0"'), ('date', 'Mon, 12 Mar 2012 20:40:22 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","id":1131432,"login":"Lyloa"},"type":"PushEvent","created_at":"2011-10-16T14:56:33Z","public":true,"payload":{"head":"d68705bfc4ea5b70af03ab3414b46b844d5ba5d8","size":1,"push_id":46344004,"ref":"refs/heads/master","commits":[{"sha":"d68705bfc4ea5b70af03ab3414b46b844d5ba5d8","author":{"name":"Lyloa","email":"nyu@lyloa.net"},"url":"https://api.github.com/repos/jacquev6/CosmeticsRecipes/commits/d68705bfc4ea5b70af03ab3414b46b844d5ba5d8","message":"Organisation du backlog"}]},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/CosmeticsRecipes","id":2586299,"name":"jacquev6/CosmeticsRecipes"},"id":"1492770735"}] - -GET /users/Lyloa/events/public?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4797'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4796'), ('content-length', '554'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e0c8c8292afc316f91b47dfce6efc360"'), ('date', 'Mon, 12 Mar 2012 20:40:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"User","url":"https://api.github.com/users/Lyloa","created_at":"2011-10-16T14:36:46Z","email":"nyu@lyloa.net","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","public_repos":0,"following":0,"login":"Lyloa","public_gists":0,"hireable":false,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","html_url":"https://github.com/Lyloa","followers":1,"name":"Lyloa","bio":null,"location":"Paris","id":1131432,"company":null,"blog":null} - -GET /users/Lyloa/received_events/public {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4795'), ('content-length', '11753'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"d1436c1cd79c42eb227b6323287c0a42"'), ('date', 'Mon, 12 Mar 2012 20:40:24 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-03-01T20:37:24Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Lyloa","company":null,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Lyloa","hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1525412251"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-03-01T20:36:43Z","public":0,"payload":{"target":{"name":"Lyloa","company":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"id":1131432,"hireable":false,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1525411829"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-03-01T20:34:54Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Lyloa","company":null,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Lyloa","hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1525411057"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T21:16:01Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","email":"nyu@lyloa.net","following":0}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519475430"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T21:14:02Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519474799"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:38:43Z","public":0,"payload":{"target":{"company":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Lyloa","hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463620"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:38:18Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","email":"nyu@lyloa.net","following":0}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463483"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:37:33Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","email":"nyu@lyloa.net","following":0}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463220"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:36:54Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463037"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:36:50Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463010"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:36:10Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519462813"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:08:30Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519454245"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2011-10-18T19:07:17Z","public":0,"payload":{"target":{"company":null,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","name":"Lyloa","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1493232211"}] - -GET /users/Lyloa/received_events/public?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4794'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:24 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4793'), ('content-length', '554'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"40e0d04446f6149c9d2d6a747b43efc2"'), ('date', 'Mon, 12 Mar 2012 20:40:25 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/Lyloa","type":"User","blog":null,"url":"https://api.github.com/users/Lyloa","created_at":"2011-10-16T14:36:46Z","email":"nyu@lyloa.net","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","public_repos":0,"following":0,"login":"Lyloa","hireable":false,"followers":1,"name":"Lyloa","public_gists":0,"location":"Paris","bio":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1131432,"company":null} - -GET /users/Lyloa/received_events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4792'), ('content-length', '11753'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"d1436c1cd79c42eb227b6323287c0a42"'), ('date', 'Mon, 12 Mar 2012 20:40:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-03-01T20:37:24Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Lyloa","company":null,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Lyloa","hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1525412251"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-03-01T20:36:43Z","public":0,"payload":{"target":{"name":"Lyloa","company":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"id":1131432,"hireable":false,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1525411829"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-03-01T20:34:54Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Lyloa","company":null,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Lyloa","hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1525411057"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T21:16:01Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","email":"nyu@lyloa.net","following":0}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519475430"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T21:14:02Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519474799"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:38:43Z","public":0,"payload":{"target":{"company":null,"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Lyloa","hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463620"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:38:18Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","email":"nyu@lyloa.net","following":0}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463483"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:37:33Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","email":"nyu@lyloa.net","following":0}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463220"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:36:54Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463037"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:36:50Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519463010"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:36:10Z","public":0,"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","blog":null,"public_repos":0,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519462813"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2012-02-13T20:08:30Z","public":0,"payload":{"target":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":null,"name":"Lyloa","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"html_url":"https://github.com/Lyloa","login":"Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1519454245"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"FollowEvent","created_at":"2011-10-18T19:07:17Z","public":0,"payload":{"target":{"company":null,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","name":"Lyloa","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","created_at":"2011-10-16T14:36:46Z","location":"Paris","public_repos":0,"blog":null,"followers":1,"url":"https://api.github.com/users/Lyloa","public_gists":0,"hireable":false,"id":1131432,"type":"User","bio":null,"login":"Lyloa","html_url":"https://github.com/Lyloa","following":0,"email":"nyu@lyloa.net"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1493232211"}] - -GET /users/Lyloa/received_events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4791'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:27 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4790'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"9281e50b37538466f1b560cb43b4e5bf"'), ('date', 'Mon, 12 Mar 2012 20:40:27 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/BeaverSoftware","type":"Organization","url":"https://api.github.com/orgs/BeaverSoftware","disk_usage":0,"created_at":"2012-02-09T19:20:12Z","email":null,"public_repos":2,"total_private_repos":0,"public_gists":0,"billing_email":"BeaverSoftware@vincent-jacques.net","blog":null,"owned_private_repos":0,"private_gists":0,"following":0,"login":"BeaverSoftware","followers":0,"name":null,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","plan":{"private_repos":0,"space":307200,"name":"free"},"location":"Paris, France","id":1424031,"collaborators":0,"company":null} - -GET /orgs/BeaverSoftware/events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4789'), ('content-length', '20986'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"e84bb4d20d0b7fbaa54455ab717b0f3d"'), ('date', 'Mon, 12 Mar 2012 20:40:28 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-04T08:17:15Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub","id":3616888,"name":"BeaverSoftware/CreatedByPyGithub"},"id":"1526182616"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-03T11:16:34Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub","id":3610173,"name":"BeaverSoftware/CreatedByPyGithub"},"id":"1526021988"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:57:40Z","public":true,"payload":{"head":"390bcc2b855d419e9fd6727049aa9217db56a06a","size":1,"push_id":65381113,"ref":"refs/heads/master","commits":[{"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","distinct":true,"message":"This commit was created by PyGithub"}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526010140"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:57:39Z","public":true,"payload":{"head":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","size":2,"push_id":65381112,"ref":"refs/heads/previous_master","commits":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":false,"message":"This commit was created by PyGithub"},{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","distinct":false,"message":"This commit was created by PyGithub"}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526010139"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:56:56Z","public":true,"payload":{"ref_type":"branch","ref":"previous_master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526010100"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:54:25Z","public":true,"payload":{"ref_type":"tag","ref":"tagCreatedByPyGithub"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009934"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:52:06Z","public":true,"payload":{"head":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","size":1,"push_id":65380919,"commits":[{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009779"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:52:04Z","public":true,"payload":{"head":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","size":2,"push_id":65380918,"ref":"refs/heads/previous_master","commits":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","distinct":false,"message":"This commit was created by PyGithub"},{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":false,"message":"This commit was created by PyGithub"}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009777"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:47:21Z","public":true,"payload":{"ref_type":"tag","ref":"tag_1330764175"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009425"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:47:15Z","public":true,"payload":{"ref_type":"tag","ref":"a_tag"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009414"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:42:55Z","public":true,"payload":{"head":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","size":1,"push_id":65380594,"commits":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009059"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:11:55Z","public":true,"payload":{"head":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","size":1,"push_id":65379432,"commits":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526006647"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:11:13Z","public":true,"payload":{"head":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","size":1,"push_id":65379410,"commits":[{"sha":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526006609"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:19:32Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595643,"name":"BeaverSoftware/TestPyGithub"},"id":"1525404633"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:19:03Z","public":true,"payload":{"master_branch":"master","ref":null,"ref_type":"repository","description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595636,"name":"BeaverSoftware/TestPyGithub"},"id":"1525404453"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:16:23Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595613,"name":"BeaverSoftware/TestPyGithub"},"id":"1525403337"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:12:55Z","public":true,"payload":{"master_branch":"master","ref":null,"ref_type":"repository","description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595586,"name":"BeaverSoftware/TestPyGithub"},"id":"1525402258"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T19:36:29Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595253,"name":"BeaverSoftware/TestPyGithub"},"id":"1525387859"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-28T20:11:58Z","public":true,"payload":{"head":"9473baa2f243872c07c8f008e3d53aed6b5c9ac5","size":1,"push_id":64666710,"commits":[{"sha":"9473baa2f243872c07c8f008e3d53aed6b5c9ac5","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/9473baa2f243872c07c8f008e3d53aed6b5c9ac5","distinct":true,"message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3575047,"name":"BeaverSoftware/TestPyGithub"},"id":"1524541002"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-26T17:28:36Z","public":true,"payload":{"head":"ff9cc7d9bcb62d9dbf0784994fe026e9060701ef","size":1,"push_id":64259989,"ref":"refs/heads/master","commits":[{"sha":"ff9cc7d9bcb62d9dbf0784994fe026e9060701ef","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/ff9cc7d9bcb62d9dbf0784994fe026e9060701ef","message":"This commit was ter created by PyGithub"}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3553496,"name":"BeaverSoftware/TestPyGithub"},"id":"1523710410"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-26T16:46:35Z","public":true,"payload":{"head":"23395b2fa62293196bd8a640b14447c7b552c301","size":1,"push_id":64257074,"commits":[{"sha":"23395b2fa62293196bd8a640b14447c7b552c301","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/23395b2fa62293196bd8a640b14447c7b552c301","message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3553240,"name":"BeaverSoftware/TestPyGithub"},"id":"1523704553"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-25T16:10:21Z","public":true,"payload":{"head":"daded682d3a64f70df2e5561783e7282a5cd80a9","size":1,"push_id":64171897,"commits":[{"sha":"daded682d3a64f70df2e5561783e7282a5cd80a9","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/daded682d3a64f70df2e5561783e7282a5cd80a9","message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3545577,"name":"BeaverSoftware/TestPyGithub"},"id":"1523516455"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-25T15:39:19Z","public":true,"payload":{"head":"73b34d944187f282fa6049cd05b02432488b357b","size":1,"push_id":64169946,"commits":[{"sha":"73b34d944187f282fa6049cd05b02432488b357b","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/73b34d944187f282fa6049cd05b02432488b357b","message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3545372,"name":"BeaverSoftware/TestPyGithub"},"id":"1523512558"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PushEvent","created_at":"2012-02-25T15:27:57Z","public":true,"payload":{"head":"9f2ec52ae9e166d6104834bd0a7f3f9550565100","size":1,"push_id":64169244,"ref":"refs/heads/master","commits":[{"sha":"9f2ec52ae9e166d6104834bd0a7f3f9550565100","author":{"name":"Vincent Jacques","email":"vincent@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/9f2ec52ae9e166d6104834bd0a7f3f9550565100","message":"foo"}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3545295,"name":"BeaverSoftware/TestPyGithub"},"id":"1523511231"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"ForkEvent","created_at":"2012-02-16T21:47:45Z","public":true,"payload":{"forkee":{"master_branch":null,"name":"FatherBeaver","has_wiki":true,"created_at":"2012-02-16T21:47:44Z","size":0,"clone_url":"https://github.com/jacquev6/FatherBeaver.git","public":true,"watchers":1,"private":false,"updated_at":"2012-02-16T21:47:44Z","url":"https://api.github.com/repos/jacquev6/FatherBeaver","ssh_url":"git@github.com:jacquev6/FatherBeaver.git","fork":true,"git_url":"git://github.com/jacquev6/FatherBeaver.git","language":null,"svn_url":"https://github.com/jacquev6/FatherBeaver","pushed_at":null,"id":3464364,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"","description":"","forks":0,"html_url":"https://github.com/jacquev6/FatherBeaver","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","id":3400397,"name":"BeaverSoftware/FatherBeaver"},"id":"1520524054"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-02-09T19:32:22Z","public":true,"payload":{"master_branch":"master","description":"","ref_type":"repository","ref":null},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","id":3400397,"name":"BeaverSoftware/FatherBeaver"},"id":"1518484373"}] - -GET /orgs/BeaverSoftware/events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4788'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:29 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4787'), ('content-length', '43563'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"a80da557c0cb2e3e43692c68198051fd"'), ('date', 'Mon, 12 Mar 2012 20:40:29 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jette","gravatar_id":"e4902295bc86d9fbb59b1f6381e90c39","id":740149,"login":"jette"},"type":"PushEvent","created_at":"2012-03-12T20:40:26Z","public":true,"payload":{"head":"9ff91644e4fe5d59ca3d83842303e6580d8db8ab","size":2,"push_id":66899860,"commits":[{"sha":"830b2566d791cf2bedb9205675431c2515b0fc65","author":{"name":"Morris Jette","email":"jette@schedmd.com"},"url":"https://api.github.com/repos/SchedMD/slurm/commits/830b2566d791cf2bedb9205675431c2515b0fc65","distinct":true,"message":"Change salloc stdout/err for batch program to /dev/null"},{"sha":"9ff91644e4fe5d59ca3d83842303e6580d8db8ab","author":{"name":"Morris Jette","email":"jette@schedmd.com"},"url":"https://api.github.com/repos/SchedMD/slurm/commits/9ff91644e4fe5d59ca3d83842303e6580d8db8ab","distinct":true,"message":"Set SLURM_NNODES and SLURM_NPROCS for srun combined alloc/launch"}],"ref":"refs/heads/loadleveler"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"78d4483f19884b09342187d653955a9e","id":740245,"login":"SchedMD"},"repo":{"url":"https://api.github.com/repos/SchedMD/slurm","id":1924458,"name":"SchedMD/slurm"},"id":"1529213966"},{"actor":{"url":"https://api.github.com/users/neersighted","gravatar_id":"c045445cfbee933a3d2e459224cf3ed8","id":1049222,"login":"neersighted"},"type":"PushEvent","created_at":"2012-03-12T20:40:25Z","public":true,"payload":{"head":"5535ce2496a032dc08a48d100c54febbb32d2e3e","size":1,"push_id":66899859,"commits":[{"sha":"5535ce2496a032dc08a48d100c54febbb32d2e3e","author":{"name":"neersighted","email":"neersighted@neersighted.com"},"url":"https://api.github.com/repos/ClouDev/CloudBot/commits/5535ce2496a032dc08a48d100c54febbb32d2e3e","distinct":true,"message":"Merged flirt and insult.py => feelings.py"}],"ref":"refs/heads/develop"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"62255aaf94b7cab049cc4c0fb040ac5d","id":1492061,"login":"ClouDev"},"repo":{"url":"https://api.github.com/repos/ClouDev/CloudBot","id":2812896,"name":"ClouDev/CloudBot"},"id":"1529213962"},{"actor":{"url":"https://api.github.com/users/Xion","gravatar_id":"8d742ac3714665e5500624ee56df32b1","id":413673,"login":"Xion"},"type":"PushEvent","created_at":"2012-03-12T20:40:25Z","public":true,"payload":{"head":"f9601abbb3c751cf3cd0b2a7b2d27576cdff6df1","size":1,"push_id":66899853,"ref":"refs/heads/master","commits":[{"sha":"f9601abbb3c751cf3cd0b2a7b2d27576cdff6df1","author":{"name":"Karol Kuczmarski","email":"xion.dev@gmail.com"},"url":"https://api.github.com/repos/Xion/wikilate/commits/f9601abbb3c751cf3cd0b2a7b2d27576cdff6df1","distinct":true,"message":"Update README.markdown"}]},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/Xion/wikilate","id":3286945,"name":"Xion/wikilate"},"id":"1529213953"},{"actor":{"url":"https://api.github.com/users/estivatee","gravatar_id":"5c60f51b245d3c7a6d2e46e0aaaa4773","id":1362864,"login":"estivatee"},"type":"PushEvent","created_at":"2012-03-12T20:40:24Z","public":true,"payload":{"head":"debf8fb29a1159a91f892db36da4e0b949cb31ae","size":1,"push_id":66899840,"ref":"refs/heads/master","commits":[{"sha":"debf8fb29a1159a91f892db36da4e0b949cb31ae","author":{"name":"estivate","email":"estivate@localhost"},"url":"https://api.github.com/repos/estivatee/b.php/commits/debf8fb29a1159a91f892db36da4e0b949cb31ae","distinct":true,"message":"Commit"}]},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/estivatee/b.php","id":3699696,"name":"estivatee/b.php"},"id":"1529213940"},{"actor":{"url":"https://api.github.com/users/sullis","gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","id":30938,"login":"sullis"},"type":"IssuesEvent","created_at":"2012-03-12T20:40:24Z","public":true,"payload":{"action":"closed","issue":{"number":2,"created_at":"2012-03-12T18:44:20Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"`Sale.imageUrls` is of `ImageUrlMap` type. Currently it is `ImageUrl` type.","title":"imageUrls in Sale class is of ImageUrlMap type","updated_at":"2012-03-12T20:40:21Z","url":"https://api.github.com/repos/sullis/gilt4j/issues/2","id":3616662,"assignee":{"avatar_url":"https://secure.gravatar.com/avatar/a8ce921854f5c4d303efe7252c9a7255?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","url":"https://api.github.com/users/sullis","id":30938,"login":"sullis"},"milestone":null,"closed_at":"2012-03-12T20:40:21Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/639f4ac2be95524ae59d9c5158ed0e69?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"639f4ac2be95524ae59d9c5158ed0e69","url":"https://api.github.com/users/zihaoyu","id":464299,"login":"zihaoyu"},"html_url":"https://github.com/sullis/gilt4j/issues/2","labels":[],"state":"closed"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/sullis/gilt4j","id":3624309,"name":"sullis/gilt4j"},"id":"1529213939"},{"actor":{"url":"https://api.github.com/users/sullis","gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","id":30938,"login":"sullis"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:40:24Z","public":true,"payload":{"comment":{"created_at":"2012-03-12T20:40:21Z","body":"Fixed.","updated_at":"2012-03-12T20:40:21Z","url":"https://api.github.com/repos/sullis/gilt4j/issues/comments/4461182","id":4461182,"user":{"avatar_url":"https://secure.gravatar.com/avatar/a8ce921854f5c4d303efe7252c9a7255?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","url":"https://api.github.com/users/sullis","id":30938,"login":"sullis"}},"action":"created","issue":{"number":2,"created_at":"2012-03-12T18:44:20Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"`Sale.imageUrls` is of `ImageUrlMap` type. Currently it is `ImageUrl` type.","title":"imageUrls in Sale class is of ImageUrlMap type","updated_at":"2012-03-12T20:40:21Z","url":"https://api.github.com/repos/sullis/gilt4j/issues/2","id":3616662,"assignee":{"avatar_url":"https://secure.gravatar.com/avatar/a8ce921854f5c4d303efe7252c9a7255?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","url":"https://api.github.com/users/sullis","id":30938,"login":"sullis"},"milestone":null,"closed_at":"2012-03-12T20:40:21Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/639f4ac2be95524ae59d9c5158ed0e69?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"639f4ac2be95524ae59d9c5158ed0e69","url":"https://api.github.com/users/zihaoyu","id":464299,"login":"zihaoyu"},"html_url":"https://github.com/sullis/gilt4j/issues/2","labels":[],"state":"closed"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/sullis/gilt4j","id":3624309,"name":"sullis/gilt4j"},"id":"1529213936"},{"actor":{"url":"https://api.github.com/users/bradphelan","gravatar_id":"53f7def58ca1dfdc13369dfd5e2aaace","id":17650,"login":"bradphelan"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:40:20Z","public":true,"payload":{"comment":{"created_at":"2012-03-12T20:40:19Z","body":"Here is a trick to solve it. Put fake pre tags in and ruby pants will ignore the code\r\n\r\n\r\n\t---\r\n\t---\r\n\t###\r\n\t
\r\n\t###\r\n\t$(document).ready =>\r\n\t  bar\r\n\t  console.log \"hereh\"\r\n\t  val=0\r\n\t\r\n\t  rott= =>\r\n\t    val=val+1\r\n\t    $(\"img.logo\").style.webkitTransform=\"rotate(\"+val+\"deg)\"\r\n\t    $(\"img.logo\").style.mozTransform=\"rotate(\"+val+\"deg)\"\r\n\t\r\n\t\r\n\t\r\n\t  settimeout = =>\r\n\t    window.setTimeout 100, =>\r\n\t      console.log \"rotating\"\r\n\t      rott()\r\n\t      settimeout()\r\n\t\r\n\t  settimeout()\r\n\t\r\n\t###\r\n\t   
\r\n\t###\r\n","updated_at":"2012-03-12T20:40:19Z","url":"https://api.github.com/repos/imathis/octopress/issues/comments/4461181","id":4461181,"user":{"avatar_url":"https://secure.gravatar.com/avatar/53f7def58ca1dfdc13369dfd5e2aaace?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"53f7def58ca1dfdc13369dfd5e2aaace","url":"https://api.github.com/users/bradphelan","id":17650,"login":"bradphelan"}},"action":"created","issue":{"number":364,"created_at":"2012-01-11T15:49:42Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"It seems [RubyPants is a post-filter for all content](https://github.com/imathis/octopress/blob/master/plugins/octopress_filters.rb#L19) in Octopress.\r\n\r\nIt's adding curly quotes in my CoffeeScript, which causes JS parse errors. Shouldn't RubyPants just apply to Markdown? At the very least, there should be a way of suppressing it in filters, but I'd much prefer only using it where required. I use Textile and it does curly quotes internally.","title":"RubyPants messing up my Coffeescript","updated_at":"2012-03-12T20:40:19Z","url":"https://api.github.com/repos/imathis/octopress/issues/364","id":2805873,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/imathis/octopress/issues/364","user":{"avatar_url":"https://secure.gravatar.com/avatar/a50dcaaf8e545e6cc1fb4e32919be6ad?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a50dcaaf8e545e6cc1fb4e32919be6ad","url":"https://api.github.com/users/jgarber","id":8061,"login":"jgarber"},"labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/imathis/octopress","id":341626,"name":"imathis/octopress"},"id":"1529213932"},{"actor":{"url":"https://api.github.com/users/Harris6310","gravatar_id":"6eac9944e19e47b7f52e02eef8254feb","id":1517850,"login":"Harris6310"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"comment":{"created_at":"2012-03-12T20:40:09Z","body":"I have copied the code straight from the marketing example from the documentation page. I have the files in the right place and not changed a single line.","updated_at":"2012-03-12T20:40:09Z","url":"https://api.github.com/repos/twitter/bootstrap/issues/comments/4461176","id":4461176,"user":{"avatar_url":"https://secure.gravatar.com/avatar/6eac9944e19e47b7f52e02eef8254feb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6eac9944e19e47b7f52e02eef8254feb","url":"https://api.github.com/users/Harris6310","id":1517850,"login":"Harris6310"}},"action":"created","issue":{"number":2524,"created_at":"2012-03-12T12:22:09Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"I have noticed a few issues with my spacing and alignment. I have copied the code of one of the bootstrap examples exactly and yet my output is different. I have taken some screenshots of the problem. I'm using an XAMPP server on my local machine, if that helps.\r\n\r\nBootstrap Example:\r\nhttp://www.freemmorpgmaker.com/files/imagehost/pics/0aa4da325658d15a5b65a96afbf4778a.png\r\n\r\nMy Example:\r\nhttp://www.freemmorpgmaker.com/files/imagehost/pics/d35578ad7b0670469a0967e7819ece57.png\r\n\r\nCan you see the difference? If so, how would this be fixed?\r\n\r\nPrevious Comment:\r\n\"Looks like you're missing the responsive CSS. Each example page has a separate CSS file in the headyou can compare against. This is also mentioned in the docs.\"\r\n\r\n- I copied the example exactly.","title":"Spacing & Alignment Issues","updated_at":"2012-03-12T20:40:09Z","url":"https://api.github.com/repos/twitter/bootstrap/issues/2524","id":3610179,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/twitter/bootstrap/issues/2524","user":{"avatar_url":"https://secure.gravatar.com/avatar/6eac9944e19e47b7f52e02eef8254feb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6eac9944e19e47b7f52e02eef8254feb","url":"https://api.github.com/users/Harris6310","id":1517850,"login":"Harris6310"},"labels":[{"name":"awaiting feedback","url":"https://api.github.com/repos/twitter/bootstrap/labels/awaiting+feedback","color":"9d261d"}],"state":"open"}},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"74e977ae0a10f06057a119eef30c6660","id":50278,"login":"twitter"},"repo":{"url":"https://api.github.com/repos/twitter/bootstrap","id":2126244,"name":"twitter/bootstrap"},"id":"1529213854"},{"actor":{"url":"https://api.github.com/users/kolov","gravatar_id":"184bbb7a73f54f6494871693f2d388ce","id":733349,"login":"kolov"},"type":"PushEvent","created_at":"2012-03-12T20:40:18Z","public":true,"payload":{"head":"4cba2ae960778f70bb4a975eb48951ae40802f3d","size":4,"push_id":66899827,"commits":[{"sha":"6a2194194d4a6e8cf9ae6f4dcdaa0b9df8f44929","author":{"name":"Assen Kolov","email":"assen.kolov@gmail.com"},"url":"https://api.github.com/repos/kolov/closure-app/commits/6a2194194d4a6e8cf9ae6f4dcdaa0b9df8f44929","distinct":true,"message":"+x"},{"sha":"24a91fc1e9c95b3bded198208acb814d77766349","author":{"name":"Assen Kolov","email":"assen.kolov@gmail.com"},"url":"https://api.github.com/repos/kolov/closure-app/commits/24a91fc1e9c95b3bded198208acb814d77766349","distinct":true,"message":"+x"},{"sha":"0889ba3b8a36f8b345757fb41a0ddb67ee2a65ab","author":{"name":"Assen Kolov","email":"assen.kolov@gmail.com"},"url":"https://api.github.com/repos/kolov/closure-app/commits/0889ba3b8a36f8b345757fb41a0ddb67ee2a65ab","distinct":true,"message":"lein1.7"},{"sha":"4cba2ae960778f70bb4a975eb48951ae40802f3d","author":{"name":"Assen Kolov","email":"assen.kolov@gmail.com"},"url":"https://api.github.com/repos/kolov/closure-app/commits/4cba2ae960778f70bb4a975eb48951ae40802f3d","distinct":true,"message":"compiled"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/kolov/closure-app","id":3528106,"name":"kolov/closure-app"},"id":"1529213921"},{"actor":{"url":"https://api.github.com/users/cytec","gravatar_id":"6d98a7ba5a7d0ab97ddff4621cebeb31","id":1104903,"login":"cytec"},"type":"ForkEvent","created_at":"2012-03-12T20:40:17Z","public":true,"payload":{"forkee":{"name":"SiriServerCore","master_branch":null,"size":320,"created_at":"2012-03-12T20:40:16Z","has_wiki":false,"public":true,"clone_url":"https://github.com/cytec/SiriServerCore.git","private":false,"updated_at":"2012-03-12T20:40:16Z","watchers":1,"ssh_url":"git@github.com:cytec/SiriServerCore.git","git_url":"git://github.com/cytec/SiriServerCore.git","language":"Python","fork":true,"url":"https://api.github.com/repos/cytec/SiriServerCore","id":3699732,"pushed_at":"2012-03-12T13:35:08Z","svn_url":"https://github.com/cytec/SiriServerCore","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"This is just the core architecture of SiriServer without any Plugins or thrid party code","html_url":"https://github.com/cytec/SiriServerCore","owner":{"avatar_url":"https://secure.gravatar.com/avatar/6d98a7ba5a7d0ab97ddff4621cebeb31?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6d98a7ba5a7d0ab97ddff4621cebeb31","url":"https://api.github.com/users/cytec","id":1104903,"login":"cytec"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/Eichhoernchen/SiriServerCore","id":3648886,"name":"Eichhoernchen/SiriServerCore"},"id":"1529213913"},{"actor":{"url":"https://api.github.com/users/openstack-gerrit","gravatar_id":"319605a7b6f36f2cd80214b2fc4d0e92","id":903479,"login":"openstack-gerrit"},"type":"PushEvent","created_at":"2012-03-12T20:40:16Z","public":true,"payload":{"head":"f4a3b2cc92b83459d3633c33fed7f680fe887b3c","size":1,"push_id":66899823,"commits":[{"sha":"f4a3b2cc92b83459d3633c33fed7f680fe887b3c","author":{"name":"Jenkins","email":"jenkins@review.openstack.org"},"url":"https://api.github.com/repos/openstack/nova/commits/f4a3b2cc92b83459d3633c33fed7f680fe887b3c","distinct":true,"message":"Merge \"Make nova-manage syslog check /var/log/messages.\""}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"2a61478d596a0c87e35dd818ddfe2c35","id":324574,"login":"openstack"},"repo":{"url":"https://api.github.com/repos/openstack/nova","id":790031,"name":"openstack/nova"},"id":"1529213912"},{"actor":{"url":"https://api.github.com/users/openstack-gerrit","gravatar_id":"319605a7b6f36f2cd80214b2fc4d0e92","id":903479,"login":"openstack-gerrit"},"type":"PushEvent","created_at":"2012-03-12T20:40:16Z","public":true,"payload":{"head":"4fb9611c40880d4e926a3ec3c8f13f92a66b5ee5","size":1,"push_id":66899821,"ref":"refs/notes/review","commits":[{"sha":"4fb9611c40880d4e926a3ec3c8f13f92a66b5ee5","author":{"name":"Jenkins","email":"jenkins@review.openstack.org"},"url":"https://api.github.com/repos/openstack/nova/commits/4fb9611c40880d4e926a3ec3c8f13f92a66b5ee5","distinct":true,"message":"Update notes for submitted changes\n\n* Make nova-manage syslog check /var/log/messages."}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"2a61478d596a0c87e35dd818ddfe2c35","id":324574,"login":"openstack"},"repo":{"url":"https://api.github.com/repos/openstack/nova","id":790031,"name":"openstack/nova"},"id":"1529213910"},{"actor":{"url":"https://api.github.com/users/admorris","gravatar_id":"a99786dab94c89f4df50b899f447f30e","id":1432432,"login":"admorris"},"type":"PushEvent","created_at":"2012-03-12T20:40:15Z","public":true,"payload":{"head":"8f9d8b197e15a392dfc79cc6422c109d52200358","size":1,"push_id":66899819,"commits":[{"sha":"8f9d8b197e15a392dfc79cc6422c109d52200358","author":{"name":"Alexander Morris","email":"admorris@ucsd.edu"},"url":"https://api.github.com/repos/hygeia/Hygeia/commits/8f9d8b197e15a392dfc79cc6422c109d52200358","distinct":true,"message":"Added New Food Functionality to Inventory Page. Updated Associated Classes and Compiled"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"a34c7b3b3f4eb7360a4ff13b2d241873","id":1366125,"login":"hygeia"},"repo":{"url":"https://api.github.com/repos/hygeia/Hygeia","id":3445560,"name":"hygeia/Hygeia"},"id":"1529213908"},{"actor":{"url":"https://api.github.com/users/1602","gravatar_id":"00bcc518cddfa8502e2e8e219f3cdfb1","id":184172,"login":"1602"},"type":"IssuesEvent","created_at":"2012-03-12T20:40:15Z","public":true,"payload":{"action":"closed","issue":{"number":37,"created_at":"2012-02-26T15:51:15Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"```javascript\r\nfriends = {\r\n tom:{name:'tom',height:180},\r\n john:{name:'john',height:189},\r\n}\r\n```\r\nhow to define the schema?\r\n\r\nlike bellow is wrong:\r\n\r\n```javascript\r\ndefine('Musers', function(){\r\n\tproperty('id', Number);\r\n\tproperty('friends', []); \r\n});\r\n```","title":"how to define a embedded mongodb schema?","updated_at":"2012-03-12T20:40:13Z","url":"https://api.github.com/repos/1602/jugglingdb/issues/37","id":3391434,"assignee":null,"milestone":null,"closed_at":"2012-03-12T20:40:13Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/1c2b490ee6244fb7dc6aa3e7b5fce89e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1c2b490ee6244fb7dc6aa3e7b5fce89e","url":"https://api.github.com/users/askie","id":1140973,"login":"askie"},"labels":[],"html_url":"https://github.com/1602/jugglingdb/issues/37","state":"closed"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/1602/jugglingdb","id":2519670,"name":"1602/jugglingdb"},"id":"1529213906"},{"actor":{"url":"https://api.github.com/users/jbeluch","gravatar_id":"5a63caa528df4fbc7f9ed4ba731472b2","id":202508,"login":"jbeluch"},"type":"WatchEvent","created_at":"2012-03-12T20:40:15Z","public":true,"payload":{"action":"started"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/willkg/richard","id":3615289,"name":"willkg/richard"},"id":"1529213888"},{"actor":{"url":"https://api.github.com/users/larsesn","gravatar_id":"9a96020f07723e4a013fb5db3f52067a","id":1530461,"login":"larsesn"},"type":"CreateEvent","created_at":"2012-03-12T20:40:14Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","description":"Project 3","ref":null},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/larsesn/SubSymP3","id":3699731,"name":"larsesn/SubSymP3"},"id":"1529213886"},{"actor":{"url":"https://api.github.com/users/1602","gravatar_id":"00bcc518cddfa8502e2e8e219f3cdfb1","id":184172,"login":"1602"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:40:14Z","public":true,"payload":{"comment":{"created_at":"2012-03-12T20:40:13Z","body":"I think for mongodb we can build something different, such as schema-less objects, or, maybe partially defined schemas. Of course not on top of mongoose, just for mongodb.\r\n\r\nThe answer on your question: use mongoose, currently embedded schemas not supported, but stay tuned, this is good feature for mongodb driver.","updated_at":"2012-03-12T20:40:13Z","url":"https://api.github.com/repos/1602/jugglingdb/issues/comments/4461179","id":4461179,"user":{"avatar_url":"https://secure.gravatar.com/avatar/00bcc518cddfa8502e2e8e219f3cdfb1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"00bcc518cddfa8502e2e8e219f3cdfb1","url":"https://api.github.com/users/1602","id":184172,"login":"1602"}},"action":"created","issue":{"number":37,"created_at":"2012-02-26T15:51:15Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"body":"```javascript\r\nfriends = {\r\n tom:{name:'tom',height:180},\r\n john:{name:'john',height:189},\r\n}\r\n```\r\nhow to define the schema?\r\n\r\nlike bellow is wrong:\r\n\r\n```javascript\r\ndefine('Musers', function(){\r\n\tproperty('id', Number);\r\n\tproperty('friends', []); \r\n});\r\n```","title":"how to define a embedded mongodb schema?","comments":1,"updated_at":"2012-03-12T20:40:13Z","url":"https://api.github.com/repos/1602/jugglingdb/issues/37","id":3391434,"assignee":null,"milestone":null,"closed_at":"2012-03-12T20:40:13Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/1c2b490ee6244fb7dc6aa3e7b5fce89e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"1c2b490ee6244fb7dc6aa3e7b5fce89e","url":"https://api.github.com/users/askie","id":1140973,"login":"askie"},"html_url":"https://github.com/1602/jugglingdb/issues/37","labels":[],"state":"closed"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/1602/jugglingdb","id":2519670,"name":"1602/jugglingdb"},"id":"1529213885"},{"actor":{"url":"https://api.github.com/users/codinghead","gravatar_id":"52f6698559f460750a28e6d69ba4ced3","id":382037,"login":"codinghead"},"type":"WatchEvent","created_at":"2012-03-12T20:40:14Z","public":true,"payload":{"action":"started"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"b0e06cd0e126c3f447adb4e51b890b18","id":1201721,"login":"atmel-maxtouch"},"repo":{"url":"https://api.github.com/repos/atmel-maxtouch/obp-utils","id":3035151,"name":"atmel-maxtouch/obp-utils"},"id":"1529213883"},{"actor":{"url":"https://api.github.com/users/bucardo","gravatar_id":"5e25d0c212b0ce384bcea4ef1ecc22ee","id":82502,"login":"bucardo"},"type":"PushEvent","created_at":"2012-03-12T20:40:14Z","public":true,"payload":{"head":"8c03e8ce167cbdb5f5dd1fac679fac43268bc847","size":1,"push_id":66899808,"commits":[{"sha":"8c03e8ce167cbdb5f5dd1fac679fac43268bc847","author":{"name":"Greg Sabino Mullane","email":"greg@endpoint.com"},"url":"https://api.github.com/repos/bucardo/dbdpg/commits/8c03e8ce167cbdb5f5dd1fac679fac43268bc847","distinct":true,"message":"Fix for named placeholders: we have to take into account both the length of the potential match and the length of the item we are searching for. Add more tests to confirm."}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/bucardo/dbdpg","id":1585775,"name":"bucardo/dbdpg"},"id":"1529213879"},{"actor":{"url":"https://api.github.com/users/nitram509","gravatar_id":"fa01e907fd400c42d481f431c4410954","id":1189394,"login":"nitram509"},"type":"PullRequestEvent","created_at":"2012-03-12T20:40:14Z","public":true,"payload":{"number":1,"pull_request":{"issue_url":"https://github.com/ystein/java-spark/issues/1","head":{"label":"nitram509:master","repo":{"name":"java-spark","master_branch":null,"size":108,"created_at":"2012-03-12T20:13:00Z","has_wiki":true,"clone_url":"https://github.com/nitram509/java-spark.git","private":false,"updated_at":"2012-03-12T20:34:19Z","watchers":1,"git_url":"git://github.com/nitram509/java-spark.git","ssh_url":"git@github.com:nitram509/java-spark.git","fork":true,"language":"Java","url":"https://api.github.com/repos/nitram509/java-spark","id":3699427,"pushed_at":"2012-03-12T20:34:19Z","svn_url":"https://github.com/nitram509/java-spark","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"Spark-Graphs for Java. Clone of https://github.com/holman/spark.","html_url":"https://github.com/nitram509/java-spark","owner":{"avatar_url":"https://secure.gravatar.com/avatar/fa01e907fd400c42d481f431c4410954?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"fa01e907fd400c42d481f431c4410954","url":"https://api.github.com/users/nitram509","id":1189394,"login":"nitram509"}},"sha":"aa7b24ed1def2aeec6471509afe6cc9093780382","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/fa01e907fd400c42d481f431c4410954?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"fa01e907fd400c42d481f431c4410954","url":"https://api.github.com/users/nitram509","id":1189394,"login":"nitram509"}},"number":1,"changed_files":1,"created_at":"2012-03-12T20:40:12Z","merged_by":null,"merged":false,"comments":0,"body":"Reworked Unicode characters with escape sequences,\r\naccording to holman's latest version.\r\nThis will work with ASCII or any other file encoding\r\nand doesn't depends on UTF-8 file encoding.\r\nThus it's more compatible across different IDEs.","title":"reworked to use Unicode escape sequences","additions":1,"updated_at":"2012-03-12T20:40:12Z","diff_url":"https://github.com/ystein/java-spark/pull/1.diff","_links":{"html":{"href":"https://github.com/ystein/java-spark/pull/1"},"self":{"href":"https://api.github.com/repos/ystein/java-spark/pulls/1"},"comments":{"href":"https://api.github.com/repos/ystein/java-spark/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/ystein/java-spark/pulls/1/comments"}},"url":"https://api.github.com/repos/ystein/java-spark/pulls/1","id":970012,"patch_url":"https://github.com/ystein/java-spark/pull/1.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":1,"user":{"avatar_url":"https://secure.gravatar.com/avatar/fa01e907fd400c42d481f431c4410954?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"fa01e907fd400c42d481f431c4410954","url":"https://api.github.com/users/nitram509","id":1189394,"login":"nitram509"},"review_comments":0,"html_url":"https://github.com/ystein/java-spark/pull/1","deletions":1,"state":"open","base":{"label":"ystein:master","repo":{"name":"java-spark","master_branch":null,"size":140,"created_at":"2011-11-16T18:17:19Z","has_wiki":true,"clone_url":"https://github.com/ystein/java-spark.git","private":false,"updated_at":"2012-03-12T20:13:01Z","watchers":3,"git_url":"git://github.com/ystein/java-spark.git","ssh_url":"git@github.com:ystein/java-spark.git","fork":false,"language":"Java","url":"https://api.github.com/repos/ystein/java-spark","id":2789892,"pushed_at":"2011-11-16T19:42:00Z","svn_url":"https://github.com/ystein/java-spark","open_issues":1,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"forks":2,"description":"Spark-Graphs for Java. Clone of https://github.com/holman/spark.","html_url":"https://github.com/ystein/java-spark","owner":{"avatar_url":"https://secure.gravatar.com/avatar/8fd248733f1ddc7bd641d992cc830d0c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"8fd248733f1ddc7bd641d992cc830d0c","url":"https://api.github.com/users/ystein","id":592626,"login":"ystein"}},"sha":"7259c0b64a1ce7f76eaee87bc66ca2bab9415599","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/8fd248733f1ddc7bd641d992cc830d0c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"8fd248733f1ddc7bd641d992cc830d0c","url":"https://api.github.com/users/ystein","id":592626,"login":"ystein"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/ystein/java-spark","id":2789892,"name":"ystein/java-spark"},"id":"1529213877"},{"actor":{"url":"https://api.github.com/users/MagnusEnger","gravatar_id":"12639bd82198f392a22c289746217fa6","id":13331,"login":"MagnusEnger"},"type":"PushEvent","created_at":"2012-03-12T20:40:12Z","public":true,"payload":{"head":"ed510da367346e5eb52f21558c7eb348a91cef2a","size":4,"push_id":66899806,"commits":[{"sha":"4fbad080b59ff81c0ea666a417b54406be8644e0","author":{"name":"Magnus Enger","email":"magnus@enger.priv.no"},"url":"https://api.github.com/repos/MagnusEnger/semantikoha/commits/4fbad080b59ff81c0ea666a417b54406be8644e0","distinct":true,"message":"Separate the id and uri parts of cgi-bin/test.pl"},{"sha":"637f7a4e0f82354edf5fe76ff51eca03b72ce7d1","author":{"name":"Magnus Enger","email":"magnus@enger.priv.no"},"url":"https://api.github.com/repos/MagnusEnger/semantikoha/commits/637f7a4e0f82354edf5fe76ff51eca03b72ce7d1","distinct":true,"message":"Rearrange some code in the uri part of cgi-bin/test.pl"},{"sha":"a4dc07b77cb5aeea08a562d5f1f534f5c40cad60","author":{"name":"Magnus Enger","email":"magnus@enger.priv.no"},"url":"https://api.github.com/repos/MagnusEnger/semantikoha/commits/a4dc07b77cb5aeea08a562d5f1f534f5c40cad60","distinct":true,"message":"Add a Koha::LinkedData::cgi_sparql method and make cgi-bin/test.pl\n\nThis routine reads the default config file and passes the appropriate\nvalues on to sparqlQuery, so the CGI scripts do not have to know\nanything about what triplestore to use etc."},{"sha":"ed510da367346e5eb52f21558c7eb348a91cef2a","author":{"name":"Magnus Enger","email":"magnus@enger.priv.no"},"url":"https://api.github.com/repos/MagnusEnger/semantikoha/commits/ed510da367346e5eb52f21558c7eb348a91cef2a","distinct":true,"message":"Don't pass the key from cgi_sparql to sparqlQuery"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/MagnusEnger/semantikoha","id":3576412,"name":"MagnusEnger/semantikoha"},"id":"1529213864"},{"actor":{"url":"https://api.github.com/users/robguderian","gravatar_id":"3afb268ee15ae9b20fe13f2fdc9b5c37","id":556068,"login":"robguderian"},"type":"PushEvent","created_at":"2012-03-12T20:40:11Z","public":true,"payload":{"head":"f330472be9c7a15104733d5d16d7fdcf6062311d","size":1,"push_id":66899803,"commits":[{"sha":"f330472be9c7a15104733d5d16d7fdcf6062311d","author":{"name":"Rob Guderian","email":"rob.guderian@gmail.com"},"url":"https://api.github.com/repos/robguderian/COMP-1020---Winter-2012/commits/f330472be9c7a15104733d5d16d7fdcf6062311d","distinct":true,"message":"added print format examples and linked list examples"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/robguderian/COMP-1020---Winter-2012","id":3121207,"name":"robguderian/COMP-1020---Winter-2012"},"id":"1529213859"},{"actor":{"url":"https://api.github.com/users/wisheu","gravatar_id":"6a3500017e8038a571d11815165e422a","id":1525237,"login":"wisheu"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"comment":{"created_at":"2012-03-12T20:40:10Z","body":"Damn close button. :-/\r\n\r\nYou've got away because of 2 things:\r\na) You were building the head version - I was building stable Muffin 1.0.1 and Cinnamon 1.3.1. Apparently there is a little bit of manual work needed to get them to build.\r\nb) It looks like there is a bug in the package gnome-pkg-tools which prevents pbuilder from automatically installing the build dependencies because of a blank line in the debian/control file. I've opened a bug for that: https://bugs.launchpad.net/ubuntu/+source/gnome-pkg-tools/+bug/953392\r\n\r\nIn the end it doesn't really matter what you are using to build packages as long as it works and doesn't mess up your machine. For publicly posted build instructions I would recommend to use Pbuilder because it is easier to get rid of the build dependencies again.\r\n\r\nBtw: what did you mean with your last sentence: How about getting Cinnamon a sponsor upstream? I didn't get that one... ","updated_at":"2012-03-12T20:40:10Z","url":"https://api.github.com/repos/linuxmint/Cinnamon/issues/comments/4461177","id":4461177,"user":{"avatar_url":"https://secure.gravatar.com/avatar/6a3500017e8038a571d11815165e422a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6a3500017e8038a571d11815165e422a","url":"https://api.github.com/users/wisheu","id":1525237,"login":"wisheu"}},"action":"created","issue":{"number":512,"created_at":"2012-03-11T09:39:16Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":10,"body":"Dear Mr Lefebvre,\r\n\r\nPlease add the build instructions for the Cinnamon package(s) to the GitHub wiki to have one authoritative source which people can link in the forum to. This will avoid a lot of clutter in the forum and the instructions in the wiki can be updated without invalidating the information (links) in the forum.\r\n\r\nPlease let me know what you think about this request...\r\n\r\nBest,\r\n\r\nMichael Wisheu\r\n\r\nPS: Once this is done I'd like to share my pbuilder build instructions but for this I have to know first if they are correct... ;-)","title":"Please add build instructions for Mint to GitHub Wiki","updated_at":"2012-03-12T20:40:10Z","url":"https://api.github.com/repos/linuxmint/Cinnamon/issues/512","id":3600178,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/6a3500017e8038a571d11815165e422a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6a3500017e8038a571d11815165e422a","url":"https://api.github.com/users/wisheu","id":1525237,"login":"wisheu"},"labels":[],"html_url":"https://github.com/linuxmint/Cinnamon/issues/512","state":"open"}},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"47c0ccacae660ba3f6872f5543dd9131","id":107184,"login":"linuxmint"},"repo":{"url":"https://api.github.com/repos/linuxmint/Cinnamon","id":3019537,"name":"linuxmint/Cinnamon"},"id":"1529213855"},{"actor":{"url":"https://api.github.com/users/denvers","gravatar_id":"92e51ec70e264ab14e7e4606f79464ef","id":1016564,"login":"denvers"},"type":"PushEvent","created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"head":"c96f8dd19e989104a01c7e86b0c295176dbb0812","size":1,"push_id":66899800,"ref":"refs/heads/master","commits":[{"sha":"c96f8dd19e989104a01c7e86b0c295176dbb0812","author":{"name":"Denver Sessink","email":"dsessink@gmail.com"},"url":"https://api.github.com/repos/denvers/DDOA-DOA/commits/c96f8dd19e989104a01c7e86b0c295176dbb0812","distinct":true,"message":"7.1: t/m refactoring 8 done."}]},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/denvers/DDOA-DOA","id":3351627,"name":"denvers/DDOA-DOA"},"id":"1529213852"},{"actor":{"url":"https://api.github.com/users/Djiko","gravatar_id":"e26350a84f1d437cf5941f138751b454","id":789337,"login":"Djiko"},"type":"PushEvent","created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"head":"d2f5ec6b50e18cd975eded6912a2a466f433d940","size":1,"push_id":66899798,"commits":[{"sha":"d2f5ec6b50e18cd975eded6912a2a466f433d940","author":{"name":"Gilles Coulais","email":"gilles.coulais@etu.u-bordeaux1.fr"},"url":"https://api.github.com/repos/Djiko/Immobilier/commits/d2f5ec6b50e18cd975eded6912a2a466f433d940","distinct":true,"message":"Ajout des MCD et MLR en version PDF"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/Djiko/Immobilier","id":3658515,"name":"Djiko/Immobilier"},"id":"1529213851"},{"actor":{"url":"https://api.github.com/users/xtephan","gravatar_id":"fcfdc653152eb0b26fa293edd5f5170d","id":779551,"login":"xtephan"},"type":"PushEvent","created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"head":"8b72e36be22069360626fa2c664766b220a3d75d","size":1,"push_id":66899795,"commits":[{"sha":"8b72e36be22069360626fa2c664766b220a3d75d","author":{"name":"Stefan Fodor","email":"xtephan@gmail.com"},"url":"https://api.github.com/repos/xtephan/QuitSmoking/commits/8b72e36be22069360626fa2c664766b220a3d75d","distinct":true,"message":"timer working + notify binding change"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/xtephan/QuitSmoking","id":3696994,"name":"xtephan/QuitSmoking"},"id":"1529213847"},{"actor":{"url":"https://api.github.com/users/cpojer","gravatar_id":"77a332a7da779ef594cb6db9970c7b2f","id":13352,"login":"cpojer"},"type":"WatchEvent","created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"action":"started"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"817c4c67bf6a0e8d05f4ca2a3b9cb6c7","id":8078,"login":"mootools"},"repo":{"url":"https://api.github.com/repos/mootools/mootools2","id":3680552,"name":"mootools/mootools2"},"id":"1529213841"},{"actor":{"url":"https://api.github.com/users/MukulRawat","gravatar_id":"a5f2d7ff29815232f4f17280f7347d55","id":994407,"login":"MukulRawat"},"type":"PushEvent","created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"head":"a599a9141f3f11662594a1b6ffc093f979be6369","size":1,"push_id":66899790,"commits":[{"sha":"a599a9141f3f11662594a1b6ffc093f979be6369","author":{"name":"Mukul Rawat","email":"mukulrawat18869@gmail.com"},"url":"https://api.github.com/repos/MukulRawat/mukulrawat.github.com/commits/a599a9141f3f11662594a1b6ffc093f979be6369","distinct":true,"message":"Site updated at 2012-03-12 20:39:48 UTC"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/MukulRawat/mukulrawat.github.com","id":3674302,"name":"MukulRawat/mukulrawat.github.com"},"id":"1529213840"},{"actor":{"url":"https://api.github.com/users/jboss-as-pull-request","gravatar_id":"37ca08d0ed89def026f27d35d499cab9","id":939955,"login":"jboss-as-pull-request"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"comment":{"created_at":"2012-03-12T20:40:06Z","body":"Build 1569 outcome was SUCCESS using a merge of e77a63fd0e999dfbe51568d99b1decc30f922201:\n http://lightning.mw.lab.eng.bos.redhat.com/jenkins/job/as7-param-pull/1569","updated_at":"2012-03-12T20:40:06Z","url":"https://api.github.com/repos/jbossas/jboss-as/issues/comments/4461175","id":4461175,"user":{"avatar_url":"https://secure.gravatar.com/avatar/37ca08d0ed89def026f27d35d499cab9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"37ca08d0ed89def026f27d35d499cab9","url":"https://api.github.com/users/jboss-as-pull-request","id":939955,"login":"jboss-as-pull-request"}},"action":"created","issue":{"number":1797,"created_at":"2012-03-12T19:48:03Z","pull_request":{"diff_url":"https://github.com/jbossas/jboss-as/pull/1797.diff","patch_url":"https://github.com/jbossas/jboss-as/pull/1797.patch","html_url":"https://github.com/jbossas/jboss-as/pull/1797"},"comments":2,"body":"","title":"AS7-4128 allow non-Hibernate persistence providers to be packaged with the application (like ogm)","updated_at":"2012-03-12T20:40:06Z","url":"https://api.github.com/repos/jbossas/jboss-as/issues/1797","id":3617757,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/jbossas/jboss-as/issues/1797","user":{"avatar_url":"https://secure.gravatar.com/avatar/6fdbefbff8c445a8a4e37a11f2db1624?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6fdbefbff8c445a8a4e37a11f2db1624","url":"https://api.github.com/users/scottmarlow","id":332944,"login":"scottmarlow"},"labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"77d83437a6babdbeec583ccd2ccd21c0","id":326816,"login":"jbossas"},"repo":{"url":"https://api.github.com/repos/jbossas/jboss-as","id":764708,"name":"jbossas/jboss-as"},"id":"1529213829"},{"actor":{"url":"https://api.github.com/users/thomas-haslwanter","gravatar_id":"99c9987efb76be82472e8beb1de59a81","id":1530437,"login":"thomas-haslwanter"},"type":"IssuesEvent","created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"action":"opened","issue":{"number":760,"created_at":"2012-03-12T20:40:08Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"Code: \"animation example code: double_pendulum_animated.py\"\r\nPlatform: Intel, Win7, 64 bit\r\nPython Ver: 2.7.2\r\n\r\nProblem:\r\nuncommenting the last but one line\r\n\r\nani.save('double_pendulum.mp4', fps=15, clear_temp=True)\r\n\r\nproduces the following error message:\r\nTraceback (most recent call last):\r\n File \"C:\\Users\\p20529\\Coding\\Python\\Applications\\testPro\\animation.py\", line 87, in \r\n ani.save('double_pendulum.mp4', fps=15, clear_temp=True)\r\n File \"C:\\Python27\\lib\\site-packages\\matplotlib\\animation.py\", line 127, in save\r\n self._make_movie(filename, fps, codec, frame_prefix)\r\n File \"C:\\Python27\\lib\\site-packages\\matplotlib\\animation.py\", line 164, in _make_movie\r\n stdout=PIPE, stderr=PIPE)\r\n File \"C:\\Python27\\lib\\subprocess.py\", line 672, in __init__\r\n errread, errwrite)\r\n File \"C:\\Python27\\lib\\subprocess.py\", line 882, in _execute_child\r\n startupinfo)\r\nWindowsError: [Error 2] Das System kann die angegebene Datei nicht finden\r\n\r\nNote: the last comment is in german, and means \"System cannot locate this file.\"","title":"saving animations","updated_at":"2012-03-12T20:40:08Z","url":"https://api.github.com/repos/matplotlib/matplotlib/issues/760","id":3618692,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/99c9987efb76be82472e8beb1de59a81?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"99c9987efb76be82472e8beb1de59a81","url":"https://api.github.com/users/thomas-haslwanter","id":1530437,"login":"thomas-haslwanter"},"html_url":"https://github.com/matplotlib/matplotlib/issues/760","labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"8a8d0e9c76aeba9cc0e7092e070cd3e7","id":215947,"login":"matplotlib"},"repo":{"url":"https://api.github.com/repos/matplotlib/matplotlib","id":1385122,"name":"matplotlib/matplotlib"},"id":"1529213834"}] - -GET /events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4786'), ('content-length', '34203'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"60570a9806e6be8554494f5cfa5fe3ad"'), ('date', 'Mon, 12 Mar 2012 20:40:30 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"head":"d2f5ec6b50e18cd975eded6912a2a466f433d940","size":1,"commits":[{"sha":"d2f5ec6b50e18cd975eded6912a2a466f433d940","url":"https://api.github.com/repos/Djiko/Immobilier/commits/d2f5ec6b50e18cd975eded6912a2a466f433d940","message":"Ajout des MCD et MLR en version PDF","distinct":true,"author":{"email":"gilles.coulais@etu.u-bordeaux1.fr","name":"Gilles Coulais"}}],"ref":"refs/heads/master","push_id":66899798},"repo":{"id":3658515,"name":"Djiko/Immobilier","url":"https://api.github.com/repos/Djiko/Immobilier"},"actor":{"gravatar_id":"e26350a84f1d437cf5941f138751b454","login":"Djiko","id":789337,"url":"https://api.github.com/users/Djiko"},"id":"1529213851"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:10Z","public":true,"payload":{"head":"8b72e36be22069360626fa2c664766b220a3d75d","size":1,"commits":[{"sha":"8b72e36be22069360626fa2c664766b220a3d75d","url":"https://api.github.com/repos/xtephan/QuitSmoking/commits/8b72e36be22069360626fa2c664766b220a3d75d","message":"timer working + notify binding change","distinct":true,"author":{"email":"xtephan@gmail.com","name":"Stefan Fodor"}}],"ref":"refs/heads/master","push_id":66899795},"repo":{"id":3696994,"name":"xtephan/QuitSmoking","url":"https://api.github.com/repos/xtephan/QuitSmoking"},"actor":{"gravatar_id":"fcfdc653152eb0b26fa293edd5f5170d","id":779551,"login":"xtephan","url":"https://api.github.com/users/xtephan"},"id":"1529213847"},{"type":"WatchEvent","org":{"login":"mootools","id":8078,"gravatar_id":"817c4c67bf6a0e8d05f4ca2a3b9cb6c7","url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"action":"started"},"repo":{"id":3680552,"name":"mootools/mootools2","url":"https://api.github.com/repos/mootools/mootools2"},"actor":{"login":"cpojer","id":13352,"gravatar_id":"77a332a7da779ef594cb6db9970c7b2f","url":"https://api.github.com/users/cpojer"},"id":"1529213841"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"head":"a599a9141f3f11662594a1b6ffc093f979be6369","size":1,"commits":[{"sha":"a599a9141f3f11662594a1b6ffc093f979be6369","url":"https://api.github.com/repos/MukulRawat/mukulrawat.github.com/commits/a599a9141f3f11662594a1b6ffc093f979be6369","distinct":true,"message":"Site updated at 2012-03-12 20:39:48 UTC","author":{"email":"mukulrawat18869@gmail.com","name":"Mukul Rawat"}}],"ref":"refs/heads/master","push_id":66899790},"repo":{"id":3674302,"name":"MukulRawat/mukulrawat.github.com","url":"https://api.github.com/repos/MukulRawat/mukulrawat.github.com"},"actor":{"login":"MukulRawat","id":994407,"gravatar_id":"a5f2d7ff29815232f4f17280f7347d55","url":"https://api.github.com/users/MukulRawat"},"id":"1529213840"},{"type":"IssueCommentEvent","org":{"login":"jbossas","id":326816,"gravatar_id":"77d83437a6babdbeec583ccd2ccd21c0","url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/37ca08d0ed89def026f27d35d499cab9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":939955,"login":"jboss-as-pull-request","gravatar_id":"37ca08d0ed89def026f27d35d499cab9","url":"https://api.github.com/users/jboss-as-pull-request"},"created_at":"2012-03-12T20:40:06Z","id":4461175,"updated_at":"2012-03-12T20:40:06Z","body":"Build 1569 outcome was SUCCESS using a merge of e77a63fd0e999dfbe51568d99b1decc30f922201:\n http://lightning.mw.lab.eng.bos.redhat.com/jenkins/job/as7-param-pull/1569","url":"https://api.github.com/repos/jbossas/jboss-as/issues/comments/4461175"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/6fdbefbff8c445a8a4e37a11f2db1624?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":332944,"login":"scottmarlow","gravatar_id":"6fdbefbff8c445a8a4e37a11f2db1624","url":"https://api.github.com/users/scottmarlow"},"created_at":"2012-03-12T19:48:03Z","closed_at":null,"labels":[],"comments":2,"milestone":null,"id":3617757,"state":"open","assignee":null,"number":1797,"pull_request":{"diff_url":"https://github.com/jbossas/jboss-as/pull/1797.diff","html_url":"https://github.com/jbossas/jboss-as/pull/1797","patch_url":"https://github.com/jbossas/jboss-as/pull/1797.patch"},"updated_at":"2012-03-12T20:40:06Z","body":"","url":"https://api.github.com/repos/jbossas/jboss-as/issues/1797","title":"AS7-4128 allow non-Hibernate persistence providers to be packaged with the application (like ogm)","html_url":"https://github.com/jbossas/jboss-as/issues/1797"},"action":"created"},"repo":{"id":764708,"name":"jbossas/jboss-as","url":"https://api.github.com/repos/jbossas/jboss-as"},"actor":{"login":"jboss-as-pull-request","id":939955,"gravatar_id":"37ca08d0ed89def026f27d35d499cab9","url":"https://api.github.com/users/jboss-as-pull-request"},"id":"1529213829"},{"type":"IssuesEvent","org":{"login":"matplotlib","id":215947,"gravatar_id":"8a8d0e9c76aeba9cc0e7092e070cd3e7","url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:09Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/99c9987efb76be82472e8beb1de59a81?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1530437,"login":"thomas-haslwanter","gravatar_id":"99c9987efb76be82472e8beb1de59a81","url":"https://api.github.com/users/thomas-haslwanter"},"closed_at":null,"created_at":"2012-03-12T20:40:08Z","comments":0,"milestone":null,"labels":[],"id":3618692,"state":"open","assignee":null,"number":760,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"updated_at":"2012-03-12T20:40:08Z","body":"Code: \"animation example code: double_pendulum_animated.py\"\r\nPlatform: Intel, Win7, 64 bit\r\nPython Ver: 2.7.2\r\n\r\nProblem:\r\nuncommenting the last but one line\r\n\r\nani.save('double_pendulum.mp4', fps=15, clear_temp=True)\r\n\r\nproduces the following error message:\r\nTraceback (most recent call last):\r\n File \"C:\\Users\\p20529\\Coding\\Python\\Applications\\testPro\\animation.py\", line 87, in \r\n ani.save('double_pendulum.mp4', fps=15, clear_temp=True)\r\n File \"C:\\Python27\\lib\\site-packages\\matplotlib\\animation.py\", line 127, in save\r\n self._make_movie(filename, fps, codec, frame_prefix)\r\n File \"C:\\Python27\\lib\\site-packages\\matplotlib\\animation.py\", line 164, in _make_movie\r\n stdout=PIPE, stderr=PIPE)\r\n File \"C:\\Python27\\lib\\subprocess.py\", line 672, in __init__\r\n errread, errwrite)\r\n File \"C:\\Python27\\lib\\subprocess.py\", line 882, in _execute_child\r\n startupinfo)\r\nWindowsError: [Error 2] Das System kann die angegebene Datei nicht finden\r\n\r\nNote: the last comment is in german, and means \"System cannot locate this file.\"","url":"https://api.github.com/repos/matplotlib/matplotlib/issues/760","title":"saving animations","html_url":"https://github.com/matplotlib/matplotlib/issues/760"},"action":"opened"},"repo":{"id":1385122,"name":"matplotlib/matplotlib","url":"https://api.github.com/repos/matplotlib/matplotlib"},"actor":{"login":"thomas-haslwanter","id":1530437,"gravatar_id":"99c9987efb76be82472e8beb1de59a81","url":"https://api.github.com/users/thomas-haslwanter"},"id":"1529213834"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:06Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/e679fead4b7cb50b7b60e7c4f99bc348?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":853051,"login":"nvkelso","gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","url":"https://api.github.com/users/nvkelso"},"created_at":"2012-03-12T20:40:06Z","id":4461174,"updated_at":"2012-03-12T20:40:06Z","body":"GLO: Hmm... That's a feature. You think it's a problem?","url":"https://api.github.com/repos/stamen/paperwalking/issues/comments/4461174"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/e679fead4b7cb50b7b60e7c4f99bc348?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":853051,"login":"nvkelso","gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","url":"https://api.github.com/users/nvkelso"},"created_at":"2012-03-12T20:39:52Z","closed_at":null,"comments":1,"labels":[{"color":"009900","url":"https://api.github.com/repos/stamen/paperwalking/labels/design","name":"design"}],"milestone":null,"id":3618686,"state":"open","assignee":null,"number":20,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"updated_at":"2012-03-12T20:40:06Z","body":"from Eric:\r\n\r\nforget about me when I'm not logged in, then logged in\r\n\r\nsigning up in *after* creating an atlas retroactively makes me the author of all of the atlases I made anonymously ","url":"https://api.github.com/repos/stamen/paperwalking/issues/20","title":"clarify verbiage around claiming a previously anonymous atlas","html_url":"https://github.com/stamen/paperwalking/issues/20"},"action":"created"},"repo":{"id":2704905,"name":"stamen/paperwalking","url":"https://api.github.com/repos/stamen/paperwalking"},"actor":{"login":"nvkelso","id":853051,"gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","url":"https://api.github.com/users/nvkelso"},"id":"1529213821"},{"type":"CreateEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:06Z","public":true,"payload":{"description":"openframeworks addon for draggable and resizeable widgets","ref":null,"ref_type":"repository","master_branch":"master"},"repo":{"id":3699729,"name":"coolvision/ofxInteractiveBoxes","url":"https://api.github.com/repos/coolvision/ofxInteractiveBoxes"},"actor":{"login":"coolvision","id":1460828,"gravatar_id":"3965e419907ae9e36f6951d0f5d1eb73","url":"https://api.github.com/users/coolvision"},"id":"1529213817"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:04Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/d1056de0358b48ece214838d6325bf98?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":748074,"login":"sergei-startsev","gravatar_id":"d1056de0358b48ece214838d6325bf98","url":"https://api.github.com/users/sergei-startsev"},"created_at":"2012-03-12T20:40:03Z","id":4461172,"updated_at":"2012-03-12T20:40:03Z","body":"как это сделать понятно, если кто-то возьмется написать серверную функцию, которую можно будет подергать ч/з POST (i/o параметров только надо уточнить), могу реализовать клиентскую сторону.","url":"https://api.github.com/repos/deniskoronchik/sc-git/issues/comments/4461172"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/28ca26ce92cdd55e092ed55abfb1f8dc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":727817,"login":"deniskoronchik","gravatar_id":"28ca26ce92cdd55e092ed55abfb1f8dc","url":"https://api.github.com/users/deniskoronchik"},"closed_at":null,"created_at":"2012-03-12T20:22:02Z","comments":1,"milestone":{"created_at":"2012-03-12T20:11:39Z","open_issues":4,"description":"First version of structured semantic sites engine based on git.","state":"open","number":1,"due_on":null,"url":"https://api.github.com/repos/deniskoronchik/sc-git/milestones/1","title":"0.1.0","creator":{"avatar_url":"https://secure.gravatar.com/avatar/28ca26ce92cdd55e092ed55abfb1f8dc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":727817,"login":"deniskoronchik","gravatar_id":"28ca26ce92cdd55e092ed55abfb1f8dc","url":"https://api.github.com/users/deniskoronchik"},"closed_issues":0},"labels":[{"color":"d7e102","url":"https://api.github.com/repos/deniskoronchik/sc-git/labels/New+feature","name":"New feature"}],"id":3618358,"state":"open","assignee":null,"number":4,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-12T20:40:03Z","body":"Поле должно автоматом дополнять набираемые пользователем понятия, на основании имеющихся в базе знаний глобальных идентификаторов","url":"https://api.github.com/repos/deniskoronchik/sc-git/issues/4","title":"сделать поле поиска понятий, с автодополнением","html_url":"https://github.com/deniskoronchik/sc-git/issues/4"},"action":"created"},"repo":{"id":3560562,"name":"deniskoronchik/sc-git","url":"https://api.github.com/repos/deniskoronchik/sc-git"},"actor":{"login":"sergei-startsev","id":748074,"gravatar_id":"d1056de0358b48ece214838d6325bf98","url":"https://api.github.com/users/sergei-startsev"},"id":"1529213812"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:04Z","public":true,"payload":{"head":"30e9880e8065b9a59e3a8f05be7aafccdbc759f4","size":2,"commits":[{"sha":"240f7d0cbde0fb70eb61f7465dcbdaebcd38a2ba","url":"https://api.github.com/repos/martior/trumpet/commits/240f7d0cbde0fb70eb61f7465dcbdaebcd38a2ba","distinct":true,"message":"added cloudflare description","author":{"email":"martin@reistadbakk.com","name":"Martin Opstad Reistadbakk"}},{"sha":"30e9880e8065b9a59e3a8f05be7aafccdbc759f4","url":"https://api.github.com/repos/martior/trumpet/commits/30e9880e8065b9a59e3a8f05be7aafccdbc759f4","distinct":true,"message":"updated json to have same description","author":{"email":"martin@reistadbakk.com","name":"Martin Opstad Reistadbakk"}}],"ref":"refs/heads/master","push_id":66899779},"repo":{"id":3531369,"name":"martior/trumpet","url":"https://api.github.com/repos/martior/trumpet"},"actor":{"login":"martior","id":186859,"gravatar_id":"8af3875070df49604aacf3ec6d58e441","url":"https://api.github.com/users/martior"},"id":"1529213813"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:04Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/1249316e0047e466af2bc900421129c1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":13182,"login":"PromyLOPh","gravatar_id":"1249316e0047e466af2bc900421129c1","url":"https://api.github.com/users/PromyLOPh"},"created_at":"2012-03-12T20:40:04Z","id":4461173,"updated_at":"2012-03-12T20:40:04Z","body":"My first try: https://gist.github.com/2024550","url":"https://api.github.com/repos/PromyLOPh/pianobar/issues/comments/4461173"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/1dad4013c9d7688e54c2a2dbe0a059b3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":37534,"login":"phinze","gravatar_id":"1dad4013c9d7688e54c2a2dbe0a059b3","url":"https://api.github.com/users/phinze"},"closed_at":null,"created_at":"2012-03-11T00:39:32Z","comments":2,"milestone":null,"labels":[],"id":3598494,"state":"open","assignee":null,"number":231,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-12T20:40:04Z","body":"If I'm selecting a station from a numbered list that's larger than the screen, I'll often use the title filtering feature. So I'll type \"Chem\" and get back \"54) q The Chemical Brothers Radio\".\r\n\r\nIt would be cool if there is only one match that pianobar just performed the selection for me, instead of requiring me to type \"54\" again.\r\n\r\nIt looks like `BarUiSelectStation` is where this would go. It's used in quite a few places, but the potentially destructive ones (like delete) already have a confirm step. Not sure if there are other places this behavior would be unexpected, but if so we can make it an optional feature of the method.\r\n\r\nIf I get the chance - I'll take a stab at implementing this and submit it as a pull request.","url":"https://api.github.com/repos/PromyLOPh/pianobar/issues/231","title":"Select station on unambiguous filter","html_url":"https://github.com/PromyLOPh/pianobar/issues/231"},"action":"created"},"repo":{"id":23892,"name":"PromyLOPh/pianobar","url":"https://api.github.com/repos/PromyLOPh/pianobar"},"actor":{"login":"PromyLOPh","id":13182,"gravatar_id":"1249316e0047e466af2bc900421129c1","url":"https://api.github.com/users/PromyLOPh"},"id":"1529213804"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:04Z","public":true,"payload":{"head":"4f721f652220e4dccfc085677b551c916bb408b9","size":1,"commits":[{"sha":"4f721f652220e4dccfc085677b551c916bb408b9","url":"https://api.github.com/repos/prashn64/omnipost/commits/4f721f652220e4dccfc085677b551c916bb408b9","distinct":true,"message":"Added image linking functionality. The user can basically preview the image they paste in after clicking the attachment button.","author":{"email":"prashn64@gmail.com","name":"prashn64"}}],"ref":"refs/heads/patch-1","push_id":66899778},"repo":{"id":3696722,"name":"prashn64/omnipost","url":"https://api.github.com/repos/prashn64/omnipost"},"actor":{"login":"prashn64","id":1528886,"gravatar_id":"696d9f6753a5526b281039df4f4cc5f0","url":"https://api.github.com/users/prashn64"},"id":"1529213805"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:04Z","public":true,"payload":{"head":"069b3e8cbb2273b43e967abe5f63e209b8b25fe3","size":1,"commits":[{"sha":"069b3e8cbb2273b43e967abe5f63e209b8b25fe3","url":"https://api.github.com/repos/dgageot/listmaker/commits/069b3e8cbb2273b43e967abe5f63e209b8b25fe3","distinct":true,"message":"[maven-release-plugin] prepare for next development iteration","author":{"email":"david@gageot.net","name":"David Gageot"}}],"ref":"refs/heads/master","push_id":66899777},"repo":{"id":3625039,"name":"dgageot/listmaker","url":"https://api.github.com/repos/dgageot/listmaker"},"actor":{"login":"dgageot","id":153495,"gravatar_id":"f0887bf6175ba40dca795eb37883a8cf","url":"https://api.github.com/users/dgageot"},"id":"1529213802"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:01Z","public":true,"payload":{"head":"20b791609e81d77df33f67325dbe335daa0df633","size":1,"commits":[{"sha":"20b791609e81d77df33f67325dbe335daa0df633","url":"https://api.github.com/repos/ziklodi/depot/commits/20b791609e81d77df33f67325dbe335daa0df633","distinct":true,"message":"initial commit 3","author":{"email":"ziklodi@freemail.hu","name":"ziklodi"}}],"ref":"refs/heads/master","push_id":66899773},"repo":{"id":3683322,"name":"ziklodi/depot","url":"https://api.github.com/repos/ziklodi/depot"},"actor":{"login":"ziklodi","id":900415,"gravatar_id":"4c384afa6864a72558ebd387a3c21f31","url":"https://api.github.com/users/ziklodi"},"id":"1529213794"},{"type":"FollowEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:00Z","public":0,"payload":{"target":{"created_at":"2008-06-04T23:33:44Z","type":"User","avatar_url":"https://secure.gravatar.com/avatar/d4a2f12ceae3b7f211b661576d22bfb9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","location":"Oakland, California, USA","id":12631,"public_repos":210,"login":"substack","bio":null,"public_gists":183,"gravatar_id":"d4a2f12ceae3b7f211b661576d22bfb9","following":154,"hireable":false,"email":"mail@substack.net","url":"https://api.github.com/users/substack","followers":926,"name":"James Halliday","blog":"http://substack.net/","company":"browserling.com","html_url":"https://github.com/substack"}},"repo":{"name":"/","url":"https://api.github.com/repos//"},"actor":{"login":"donfrancisco","id":306284,"gravatar_id":"71076c54b1034e8f9e6d428e6051ed6b","url":"https://api.github.com/users/donfrancisco"},"id":"1529213790"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:00Z","public":true,"payload":{"head":"59dbdfb3bcde17e4d520d78502e90fd49a1e3089","size":1,"commits":[{"sha":"59dbdfb3bcde17e4d520d78502e90fd49a1e3089","url":"https://api.github.com/repos/subhrajitroy/blogs/commits/59dbdfb3bcde17e4d520d78502e90fd49a1e3089","distinct":true,"message":"Subhrajit|Added the application content layout file","author":{"email":"sroy@thoughtworks.com","name":"Subhrajit Roy"}}],"ref":"refs/heads/master","push_id":66899770},"repo":{"id":3696279,"name":"subhrajitroy/blogs","url":"https://api.github.com/repos/subhrajitroy/blogs"},"actor":{"login":"subhrajitroy","id":223593,"gravatar_id":"836785e2a5c468abb9854c325c1fa866","url":"https://api.github.com/users/subhrajitroy"},"id":"1529213788"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"head":"19f837dba4f88d6dfdf37d1c6b817ab25dfa821f","size":3,"commits":[{"sha":"2e04b7b327e72a13e6b8f551c1044c09ea9e7fce","url":"https://api.github.com/repos/ohader/TYPO3v4-Workspaces/commits/2e04b7b327e72a13e6b8f551c1044c09ea9e7fce","distinct":true,"message":"[FEATURE] Integrate language flags in user interface","author":{"email":"oliver@typo3.org","name":"Oliver Hader"}},{"sha":"4a6e1787668eca6ca50b7909e5a19df741dfc7cb","url":"https://api.github.com/repos/ohader/TYPO3v4-Workspaces/commits/4a6e1787668eca6ca50b7909e5a19df741dfc7cb","distinct":true,"message":"[TASK] Streamline service instance disposal","author":{"email":"oliver@typo3.org","name":"Oliver Hader"}},{"sha":"19f837dba4f88d6dfdf37d1c6b817ab25dfa821f","url":"https://api.github.com/repos/ohader/TYPO3v4-Workspaces/commits/19f837dba4f88d6dfdf37d1c6b817ab25dfa821f","distinct":true,"message":"[FEATURE] Integrate language selector","author":{"email":"oliver@typo3.org","name":"Oliver Hader"}}],"ref":"refs/heads/4.6","push_id":66899767},"repo":{"id":3697422,"name":"ohader/TYPO3v4-Workspaces","url":"https://api.github.com/repos/ohader/TYPO3v4-Workspaces"},"actor":{"login":"ohader","id":402145,"gravatar_id":"cb31505cd5b662ef06fed4a2afdedebc","url":"https://api.github.com/users/ohader"},"id":"1529213784"},{"type":"CreateEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:40:00Z","public":true,"payload":{"description":"","ref":"listmaker-1.0.1","ref_type":"tag","master_branch":"master"},"repo":{"id":3625039,"name":"dgageot/listmaker","url":"https://api.github.com/repos/dgageot/listmaker"},"actor":{"login":"dgageot","id":153495,"gravatar_id":"f0887bf6175ba40dca795eb37883a8cf","url":"https://api.github.com/users/dgageot"},"id":"1529213785"},{"type":"WatchEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"action":"started"},"repo":{"id":3004295,"name":"curphey/pss_book","url":"https://api.github.com/repos/curphey/pss_book"},"actor":{"login":"kozmic","id":6666,"gravatar_id":"50eb80412e22f00b2f88110bd9b9cb7f","url":"https://api.github.com/users/kozmic"},"id":"1529213781"},{"type":"PushEvent","org":{"login":"extension","id":226186,"gravatar_id":"bca94bad8152523e3c11ca4159586311","url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"head":"4960f9cea69f502add73883ea8984caae4fcb464","size":1,"commits":[{"sha":"4960f9cea69f502add73883ea8984caae4fcb464","url":"https://api.github.com/repos/extension/wordpress/commits/4960f9cea69f502add73883ea8984caae4fcb464","distinct":true,"message":"standardize global nav bar across wp themes","author":{"email":"ben.macneill@gmail.com","name":"benmac"}}],"ref":"refs/heads/extension-about","push_id":66899758},"repo":{"id":819426,"name":"extension/wordpress","url":"https://api.github.com/repos/extension/wordpress"},"actor":{"login":"benmacneill","id":226210,"gravatar_id":"daeac9785dd743a777b54db020aa7628","url":"https://api.github.com/users/benmacneill"},"id":"1529213774"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"head":"24561056f7f07d5a59b983b12acd70ab22569bd3","size":1,"commits":[{"sha":"24561056f7f07d5a59b983b12acd70ab22569bd3","url":"https://api.github.com/repos/dgageot/listmaker/commits/24561056f7f07d5a59b983b12acd70ab22569bd3","distinct":true,"message":"[maven-release-plugin] prepare release listmaker-1.0.1","author":{"email":"david@gageot.net","name":"David Gageot"}}],"ref":"refs/heads/master","push_id":66899762},"repo":{"id":3625039,"name":"dgageot/listmaker","url":"https://api.github.com/repos/dgageot/listmaker"},"actor":{"login":"dgageot","id":153495,"gravatar_id":"f0887bf6175ba40dca795eb37883a8cf","url":"https://api.github.com/users/dgageot"},"id":"1529213771"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"head":"85350849020478dd33b711c514a4ad4f837c82c3","size":1,"commits":[{"sha":"85350849020478dd33b711c514a4ad4f837c82c3","url":"https://api.github.com/repos/ndusan/bginfobox/commits/85350849020478dd33b711c514a4ad4f837c82c3","distinct":true,"message":"prevodi","author":{"email":"katarina.djuric.jovanovic@gmail.com","name":"Katarina Djuric Jovanovic"}}],"ref":"refs/heads/develop","push_id":66899756},"repo":{"id":2515080,"name":"ndusan/bginfobox","url":"https://api.github.com/repos/ndusan/bginfobox"},"actor":{"login":"ndusan","id":529817,"gravatar_id":"43d1cc8950bd73ac59184a71a5585fb4","url":"https://api.github.com/users/ndusan"},"id":"1529213766"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"head":"2a52a8e7e41bf2305e3b7e43961734e2c1242f8d","size":1,"commits":[{"sha":"2a52a8e7e41bf2305e3b7e43961734e2c1242f8d","url":"https://api.github.com/repos/iMathieuB/Code-examples/commits/2a52a8e7e41bf2305e3b7e43961734e2c1242f8d","distinct":true,"message":"Added some files","author":{"email":"mathieu.brassard@me.com","name":"Mathieu Brassard"}}],"ref":"refs/heads/master","push_id":66899754},"repo":{"id":3671557,"name":"iMathieuB/Code-examples","url":"https://api.github.com/repos/iMathieuB/Code-examples"},"actor":{"login":"iMathieuB","id":1512260,"gravatar_id":"c1722250e5c71782832d54ceb6bbefbe","url":"https://api.github.com/users/iMathieuB"},"id":"1529213762"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:59Z","public":true,"payload":{"head":"e688998593464321ebfde3ee44efe9db9550c46a","size":1,"commits":[{"sha":"e688998593464321ebfde3ee44efe9db9550c46a","url":"https://api.github.com/repos/jaruchti/3DGame-Programming/commits/e688998593464321ebfde3ee44efe9db9550c46a","distinct":true,"message":"Added fuel to map and minimap","author":{"email":"jaruchti@gmail.com","name":"Jason Ruchti"}}],"ref":"refs/heads/master","push_id":66899748},"repo":{"id":3663069,"name":"jaruchti/3DGame-Programming","url":"https://api.github.com/repos/jaruchti/3DGame-Programming"},"actor":{"login":"jaruchti","id":1313199,"gravatar_id":"de41869ceeb981275f13ebe9c6053ef1","url":"https://api.github.com/users/jaruchti"},"id":"1529213755"},{"type":"CommitCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:54Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/44230311a3dcd684b6c5f81bf2ec9f60?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":60632,"login":"ginatrapani","gravatar_id":"44230311a3dcd684b6c5f81bf2ec9f60","url":"https://api.github.com/users/ginatrapani"},"created_at":"2012-03-12T20:39:54Z","commit_id":"2e7255b2a87849e4986e88547a5d31c77bebc06b","path":"webapp/_lib/model/update/class.UpdateDiskUtil.php","position":30,"id":1074750,"updated_at":"2012-03-12T20:39:54Z","body":"Ah wait, I see there are tests in TestOfUpdate for this class. Never mind!","url":"https://api.github.com/repos/mwilkie/thinkup/comments/1074750","html_url":"https://github.com/mwilkie/thinkup/commit/2e7255b2a8#commitcomment-1074750","line":30}},"repo":{"id":596206,"name":"mwilkie/thinkup","url":"https://api.github.com/repos/mwilkie/thinkup"},"actor":{"login":"ginatrapani","id":60632,"gravatar_id":"44230311a3dcd684b6c5f81bf2ec9f60","url":"https://api.github.com/users/ginatrapani"},"id":"1529213751"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:54Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b3a3b92c5b66ce372e4540bbb601dbe3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":493647,"login":"Teun","gravatar_id":"b3a3b92c5b66ce372e4540bbb601dbe3","url":"https://api.github.com/users/Teun"},"created_at":"2012-03-12T20:39:53Z","id":4461166,"updated_at":"2012-03-12T20:39:53Z","body":"I already did. :) I am still working on my fork and creating a pull\nrequest was the easiest way (I knew) to merge them.\n\nTeun\n\nOp 12 maart 2012 20:23 heeft Nathan Ridley\n\nhet volgende geschreven:\n> Great work! I'll merge now.\n>\n> ---\n> Reply to this email directly or view it on GitHub:\n> https://github.com/axefrog/SimpleBrowser/pull/14#issuecomment-4459562","url":"https://api.github.com/repos/axefrog/SimpleBrowser/issues/comments/4461166"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b3a3b92c5b66ce372e4540bbb601dbe3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":493647,"login":"Teun","gravatar_id":"b3a3b92c5b66ce372e4540bbb601dbe3","url":"https://api.github.com/users/Teun"},"created_at":"2012-03-12T08:56:44Z","closed_at":"2012-03-12T08:57:49Z","labels":[],"comments":2,"milestone":null,"id":3608017,"state":"closed","assignee":null,"number":14,"pull_request":{"diff_url":"https://github.com/axefrog/SimpleBrowser/pull/14.diff","html_url":"https://github.com/axefrog/SimpleBrowser/pull/14","patch_url":"https://github.com/axefrog/SimpleBrowser/pull/14.patch"},"updated_at":"2012-03-12T20:39:53Z","body":"select boxes, multiple selects, label tags, request logging improved","url":"https://api.github.com/repos/axefrog/SimpleBrowser/issues/14","title":"Some improvements around forms","html_url":"https://github.com/axefrog/SimpleBrowser/issues/14"},"action":"created"},"repo":{"id":1059594,"name":"axefrog/SimpleBrowser","url":"https://api.github.com/repos/axefrog/SimpleBrowser"},"actor":{"login":"Teun","id":493647,"gravatar_id":"b3a3b92c5b66ce372e4540bbb601dbe3","url":"https://api.github.com/users/Teun"},"id":"1529213746"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:53Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/e679fead4b7cb50b7b60e7c4f99bc348?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":853051,"login":"nvkelso","gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","url":"https://api.github.com/users/nvkelso"},"created_at":"2012-03-12T20:39:52Z","closed_at":null,"comments":0,"milestone":null,"labels":[{"color":"009900","url":"https://api.github.com/repos/stamen/paperwalking/labels/design","name":"design"}],"id":3618686,"state":"open","assignee":null,"number":20,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"updated_at":"2012-03-12T20:39:52Z","body":"from Eric:\r\n\r\nforget about me when I'm not logged in, then logged in\r\n\r\nsigning up in *after* creating an atlas retroactively makes me the author of all of the atlases I made anonymously ","url":"https://api.github.com/repos/stamen/paperwalking/issues/20","title":"clarify verbiage around claiming a previously anonymous atlas","html_url":"https://github.com/stamen/paperwalking/issues/20"},"action":"opened"},"repo":{"id":2704905,"name":"stamen/paperwalking","url":"https://api.github.com/repos/stamen/paperwalking"},"actor":{"login":"nvkelso","id":853051,"gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","url":"https://api.github.com/users/nvkelso"},"id":"1529213738"},{"type":"CreateEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:53Z","public":true,"payload":{"ref":"master-317-LPS-24794","description":"","ref_type":"branch","master_branch":"master"},"repo":{"id":1926698,"name":"michaelhashimoto/liferay-portal","url":"https://api.github.com/repos/michaelhashimoto/liferay-portal"},"actor":{"login":"michaelhashimoto","id":863043,"gravatar_id":"59e39f4517d776cadd342aec0fedd4b4","url":"https://api.github.com/users/michaelhashimoto"},"id":"1529213736"},{"type":"CreateEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:53Z","public":true,"payload":{"ref":"leaflet","description":"Webfrontend and rendering script for generating isometric 3D maps of OSM data using osm2pov and povray","ref_type":"branch","master_branch":"master"},"repo":{"id":2288132,"name":"bitsteller/osm-isometric-3d","url":"https://api.github.com/repos/bitsteller/osm-isometric-3d"},"actor":{"login":"bitsteller","id":167800,"gravatar_id":"8727b5a97c3a57c1b336dc0c5764d74f","url":"https://api.github.com/users/bitsteller"},"id":"1529213730"},{"type":"PushEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-12T20:39:53Z","public":true,"payload":{"head":"b4434e188cb75006a059b9bcfed9e80c30468359","size":1,"commits":[{"sha":"b4434e188cb75006a059b9bcfed9e80c30468359","url":"https://api.github.com/repos/sullis/gilt4j/commits/b4434e188cb75006a059b9bcfed9e80c30468359","distinct":true,"message":"resolved two bugs:\n\n1) getSale(String, String) URL is incorrect\n https://github.com/sullis/gilt4j/issues/1\n\n2) imageUrls in Sale class is of ImageUrlMap type\n https://github.com/sullis/gilt4j/issues/2","author":{"email":"ssullivan@gilt.com","name":"Sean Sullivan"}}],"ref":"refs/heads/master","push_id":66899732},"repo":{"id":3624309,"name":"sullis/gilt4j","url":"https://api.github.com/repos/sullis/gilt4j"},"actor":{"login":"sullis","id":30938,"gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","url":"https://api.github.com/users/sullis"},"id":"1529213722"}] - -GET /events?page=3 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4785'), ('content-length', '39267'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"59c05b0a0d096e0b605ca3579771009c"'), ('date', 'Mon, 12 Mar 2012 20:40:31 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"repo":{"url":"https://api.github.com/repos/michaelhashimoto/liferay-portal","id":1926698,"name":"michaelhashimoto/liferay-portal"},"type":"CreateEvent","created_at":"2012-03-12T20:39:53Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/michaelhashimoto","gravatar_id":"59e39f4517d776cadd342aec0fedd4b4","id":863043,"login":"michaelhashimoto"},"payload":{"master_branch":"master","ref":"master-317-LPS-24794","description":"","ref_type":"branch"},"id":"1529213736"},{"repo":{"url":"https://api.github.com/repos/bitsteller/osm-isometric-3d","id":2288132,"name":"bitsteller/osm-isometric-3d"},"type":"CreateEvent","created_at":"2012-03-12T20:39:53Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/bitsteller","gravatar_id":"8727b5a97c3a57c1b336dc0c5764d74f","id":167800,"login":"bitsteller"},"payload":{"master_branch":"master","ref":"leaflet","description":"Webfrontend and rendering script for generating isometric 3D maps of OSM data using osm2pov and povray","ref_type":"branch"},"id":"1529213730"},{"repo":{"url":"https://api.github.com/repos/sullis/gilt4j","id":3624309,"name":"sullis/gilt4j"},"type":"PushEvent","created_at":"2012-03-12T20:39:53Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/sullis","gravatar_id":"a8ce921854f5c4d303efe7252c9a7255","id":30938,"login":"sullis"},"payload":{"head":"b4434e188cb75006a059b9bcfed9e80c30468359","size":1,"push_id":66899732,"ref":"refs/heads/master","commits":[{"sha":"b4434e188cb75006a059b9bcfed9e80c30468359","author":{"name":"Sean Sullivan","email":"ssullivan@gilt.com"},"url":"https://api.github.com/repos/sullis/gilt4j/commits/b4434e188cb75006a059b9bcfed9e80c30468359","distinct":true,"message":"resolved two bugs:\n\n1) getSale(String, String) URL is incorrect\n https://github.com/sullis/gilt4j/issues/1\n\n2) imageUrls in Sale class is of ImageUrlMap type\n https://github.com/sullis/gilt4j/issues/2"}]},"id":"1529213722"},{"repo":{"url":"https://api.github.com/repos//","name":"/"},"type":"GistEvent","created_at":"2012-03-12T20:39:48Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/countfloortiles","gravatar_id":"f855b2711a8bdf014655409afa83f9aa","id":976653,"login":"countfloortiles"},"payload":{"action":"update","gist":{"created_at":"2011-12-06T18:08:21Z","public":true,"comments":0,"updated_at":"2012-03-12T20:39:48Z","files":{},"git_push_url":"git@gist.github.com:1439223.git","url":"https://api.github.com/gists/1439223","id":"1439223","git_pull_url":"git://gist.github.com/1439223.git","description":"Building tomcat apps in Scala using maven on the command line","user":{"avatar_url":"https://secure.gravatar.com/avatar/f855b2711a8bdf014655409afa83f9aa?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"f855b2711a8bdf014655409afa83f9aa","url":"https://api.github.com/users/countfloortiles","id":976653,"login":"countfloortiles"},"html_url":"https://gist.github.com/1439223"}},"id":"1529213716"},{"repo":{"url":"https://api.github.com/repos/mharley87/open-data-app","id":3699695,"name":"mharley87/open-data-app"},"type":"CreateEvent","created_at":"2012-03-12T20:39:48Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/mharley87","gravatar_id":"96368598c32009db1573ad64ec293ed1","id":1315747,"login":"mharley87"},"payload":{"master_branch":"master","ref":"master","ref_type":"branch","description":""},"id":"1529213714"},{"repo":{"url":"https://api.github.com/repos/RichardWarburton/jspark","id":2919265,"name":"RichardWarburton/jspark"},"type":"PullRequestEvent","created_at":"2012-03-12T20:39:48Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/nitram509","gravatar_id":"fa01e907fd400c42d481f431c4410954","id":1189394,"login":"nitram509"},"payload":{"number":1,"pull_request":{"issue_url":"https://github.com/RichardWarburton/jspark/issues/1","head":{"label":"nitram509:master","repo":{"name":"jspark","master_branch":null,"size":108,"created_at":"2012-03-12T20:12:55Z","has_wiki":true,"clone_url":"https://github.com/nitram509/jspark.git","private":false,"updated_at":"2012-03-12T20:34:04Z","watchers":1,"language":"Java","ssh_url":"git@github.com:nitram509/jspark.git","fork":true,"git_url":"git://github.com/nitram509/jspark.git","url":"https://api.github.com/repos/nitram509/jspark","id":3699426,"pushed_at":"2012-03-12T20:34:03Z","svn_url":"https://github.com/nitram509/jspark","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"","has_issues":false,"forks":0,"description":"Ascii sparklines in Java.","html_url":"https://github.com/nitram509/jspark","owner":{"avatar_url":"https://secure.gravatar.com/avatar/fa01e907fd400c42d481f431c4410954?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"fa01e907fd400c42d481f431c4410954","url":"https://api.github.com/users/nitram509","id":1189394,"login":"nitram509"}},"sha":"c9e75eeee070b3c962df40ecf269bcc59e84018f","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/fa01e907fd400c42d481f431c4410954?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"fa01e907fd400c42d481f431c4410954","url":"https://api.github.com/users/nitram509","id":1189394,"login":"nitram509"}},"number":1,"merged_by":null,"created_at":"2012-03-12T20:39:47Z","merged":false,"changed_files":2,"comments":0,"body":"Reworked Unicode characters with escape sequences,\r\naccording to holman's latest version.\r\nThis will work with ASCII or any other file encoding\r\nand doesn't depends on UTF-8 file encoding.\r\nThus it's more compatible across different IDEs.","title":"reworked to use Unicode escape sequences","diff_url":"https://github.com/RichardWarburton/jspark/pull/1.diff","additions":4,"updated_at":"2012-03-12T20:39:47Z","_links":{"html":{"href":"https://github.com/RichardWarburton/jspark/pull/1"},"self":{"href":"https://api.github.com/repos/RichardWarburton/jspark/pulls/1"},"comments":{"href":"https://api.github.com/repos/RichardWarburton/jspark/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/RichardWarburton/jspark/pulls/1/comments"}},"url":"https://api.github.com/repos/RichardWarburton/jspark/pulls/1","id":970005,"patch_url":"https://github.com/RichardWarburton/jspark/pull/1.patch","mergeable":null,"commits":1,"merged_at":null,"closed_at":null,"html_url":"https://github.com/RichardWarburton/jspark/pull/1","user":{"avatar_url":"https://secure.gravatar.com/avatar/fa01e907fd400c42d481f431c4410954?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"fa01e907fd400c42d481f431c4410954","url":"https://api.github.com/users/nitram509","id":1189394,"login":"nitram509"},"review_comments":0,"deletions":4,"state":"open","base":{"label":"RichardWarburton:master","repo":{"name":"jspark","master_branch":null,"size":112,"created_at":"2011-12-05T19:26:24Z","has_wiki":true,"clone_url":"https://github.com/RichardWarburton/jspark.git","private":false,"updated_at":"2012-03-12T20:12:55Z","watchers":2,"language":"Java","ssh_url":"git@github.com:RichardWarburton/jspark.git","fork":false,"git_url":"git://github.com/RichardWarburton/jspark.git","url":"https://api.github.com/repos/RichardWarburton/jspark","id":2919265,"pushed_at":"2011-12-05T19:26:41Z","svn_url":"https://github.com/RichardWarburton/jspark","open_issues":1,"has_downloads":true,"mirror_url":null,"homepage":"","has_issues":true,"forks":2,"description":"Ascii sparklines in Java.","html_url":"https://github.com/RichardWarburton/jspark","owner":{"avatar_url":"https://secure.gravatar.com/avatar/c5978e0b3b6b73e7b2d398475b3cb932?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c5978e0b3b6b73e7b2d398475b3cb932","url":"https://api.github.com/users/RichardWarburton","id":328174,"login":"RichardWarburton"}},"sha":"bba7939b2fbb10de1c5dea348704beb29b334d02","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/c5978e0b3b6b73e7b2d398475b3cb932?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c5978e0b3b6b73e7b2d398475b3cb932","url":"https://api.github.com/users/RichardWarburton","id":328174,"login":"RichardWarburton"}}},"action":"opened"},"id":"1529213713"},{"repo":{"url":"https://api.github.com/repos/vraffael/redmine-customization","id":3674171,"name":"vraffael/redmine-customization"},"type":"PushEvent","created_at":"2012-03-12T20:39:48Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/vraffael","gravatar_id":"9a6a9ede6fa11c8c43132c17914a2d6c","id":937766,"login":"vraffael"},"payload":{"head":"8b0bbf5f999bd9d6874cc78081cd53ef3224df21","size":1,"push_id":66899724,"ref":"refs/heads/master","commits":[{"sha":"8b0bbf5f999bd9d6874cc78081cd53ef3224df21","author":{"name":"vraffael","email":"vraffael.lins@gmail.com"},"url":"https://api.github.com/repos/vraffael/redmine-customization/commits/8b0bbf5f999bd9d6874cc78081cd53ef3224df21","distinct":true,"message":"inclusao de campo environment to issue e criacao de view resumida de nova issue"}]},"id":"1529213712"},{"repo":{"url":"https://api.github.com/repos/rlr/kitsune","id":671474,"name":"rlr/kitsune"},"type":"PushEvent","created_at":"2012-03-12T20:39:48Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/rlr","gravatar_id":"00e30f0c3219349c80f3ff7aacc9d34a","id":36629,"login":"rlr"},"payload":{"head":"690314a50a70db2ff2b9d66556651411beef69f7","size":1,"push_id":66899723,"commits":[{"sha":"690314a50a70db2ff2b9d66556651411beef69f7","author":{"name":"Ricky Rosario","email":"rickyrosario@gmail.com"},"url":"https://api.github.com/repos/rlr/kitsune/commits/690314a50a70db2ff2b9d66556651411beef69f7","distinct":true,"message":"api call + test + ui"}],"ref":"refs/heads/kpi-l10n"},"id":"1529213711"},{"repo":{"url":"https://api.github.com/repos/mumble-voip/mumblekit","id":610330,"name":"mumble-voip/mumblekit"},"type":"PushEvent","created_at":"2012-03-12T20:39:47Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"b997c3289f8bc990b13471d43b075697","id":639008,"login":"mumble-voip"},"public":true,"actor":{"url":"https://api.github.com/users/mkrautz","gravatar_id":"4c70879f794a850823f18562de20b5df","id":36527,"login":"mkrautz"},"payload":{"head":"f26168b35eda24962a88124852a28b414c3f042c","size":1,"push_id":66899720,"ref":"refs/heads/master","commits":[{"sha":"f26168b35eda24962a88124852a28b414c3f042c","author":{"name":"Mikkel Krautz","email":"mikkel@krautz.dk"},"url":"https://api.github.com/repos/mumble-voip/mumblekit/commits/f26168b35eda24962a88124852a28b414c3f042c","distinct":true,"message":"MKAudioOutputSpeech: get rid of private struct."}]},"id":"1529213707"},{"repo":{"url":"https://api.github.com/repos/doctrine/phpcr-odm","id":1352419,"name":"doctrine/phpcr-odm"},"type":"PullRequestEvent","created_at":"2012-03-12T20:39:47Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"ba1cea66dea9be22341d7d104d0f22b1","id":209254,"login":"doctrine"},"public":true,"actor":{"url":"https://api.github.com/users/lsmith77","gravatar_id":"54787afbd0e7c30936101c2fa84bd89b","id":300279,"login":"lsmith77"},"payload":{"number":123,"pull_request":{"issue_url":"https://github.com/doctrine/phpcr-odm/issues/123","head":{"label":"doctrine:more_granular_updates","repo":{"name":"phpcr-odm","master_branch":null,"size":612,"created_at":"2011-02-10T21:22:18Z","has_wiki":true,"clone_url":"https://github.com/doctrine/phpcr-odm.git","private":false,"updated_at":"2012-03-12T20:32:38Z","watchers":69,"git_url":"git://github.com/doctrine/phpcr-odm.git","language":"PHP","ssh_url":"git@github.com:doctrine/phpcr-odm.git","fork":false,"url":"https://api.github.com/repos/doctrine/phpcr-odm","id":1352419,"pushed_at":"2012-03-12T20:32:38Z","svn_url":"https://github.com/doctrine/phpcr-odm","open_issues":2,"has_downloads":true,"mirror_url":null,"homepage":"","has_issues":false,"forks":24,"description":"Doctrine2 PHPCR ODM","html_url":"https://github.com/doctrine/phpcr-odm","owner":{"avatar_url":"https://secure.gravatar.com/avatar/ba1cea66dea9be22341d7d104d0f22b1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"ba1cea66dea9be22341d7d104d0f22b1","url":"https://api.github.com/users/doctrine","id":209254,"login":"doctrine"}},"sha":"a34288d7e1da206e567cd75b1ed75df239559606","ref":"more_granular_updates","user":{"avatar_url":"https://secure.gravatar.com/avatar/ba1cea66dea9be22341d7d104d0f22b1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"ba1cea66dea9be22341d7d104d0f22b1","url":"https://api.github.com/users/doctrine","id":209254,"login":"doctrine"}},"number":123,"merged_by":null,"changed_files":1,"created_at":"2012-03-12T20:39:45Z","merged":false,"comments":0,"body":"while the test suite before took about 20sec on my laptop .. it now takes only 17sec\r\n\r\n/cc @chregu ","title":"more precisely determine what was actually changed when computing updates","additions":71,"updated_at":"2012-03-12T20:39:45Z","diff_url":"https://github.com/doctrine/phpcr-odm/pull/123.diff","_links":{"html":{"href":"https://github.com/doctrine/phpcr-odm/pull/123"},"self":{"href":"https://api.github.com/repos/doctrine/phpcr-odm/pulls/123"},"comments":{"href":"https://api.github.com/repos/doctrine/phpcr-odm/issues/123/comments"},"review_comments":{"href":"https://api.github.com/repos/doctrine/phpcr-odm/pulls/123/comments"}},"url":"https://api.github.com/repos/doctrine/phpcr-odm/pulls/123","id":970004,"patch_url":"https://github.com/doctrine/phpcr-odm/pull/123.patch","mergeable":true,"commits":1,"merged_at":null,"closed_at":null,"html_url":"https://github.com/doctrine/phpcr-odm/pull/123","user":{"avatar_url":"https://secure.gravatar.com/avatar/54787afbd0e7c30936101c2fa84bd89b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"54787afbd0e7c30936101c2fa84bd89b","url":"https://api.github.com/users/lsmith77","id":300279,"login":"lsmith77"},"review_comments":0,"deletions":71,"state":"open","base":{"label":"doctrine:master","repo":{"name":"phpcr-odm","master_branch":null,"size":612,"created_at":"2011-02-10T21:22:18Z","has_wiki":true,"clone_url":"https://github.com/doctrine/phpcr-odm.git","private":false,"updated_at":"2012-03-12T20:32:38Z","watchers":69,"git_url":"git://github.com/doctrine/phpcr-odm.git","language":"PHP","ssh_url":"git@github.com:doctrine/phpcr-odm.git","fork":false,"url":"https://api.github.com/repos/doctrine/phpcr-odm","id":1352419,"pushed_at":"2012-03-12T20:32:38Z","svn_url":"https://github.com/doctrine/phpcr-odm","open_issues":2,"has_downloads":true,"mirror_url":null,"homepage":"","has_issues":false,"forks":24,"description":"Doctrine2 PHPCR ODM","html_url":"https://github.com/doctrine/phpcr-odm","owner":{"avatar_url":"https://secure.gravatar.com/avatar/ba1cea66dea9be22341d7d104d0f22b1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"ba1cea66dea9be22341d7d104d0f22b1","url":"https://api.github.com/users/doctrine","id":209254,"login":"doctrine"}},"sha":"3bebf716ac89f06b3ef5feb6ef49123cee0a78c5","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/ba1cea66dea9be22341d7d104d0f22b1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"ba1cea66dea9be22341d7d104d0f22b1","url":"https://api.github.com/users/doctrine","id":209254,"login":"doctrine"}}},"action":"opened"},"id":"1529213703"},{"repo":{"url":"https://api.github.com/repos/tan01/G05-NewtonToolbox","id":3312676,"name":"tan01/G05-NewtonToolbox"},"type":"PushEvent","created_at":"2012-03-12T20:39:47Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/tan01","gravatar_id":"18ece0bdd02cfc3255471ac766458ae5","id":1131984,"login":"tan01"},"payload":{"head":"d10c93381a862080b0c5cdeeba5aa4338fc5209a","size":2,"push_id":66899718,"commits":[{"sha":"1ec61790f51796e3ae55bfc4aa3406bb9e6c1657","author":{"name":"tan01","email":"fenrir754@gmail.com"},"url":"https://api.github.com/repos/tan01/G05-NewtonToolbox/commits/1ec61790f51796e3ae55bfc4aa3406bb9e6c1657","distinct":true,"message":"Checkboxes don't do anything."},{"sha":"d10c93381a862080b0c5cdeeba5aa4338fc5209a","author":{"name":"tan01","email":"fenrir754@gmail.com"},"url":"https://api.github.com/repos/tan01/G05-NewtonToolbox/commits/d10c93381a862080b0c5cdeeba5aa4338fc5209a","distinct":true,"message":"Merge branch 'master' of git@github.com:tan01/G05-NewtonToolbox.git"}],"ref":"refs/heads/master"},"id":"1529213701"},{"repo":{"url":"https://api.github.com/repos/ForgeWare-Inc/MCForge-Vanilla","id":3353709,"name":"ForgeWare-Inc/MCForge-Vanilla"},"type":"PushEvent","created_at":"2012-03-12T20:39:47Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"7053b0b72f4b0fe5273e50babbee99fa","id":1408279,"login":"ForgeWare-Inc"},"public":true,"actor":{"url":"https://api.github.com/users/headdetect","gravatar_id":"e80dae6a3769473c341315c43b051437","id":949494,"login":"headdetect"},"payload":{"head":"2378a7753398c4e79d5dc7d40eb32fdf311d38ba","size":1,"push_id":66899716,"ref":"refs/heads/master","commits":[{"sha":"2378a7753398c4e79d5dc7d40eb32fdf311d38ba","author":{"name":"brayden headdetect","email":"headdetectve2@gmail.com"},"url":"https://api.github.com/repos/ForgeWare-Inc/MCForge-Vanilla/commits/2378a7753398c4e79d5dc7d40eb32fdf311d38ba","distinct":true,"message":"we oh wo wo wo we we DO DO WEEWB WEWEWEWEWEWEW DUDUDUDUDUDU LALALALALALALALALADUDUDUDU WOBBY WOBBY wobbob wobobb, erraceach"}]},"id":"1529213698"},{"repo":{"url":"https://api.github.com/repos/plasmodic/ecto_ros","id":1945697,"name":"plasmodic/ecto_ros"},"type":"PushEvent","created_at":"2012-03-12T20:39:47Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"4be7facec5e98fccdb93685d7e6942c1","id":813169,"login":"plasmodic"},"public":true,"actor":{"url":"https://api.github.com/users/vrabaud","gravatar_id":"58338d5b54a7c829aafecfd002950568","id":700766,"login":"vrabaud"},"payload":{"head":"99d3196477abf2eb2183ea6919f3012696c8b578","size":1,"push_id":66899715,"ref":"refs/heads/master","commits":[{"sha":"99d3196477abf2eb2183ea6919f3012696c8b578","author":{"name":"Vincent Rabaud","email":"vrabaud@willowgarage.com"},"url":"https://api.github.com/repos/plasmodic/ecto_ros/commits/99d3196477abf2eb2183ea6919f3012696c8b578","distinct":true,"message":"better stack dependencies"}]},"id":"1529213697"},{"repo":{"url":"https://api.github.com/repos/emesene/emesene","id":453289,"name":"emesene/emesene"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:44Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"af6c04ed39eb72a6f7aa5b2eda1e79c8","id":174133,"login":"emesene"},"public":true,"actor":{"url":"https://api.github.com/users/arielj","gravatar_id":"6a4707bee2fd826ffe4b40a069677bf1","id":188464,"login":"arielj"},"payload":{"comment":{"created_at":"2012-03-12T20:39:42Z","body":"It looks like a gtk error, can you try running emesene from source? maybe\nwe are using a gtk version that's not compatible with Windows 2000\n\n2012/3/12 Vincenzo <\nreply@reply.github.com\n>\n\n> ```python\n> No handlers could be found for logger \"emesene.e3.common.DBus\"\n> Traceback (most recent call last):\n> File \"emesene.py\", line 833, in \n> File \"emesene.py\", line 830, in main\n> File \"gui\\gtkui\\__init__.pyo\", line 29, in gtk_main\n>\n> File \"gtk\\__init__.pyo\", line 40, in \n>\n> File \"gtk\\_gtk.pyo\", line 12, in \n>\n> File \"gtk\\_gtk.pyo\", line 10, in __load\n>\n> ImportError: DLL load failed: Impossibile trovare la procedura specificata.\n>\n> run on windows 2000 SP4 OS\n>\n> emesene version:\n> https://github.com/downloads/emesene/emesene/emesene-2.12.1-portable%20%20(2012-01-05).exe\n> : 2012-01-05 portable version\n>\n> ---\n> Reply to this email directly or view it on GitHub:\n> https://github.com/emesene/emesene/issues/1069\n>","updated_at":"2012-03-12T20:39:42Z","url":"https://api.github.com/repos/emesene/emesene/issues/comments/4461164","id":4461164,"user":{"avatar_url":"https://secure.gravatar.com/avatar/6a4707bee2fd826ffe4b40a069677bf1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"6a4707bee2fd826ffe4b40a069677bf1","url":"https://api.github.com/users/arielj","id":188464,"login":"arielj"}},"action":"created","issue":{"number":1069,"created_at":"2012-03-12T14:26:49Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"```python\r\nNo handlers could be found for logger \"emesene.e3.common.DBus\"\r\nTraceback (most recent call last):\r\n File \"emesene.py\", line 833, in \r\n File \"emesene.py\", line 830, in main\r\n File \"gui\\gtkui\\__init__.pyo\", line 29, in gtk_main\r\n \r\n File \"gtk\\__init__.pyo\", line 40, in \r\n \r\n File \"gtk\\_gtk.pyo\", line 12, in \r\n \r\n File \"gtk\\_gtk.pyo\", line 10, in __load\r\n \r\nImportError: DLL load failed: Impossibile trovare la procedura specificata.\r\n```\r\nrun on windows 2000 SP4 OS\r\n\r\nemesene version: https://github.com/downloads/emesene/emesene/emesene-2.12.1-portable%20%20(2012-01-05).exe\r\n: 2012-01-05 portable version","title":"[DEBUG] traceback on windows 2000 SP4","updated_at":"2012-03-12T20:39:44Z","url":"https://api.github.com/repos/emesene/emesene/issues/1069","id":3611896,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/emesene/emesene/issues/1069","user":{"avatar_url":"https://secure.gravatar.com/avatar/568466d870827ff1ec316a71846db27c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"568466d870827ff1ec316a71846db27c","url":"https://api.github.com/users/KinG-InFeT","id":193969,"login":"KinG-InFeT"},"labels":[],"state":"open"}},"id":"1529213686"},{"repo":{"url":"https://api.github.com/repos/gabrielcorpse/gedit-twig-template-language","id":2149426,"name":"gabrielcorpse/gedit-twig-template-language"},"type":"ForkEvent","created_at":"2012-03-12T20:39:43Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/nzjames","gravatar_id":"7569f6646dd6e0d9095555600651c020","id":166427,"login":"nzjames"},"payload":{"forkee":{"name":"gedit-twig-template-language","master_branch":null,"size":168,"created_at":"2012-03-12T20:39:42Z","has_wiki":true,"public":true,"clone_url":"https://github.com/nzjames/gedit-twig-template-language.git","private":false,"updated_at":"2012-03-12T20:39:43Z","watchers":1,"ssh_url":"git@github.com:nzjames/gedit-twig-template-language.git","language":null,"git_url":"git://github.com/nzjames/gedit-twig-template-language.git","fork":true,"url":"https://api.github.com/repos/nzjames/gedit-twig-template-language","id":3699727,"pushed_at":"2011-08-04T21:03:26Z","svn_url":"https://github.com/nzjames/gedit-twig-template-language","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"Support for Twig Template language in GEdit","html_url":"https://github.com/nzjames/gedit-twig-template-language","owner":{"avatar_url":"https://secure.gravatar.com/avatar/7569f6646dd6e0d9095555600651c020?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7569f6646dd6e0d9095555600651c020","url":"https://api.github.com/users/nzjames","id":166427,"login":"nzjames"}}},"id":"1529213675"},{"repo":{"url":"https://api.github.com/repos/gbehrmann/opennaas","id":3399247,"name":"gbehrmann/opennaas"},"type":"PushEvent","created_at":"2012-03-12T20:39:43Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/gbehrmann","gravatar_id":"2e582704ee35d1dc0af34256e386f867","id":1125766,"login":"gbehrmann"},"payload":{"head":"a109ce5be11ac5e03986e1ae36301c30e7dbf56a","size":1,"push_id":66899699,"commits":[{"sha":"a109ce5be11ac5e03986e1ae36301c30e7dbf56a","author":{"name":"Gerd Behrmann","email":"behrmann@gmail.com"},"url":"https://api.github.com/repos/gbehrmann/opennaas/commits/a109ce5be11ac5e03986e1ae36301c30e7dbf56a","distinct":true,"message":"build: Rename features to opennaas naming scheme\n\nThe patch adjusts the feature names to avoid the name 'mantychore'. All\nfeature names are prefixed opennaas- (with a couple of exceptions for\ntest bundles).\n\nI am not using the proposed opennaas-extensions- prefix for feature\nnames as it would make the names unusually long compared to other\nServiceMix feature names. Prefixing with opennaas- should be enough to\nmake the names fairly unique.\n\nI renamed mantychore-base to mantychore-cim as the feature is about\nrepresenting the CIM model. In its current form the feature also holds\nthe network model, but this is because the dependency between the two is\nupside down. Once the dependency has been inverted the network model\nbundle should be moved to the network feature. Similarly the\nqueuemanager bundle should be part of opennaas-core, but the bundle\nneeds to be renamed and moved first.\n\nThe opennaas-luminis feature should possibly be split and renamed, but\nfor now I have put those bundles into a single feature."}],"ref":"refs/heads/feature/refactor-feature-repositories"},"id":"1529213671"},{"repo":{"url":"https://api.github.com/repos/mnfienen/cida_emu_util","id":3411130,"name":"mnfienen/cida_emu_util"},"type":"PushEvent","created_at":"2012-03-12T20:39:43Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/mnfienen","gravatar_id":"866ae687672876520ef81fbde202d3b5","id":1110827,"login":"mnfienen"},"payload":{"head":"736e00c35dd63667f5b08cf53c2bc08f8f756d9c","size":1,"push_id":66899698,"commits":[{"sha":"736e00c35dd63667f5b08cf53c2bc08f8f756d9c","author":{"name":"Mike Fienen","email":"mnfienen@usgs.gov"},"url":"https://api.github.com/repos/mnfienen/cida_emu_util/commits/736e00c35dd63667f5b08cf53c2bc08f8f756d9c","distinct":true,"message":"Added linux machines to name_IP_lookup.dat"}],"ref":"refs/heads/master"},"id":"1529213669"},{"repo":{"url":"https://api.github.com/repos/lpgauth/less-rails-bootstrap","id":3699478,"name":"lpgauth/less-rails-bootstrap"},"type":"PushEvent","created_at":"2012-03-12T20:39:42Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/lpgauth","gravatar_id":"6cee04ebecc43cab78790d7021dfb8d4","id":5488,"login":"lpgauth"},"payload":{"head":"11b1a960e3da413625228402f490352df4bf1e56","size":1,"push_id":66899695,"commits":[{"sha":"11b1a960e3da413625228402f490352df4bf1e56","author":{"name":"Louis-Philippe Gauthier","email":"lpgauth@gmail.com"},"url":"https://api.github.com/repos/lpgauth/less-rails-bootstrap/commits/11b1a960e3da413625228402f490352df4bf1e56","distinct":true,"message":"Bootstrap 2.0.2-wip"}],"ref":"refs/heads/master"},"id":"1529213659"},{"repo":{"url":"https://api.github.com/repos/fabpot/Silex","id":914985,"name":"fabpot/Silex"},"type":"WatchEvent","created_at":"2012-03-12T20:39:42Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/regeda","gravatar_id":"8e492cd20d1dacf39660cda2149bfbc4","id":199553,"login":"regeda"},"payload":{"action":"started"},"id":"1529213658"},{"repo":{"url":"https://api.github.com/repos/cs3b/kameleon","id":2941271,"name":"cs3b/kameleon"},"type":"PushEvent","created_at":"2012-03-12T20:39:39Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/cs3b","gravatar_id":"ac18e7df265af355c13b2f51b8494cee","id":120829,"login":"cs3b"},"payload":{"head":"c953174ce0ec79c6b437c7bccac61d8b50dbd483","size":1,"push_id":66899690,"commits":[{"sha":"c953174ce0ec79c6b437c7bccac61d8b50dbd483","author":{"name":"Michał Czyż","email":"michalczyz@gmail.com"},"url":"https://api.github.com/repos/cs3b/kameleon/commits/c953174ce0ec79c6b437c7bccac61d8b50dbd483","distinct":true,"message":"updating readme [skip ci]"}],"ref":"refs/heads/master"},"id":"1529213649"},{"repo":{"url":"https://api.github.com/repos/jvasile/Plinth","id":1398770,"name":"jvasile/Plinth"},"type":"WatchEvent","created_at":"2012-03-12T20:39:38Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/vdemeester","gravatar_id":"c49dbb57f1f8f69136088531b02618c2","id":6508,"login":"vdemeester"},"payload":{"action":"started"},"id":"1529213640"},{"repo":{"url":"https://api.github.com/repos/django-extensions/django-extensions","id":155815,"name":"django-extensions/django-extensions"},"type":"IssuesEvent","created_at":"2012-03-12T20:39:37Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"3ce2f40b80bd483bc0ca8e9d5f999e9f","id":65559,"login":"django-extensions"},"public":true,"actor":{"url":"https://api.github.com/users/msabramo","gravatar_id":"3d91a2f54a0ad7f3044458a064ea7a84","id":305268,"login":"msabramo"},"payload":{"action":"opened","issue":{"number":182,"created_at":"2012-03-12T20:39:36Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"http://packages.python.org/django-extensions/runserver_plus.html\r\n\r\nThe screenshot images are broken.","title":"Screenshot images broken on doc page at packages.python.org","updated_at":"2012-03-12T20:39:36Z","url":"https://api.github.com/repos/django-extensions/django-extensions/issues/182","id":3618679,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/django-extensions/django-extensions/issues/182","user":{"avatar_url":"https://secure.gravatar.com/avatar/3d91a2f54a0ad7f3044458a064ea7a84?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3d91a2f54a0ad7f3044458a064ea7a84","url":"https://api.github.com/users/msabramo","id":305268,"login":"msabramo"},"labels":[],"state":"open"}},"id":"1529213634"},{"repo":{"url":"https://api.github.com/repos/adobe/renegade-bacon-cookie-party","id":3699670,"name":"adobe/renegade-bacon-cookie-party"},"type":"ForkEvent","created_at":"2012-03-12T20:39:37Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"da0a4b198a9f5550e48348742ecb6532","id":476009,"login":"adobe"},"public":true,"actor":{"url":"https://api.github.com/users/joemccann","gravatar_id":"c7cf6cb00c652a5d18917ba8d736fde8","id":48234,"login":"joemccann"},"payload":{"forkee":{"name":"renegade-bacon-cookie-party","master_branch":null,"size":84,"created_at":"2012-03-12T20:39:37Z","has_wiki":true,"public":true,"clone_url":"https://github.com/joemccann/renegade-bacon-cookie-party.git","private":false,"updated_at":"2012-03-12T20:39:37Z","watchers":1,"ssh_url":"git@github.com:joemccann/renegade-bacon-cookie-party.git","git_url":"git://github.com/joemccann/renegade-bacon-cookie-party.git","fork":true,"language":null,"url":"https://api.github.com/repos/joemccann/renegade-bacon-cookie-party","id":3699726,"pushed_at":"2012-03-12T20:35:00Z","svn_url":"https://github.com/joemccann/renegade-bacon-cookie-party","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"Renegade Bacon Cookie Party ","html_url":"https://github.com/joemccann/renegade-bacon-cookie-party","owner":{"avatar_url":"https://secure.gravatar.com/avatar/c7cf6cb00c652a5d18917ba8d736fde8?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c7cf6cb00c652a5d18917ba8d736fde8","url":"https://api.github.com/users/joemccann","id":48234,"login":"joemccann"}}},"id":"1529213636"},{"repo":{"url":"https://api.github.com/repos/blueriver/MuraCMS","id":1067525,"name":"blueriver/MuraCMS"},"type":"ForkEvent","created_at":"2012-03-12T20:39:37Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"f5139468c292863bea5bed05f9449ce8","id":360372,"login":"blueriver"},"public":true,"actor":{"url":"https://api.github.com/users/twelverobots","gravatar_id":"56ef9c66df6902832cd721fdcaa16737","id":640412,"login":"twelverobots"},"payload":{"forkee":{"name":"MuraCMS","master_branch":"develop","size":604,"created_at":"2012-03-12T20:39:36Z","has_wiki":false,"public":true,"clone_url":"https://github.com/twelverobots/MuraCMS.git","private":false,"updated_at":"2012-03-12T20:39:36Z","watchers":1,"language":"ColdFusion","ssh_url":"git@github.com:twelverobots/MuraCMS.git","git_url":"git://github.com/twelverobots/MuraCMS.git","fork":true,"url":"https://api.github.com/repos/twelverobots/MuraCMS","id":3699725,"pushed_at":"2012-03-12T20:36:56Z","svn_url":"https://github.com/twelverobots/MuraCMS","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"http://getmura.com","has_issues":false,"forks":0,"description":"Mura CMS","html_url":"https://github.com/twelverobots/MuraCMS","owner":{"avatar_url":"https://secure.gravatar.com/avatar/56ef9c66df6902832cd721fdcaa16737?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"56ef9c66df6902832cd721fdcaa16737","url":"https://api.github.com/users/twelverobots","id":640412,"login":"twelverobots"}}},"id":"1529213633"},{"repo":{"url":"https://api.github.com/repos/jsoma/tabletop","id":3346542,"name":"jsoma/tabletop"},"type":"WatchEvent","created_at":"2012-03-12T20:39:37Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/chrislkeller","gravatar_id":"8873d006d6843ef6f2306c46f6acfdc1","id":433780,"login":"chrislkeller"},"payload":{"action":"started"},"id":"1529213629"},{"repo":{"url":"https://api.github.com/repos//","name":"/"},"type":"GistEvent","created_at":"2012-03-12T20:39:37Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/rcolepeterson","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","id":598959,"login":"rcolepeterson"},"payload":{"action":"update","gist":{"created_at":"2012-03-12T20:38:06Z","comments":0,"public":true,"git_push_url":"git@gist.github.com:2024545.git","files":{},"updated_at":"2012-03-12T20:38:06Z","url":"https://api.github.com/gists/2024545","id":"2024545","git_pull_url":"git://gist.github.com/2024545.git","description":"CSS for iPad but exclude Safari 4 desktop using a media query?","user":{"avatar_url":"https://secure.gravatar.com/avatar/c0e73cad042ac82ae88cc42a31bcb5d0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","url":"https://api.github.com/users/rcolepeterson","id":598959,"login":"rcolepeterson"},"html_url":"https://gist.github.com/2024545"}},"id":"1529213628"},{"repo":{"url":"https://api.github.com/repos/BrightcoveOS/Rendition-Selector-Plugin","id":1949159,"name":"BrightcoveOS/Rendition-Selector-Plugin"},"type":"PushEvent","created_at":"2012-03-12T20:39:37Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"aba539fc77df1359a52a9394c0de0805","id":442411,"login":"BrightcoveOS"},"public":true,"actor":{"url":"https://api.github.com/users/BrianFranklin","gravatar_id":"f0b27e37199cab12ab448a4fe5be57c9","id":444296,"login":"BrianFranklin"},"payload":{"head":"863e4af63c415c39bcd1875fde18eb8ce78ac0e2","size":1,"push_id":66899681,"ref":"refs/heads/master","commits":[{"sha":"863e4af63c415c39bcd1875fde18eb8ce78ac0e2","author":{"name":"Brian Franklin","email":"Brian@caoine.com"},"url":"https://api.github.com/repos/BrightcoveOS/Rendition-Selector-Plugin/commits/863e4af63c415c39bcd1875fde18eb8ce78ac0e2","distinct":true,"message":"Ensure the correct rendition order for low-to-high quality (via Robert Crooks)"}]},"id":"1529213627"},{"repo":{"url":"https://api.github.com/repos/ekini/transparent-squid-auth","id":3692639,"name":"ekini/transparent-squid-auth"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:39:34Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/darkk","gravatar_id":"ffb8d61d56bbee22d132b0a5b567591d","id":21046,"login":"darkk"},"payload":{"comment":{"position":3,"created_at":"2012-03-12T20:39:34Z","body":"А почему так сложно? Почему не `import sqlite3` ?","line":3,"commit_id":"00874b1c670271bf01ccd604e75a03064cc84af6","updated_at":"2012-03-12T20:39:34Z","url":"https://api.github.com/repos/ekini/transparent-squid-auth/comments/1074749","id":1074749,"path":"squid/squidauth.py","html_url":"https://github.com/ekini/transparent-squid-auth/commit/00874b1c67#commitcomment-1074749","user":{"avatar_url":"https://secure.gravatar.com/avatar/ffb8d61d56bbee22d132b0a5b567591d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ffb8d61d56bbee22d132b0a5b567591d","url":"https://api.github.com/users/darkk","id":21046,"login":"darkk"}}},"id":"1529213622"},{"repo":{"url":"https://api.github.com/repos/beanvalidation/beanvalidation-spec","id":2308578,"name":"beanvalidation/beanvalidation-spec"},"type":"PullRequestReviewCommentEvent","created_at":"2012-03-12T20:39:35Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"2351f6d6609cc61fb5f8b797da5220e3","id":420577,"login":"beanvalidation"},"public":true,"actor":{"url":"https://api.github.com/users/hferentschik","gravatar_id":"a8b46078936d4b0439b7350aed251371","id":296354,"login":"hferentschik"},"payload":{"comment":{"position":183,"created_at":"2012-03-12T20:39:35Z","body":"hmm, I see it in the opposite way. I think < > are common notation to indicate a placeholder/variable. Not having them made my reading \"trip over\". I also think that at other places you used < >. If it just wouldn't be so damn hard to comment/review docbook code on GitHub ;-) ","commit_id":"dc00a3cf6930769a6dc40aff1e51691a726438f5","updated_at":"2012-03-12T20:39:35Z","url":"https://api.github.com/repos/beanvalidation/beanvalidation-spec/pulls/comments/548243","id":548243,"path":"specbook/en/modules/constraint-declaration-validation.xml","user":{"avatar_url":"https://secure.gravatar.com/avatar/a8b46078936d4b0439b7350aed251371?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a8b46078936d4b0439b7350aed251371","url":"https://api.github.com/users/hferentschik","id":296354,"login":"hferentschik"}}},"id":"1529213624"},{"repo":{"url":"https://api.github.com/repos/alexbeutel/YouTube-Power-Hour","id":3675209,"name":"alexbeutel/YouTube-Power-Hour"},"type":"GollumEvent","created_at":"2012-03-12T20:39:33Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/alexbeutel","gravatar_id":"287f422bb0c5a26d8d6c0649ac83ba93","id":55969,"login":"alexbeutel"},"payload":{"pages":[{"sha":"c8afb1644c6d19f016825b452b4afb116bbc4962","title":"Home","action":"created","page_name":"Home","summary":null,"html_url":"https://github.com/alexbeutel/YouTube-Power-Hour/wiki/Home"}]},"id":"1529213620"}] - -GET /events?page=4 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4784'), ('content-length', '38100'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"cf46f49bb6ed1d3e5b7e4cefcbc6c659"'), ('date', 'Mon, 12 Mar 2012 20:40:33 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/rcolepeterson","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","id":598959,"login":"rcolepeterson"},"type":"GistEvent","created_at":"2012-03-12T20:39:37Z","payload":{"action":"update","gist":{"created_at":"2012-03-12T20:38:06Z","comments":0,"public":true,"git_push_url":"git@gist.github.com:2024545.git","files":{},"updated_at":"2012-03-12T20:38:06Z","url":"https://api.github.com/gists/2024545","id":"2024545","git_pull_url":"git://gist.github.com/2024545.git","description":"CSS for iPad but exclude Safari 4 desktop using a media query?","user":{"avatar_url":"https://secure.gravatar.com/avatar/c0e73cad042ac82ae88cc42a31bcb5d0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","url":"https://api.github.com/users/rcolepeterson","id":598959,"login":"rcolepeterson"},"html_url":"https://gist.github.com/2024545"}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213628"},{"actor":{"url":"https://api.github.com/users/BrianFranklin","gravatar_id":"f0b27e37199cab12ab448a4fe5be57c9","id":444296,"login":"BrianFranklin"},"type":"PushEvent","created_at":"2012-03-12T20:39:37Z","payload":{"head":"863e4af63c415c39bcd1875fde18eb8ce78ac0e2","size":1,"push_id":66899681,"ref":"refs/heads/master","commits":[{"sha":"863e4af63c415c39bcd1875fde18eb8ce78ac0e2","author":{"name":"Brian Franklin","email":"Brian@caoine.com"},"url":"https://api.github.com/repos/BrightcoveOS/Rendition-Selector-Plugin/commits/863e4af63c415c39bcd1875fde18eb8ce78ac0e2","distinct":true,"message":"Ensure the correct rendition order for low-to-high quality (via Robert Crooks)"}]},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"aba539fc77df1359a52a9394c0de0805","id":442411,"login":"BrightcoveOS"},"repo":{"url":"https://api.github.com/repos/BrightcoveOS/Rendition-Selector-Plugin","id":1949159,"name":"BrightcoveOS/Rendition-Selector-Plugin"},"id":"1529213627"},{"actor":{"url":"https://api.github.com/users/darkk","gravatar_id":"ffb8d61d56bbee22d132b0a5b567591d","id":21046,"login":"darkk"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:39:34Z","payload":{"comment":{"position":3,"created_at":"2012-03-12T20:39:34Z","body":"А почему так сложно? Почему не `import sqlite3` ?","line":3,"commit_id":"00874b1c670271bf01ccd604e75a03064cc84af6","updated_at":"2012-03-12T20:39:34Z","url":"https://api.github.com/repos/ekini/transparent-squid-auth/comments/1074749","id":1074749,"path":"squid/squidauth.py","html_url":"https://github.com/ekini/transparent-squid-auth/commit/00874b1c67#commitcomment-1074749","user":{"avatar_url":"https://secure.gravatar.com/avatar/ffb8d61d56bbee22d132b0a5b567591d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ffb8d61d56bbee22d132b0a5b567591d","url":"https://api.github.com/users/darkk","id":21046,"login":"darkk"}}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/ekini/transparent-squid-auth","id":3692639,"name":"ekini/transparent-squid-auth"},"id":"1529213622"},{"actor":{"url":"https://api.github.com/users/hferentschik","gravatar_id":"a8b46078936d4b0439b7350aed251371","id":296354,"login":"hferentschik"},"type":"PullRequestReviewCommentEvent","created_at":"2012-03-12T20:39:35Z","payload":{"comment":{"position":183,"created_at":"2012-03-12T20:39:35Z","body":"hmm, I see it in the opposite way. I think < > are common notation to indicate a placeholder/variable. Not having them made my reading \"trip over\". I also think that at other places you used < >. If it just wouldn't be so damn hard to comment/review docbook code on GitHub ;-) ","commit_id":"dc00a3cf6930769a6dc40aff1e51691a726438f5","updated_at":"2012-03-12T20:39:35Z","url":"https://api.github.com/repos/beanvalidation/beanvalidation-spec/pulls/comments/548243","id":548243,"path":"specbook/en/modules/constraint-declaration-validation.xml","user":{"avatar_url":"https://secure.gravatar.com/avatar/a8b46078936d4b0439b7350aed251371?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a8b46078936d4b0439b7350aed251371","url":"https://api.github.com/users/hferentschik","id":296354,"login":"hferentschik"}}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"2351f6d6609cc61fb5f8b797da5220e3","id":420577,"login":"beanvalidation"},"repo":{"url":"https://api.github.com/repos/beanvalidation/beanvalidation-spec","id":2308578,"name":"beanvalidation/beanvalidation-spec"},"id":"1529213624"},{"actor":{"url":"https://api.github.com/users/alexbeutel","gravatar_id":"287f422bb0c5a26d8d6c0649ac83ba93","id":55969,"login":"alexbeutel"},"type":"GollumEvent","created_at":"2012-03-12T20:39:33Z","payload":{"pages":[{"sha":"c8afb1644c6d19f016825b452b4afb116bbc4962","title":"Home","action":"created","page_name":"Home","summary":null,"html_url":"https://github.com/alexbeutel/YouTube-Power-Hour/wiki/Home"}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/alexbeutel/YouTube-Power-Hour","id":3675209,"name":"alexbeutel/YouTube-Power-Hour"},"id":"1529213620"},{"actor":{"url":"https://api.github.com/users/Raven24","gravatar_id":"08e2aadc0e68a46670faf9e226b19ea3","id":117366,"login":"Raven24"},"type":"PullRequestEvent","created_at":"2012-03-12T20:39:32Z","payload":{"number":2996,"pull_request":{"issue_url":"https://github.com/diaspora/diaspora/issues/2996","head":{"label":"Raven24:show-more","repo":{"name":"diaspora","master_branch":null,"size":604,"created_at":"2011-10-08T14:22:50Z","has_wiki":true,"clone_url":"https://github.com/Raven24/diaspora.git","private":false,"updated_at":"2012-03-12T20:33:11Z","watchers":1,"language":"Ruby","ssh_url":"git@github.com:Raven24/diaspora.git","fork":true,"git_url":"git://github.com/Raven24/diaspora.git","url":"https://api.github.com/repos/Raven24/diaspora","id":2538373,"pushed_at":"2012-03-12T20:33:08Z","svn_url":"https://github.com/Raven24/diaspora","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"diasporafoundation.org/get_involved","has_issues":false,"forks":0,"description":"Distributed and contextual social networking","html_url":"https://github.com/Raven24/diaspora","owner":{"avatar_url":"https://secure.gravatar.com/avatar/08e2aadc0e68a46670faf9e226b19ea3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"08e2aadc0e68a46670faf9e226b19ea3","url":"https://api.github.com/users/Raven24","id":117366,"login":"Raven24"}},"sha":"a5e45514a15927d7b7c1fa3d40aedcbf42519098","ref":"show-more","user":{"avatar_url":"https://secure.gravatar.com/avatar/08e2aadc0e68a46670faf9e226b19ea3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"08e2aadc0e68a46670faf9e226b19ea3","url":"https://api.github.com/users/Raven24","id":117366,"login":"Raven24"}},"number":2996,"merged_by":null,"created_at":"2012-03-12T20:39:29Z","merged":false,"changed_files":6,"comments":0,"body":"See #2941 for screenshots and discussion. (It can be closed, since all parts of that pull request have been superseded.)\r\n\r\nThe tests for this still fail, as I don't know how to test something that depends on rendered HTML elements with width and height for it to trigger... any help with that is very much appreciated :)","title":"\"show more\", extracted from #2941","diff_url":"https://github.com/diaspora/diaspora/pull/2996.diff","additions":74,"updated_at":"2012-03-12T20:39:29Z","_links":{"html":{"href":"https://github.com/diaspora/diaspora/pull/2996"},"self":{"href":"https://api.github.com/repos/diaspora/diaspora/pulls/2996"},"comments":{"href":"https://api.github.com/repos/diaspora/diaspora/issues/2996/comments"},"review_comments":{"href":"https://api.github.com/repos/diaspora/diaspora/pulls/2996/comments"}},"url":"https://api.github.com/repos/diaspora/diaspora/pulls/2996","id":970002,"patch_url":"https://github.com/diaspora/diaspora/pull/2996.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":1,"html_url":"https://github.com/diaspora/diaspora/pull/2996","user":{"avatar_url":"https://secure.gravatar.com/avatar/08e2aadc0e68a46670faf9e226b19ea3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"08e2aadc0e68a46670faf9e226b19ea3","url":"https://api.github.com/users/Raven24","id":117366,"login":"Raven24"},"review_comments":0,"deletions":85,"state":"open","base":{"label":"diaspora:master","repo":{"name":"diaspora","master_branch":null,"size":5040,"created_at":"2010-09-15T05:20:04Z","has_wiki":true,"clone_url":"https://github.com/diaspora/diaspora.git","private":false,"updated_at":"2012-03-12T19:06:27Z","watchers":6441,"language":"Ruby","ssh_url":"git@github.com:diaspora/diaspora.git","fork":false,"git_url":"git://github.com/diaspora/diaspora.git","url":"https://api.github.com/repos/diaspora/diaspora","id":911765,"pushed_at":"2012-03-12T18:55:42Z","svn_url":"https://github.com/diaspora/diaspora","open_issues":140,"mirror_url":null,"has_downloads":true,"homepage":"diasporaproject.org/get_involved","has_issues":true,"forks":1281,"description":"Distributed and contextual social networking","html_url":"https://github.com/diaspora/diaspora","owner":{"avatar_url":"https://secure.gravatar.com/avatar/fe1b89f510ecef30dd52360ede99165c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"fe1b89f510ecef30dd52360ede99165c","url":"https://api.github.com/users/diaspora","id":293207,"login":"diaspora"}},"sha":"dbe7a4c72bd439c02af3d87d108f0efe124d6dcf","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/fe1b89f510ecef30dd52360ede99165c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"fe1b89f510ecef30dd52360ede99165c","url":"https://api.github.com/users/diaspora","id":293207,"login":"diaspora"}}},"action":"opened"},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"fe1b89f510ecef30dd52360ede99165c","id":293207,"login":"diaspora"},"repo":{"url":"https://api.github.com/repos/diaspora/diaspora","id":911765,"name":"diaspora/diaspora"},"id":"1529213611"},{"actor":{"url":"https://api.github.com/users/steckel","gravatar_id":"7397fc89b91617e24fef354ef1291480","id":333496,"login":"steckel"},"type":"ForkEvent","created_at":"2012-03-12T20:39:32Z","payload":{"forkee":{"name":"mocha-coffeescript-browser-boilerplate","master_branch":null,"size":112,"created_at":"2012-03-12T20:39:30Z","has_wiki":true,"public":true,"clone_url":"https://github.com/steckel/mocha-coffeescript-browser-boilerplate.git","private":false,"updated_at":"2012-03-12T20:39:30Z","watchers":1,"language":"JavaScript","ssh_url":"git@github.com:steckel/mocha-coffeescript-browser-boilerplate.git","git_url":"git://github.com/steckel/mocha-coffeescript-browser-boilerplate.git","fork":true,"url":"https://api.github.com/repos/steckel/mocha-coffeescript-browser-boilerplate","id":3699723,"pushed_at":"2012-03-04T07:00:08Z","svn_url":"https://github.com/steckel/mocha-coffeescript-browser-boilerplate","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"A minimalistic template for starting a CoffeeScript project with browser testing using visionmedia/mocha and chai.js","html_url":"https://github.com/steckel/mocha-coffeescript-browser-boilerplate","owner":{"avatar_url":"https://secure.gravatar.com/avatar/7397fc89b91617e24fef354ef1291480?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7397fc89b91617e24fef354ef1291480","url":"https://api.github.com/users/steckel","id":333496,"login":"steckel"}}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/quartzmo/mocha-coffeescript-browser-boilerplate","id":3616299,"name":"quartzmo/mocha-coffeescript-browser-boilerplate"},"id":"1529213606"},{"actor":{"url":"https://api.github.com/users/"},"type":"GistEvent","created_at":"2012-03-12T20:39:32Z","payload":{"action":"create","gist":{"created_at":"2012-03-12T20:39:30Z","comments":0,"public":true,"git_push_url":"git@gist.github.com:2024552.git","files":{},"updated_at":"2012-03-12T20:39:30Z","url":"https://api.github.com/gists/2024552","id":"2024552","git_pull_url":"git://gist.github.com/2024552.git","description":"","user":null,"html_url":"https://gist.github.com/2024552"}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213596"},{"actor":{"url":"https://api.github.com/users/deckeraa","gravatar_id":"2246cf3b2a451184329b8b305044fd09","id":1399396,"login":"deckeraa"},"type":"PushEvent","created_at":"2012-03-12T20:39:31Z","payload":{"head":"7ac5927ef7405303ec5e2a6d2ac495651b4dc88b","size":1,"push_id":66899668,"commits":[{"sha":"7ac5927ef7405303ec5e2a6d2ac495651b4dc88b","author":{"name":"Aaron Decker","email":"decker49@gmail.com"},"url":"https://api.github.com/repos/feltnerm/uwponopoly/commits/7ac5927ef7405303ec5e2a6d2ac495651b4dc88b","distinct":true,"message":"Removed most JavaPong-related code; program compiles."}],"ref":"refs/heads/proto"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/feltnerm/uwponopoly","id":3328701,"name":"feltnerm/uwponopoly"},"id":"1529213593"},{"actor":{"url":"https://api.github.com/users/emef","gravatar_id":"177ab4f177827f2f2723fcbcae5501ec","id":259771,"login":"emef"},"type":"CreateEvent","created_at":"2012-03-12T20:39:28Z","payload":{"master_branch":"master","ref_type":"branch","description":"","ref":"master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/emef/gradpath","id":3699686,"name":"emef/gradpath"},"id":"1529213584"},{"actor":{"url":"https://api.github.com/users/gregwebs","gravatar_id":"bad65d3d7319025d73e065d7a29ee22a","id":1183,"login":"gregwebs"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:39:28Z","payload":{"comment":{"position":11,"created_at":"2012-03-12T20:39:28Z","body":"oh, thanks for teaching me a new language :)","line":11,"commit_id":"449b87cbfe2acc5949ecfacb828700015e7525f3","updated_at":"2012-03-12T20:39:28Z","url":"https://api.github.com/repos/yesodweb/scripts/comments/1074748","id":1074748,"path":"install.hs","user":{"avatar_url":"https://secure.gravatar.com/avatar/bad65d3d7319025d73e065d7a29ee22a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"bad65d3d7319025d73e065d7a29ee22a","url":"https://api.github.com/users/gregwebs","id":1183,"login":"gregwebs"},"html_url":"https://github.com/yesodweb/scripts/commit/449b87cbfe#commitcomment-1074748"}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"c224026a2005e5ce9a0e1a6defb9f893","id":930379,"login":"yesodweb"},"repo":{"url":"https://api.github.com/repos/yesodweb/scripts","id":2367946,"name":"yesodweb/scripts"},"id":"1529213580"},{"actor":{"url":"https://api.github.com/users/s1monfarrow","gravatar_id":"2aec3cf80cb385d85aba03dcf22a7c2e","id":809749,"login":"s1monfarrow"},"type":"PushEvent","created_at":"2012-03-12T20:39:28Z","payload":{"head":"58950c605717947afe5debdafdccd3f41c1ae2b1","size":2,"push_id":66899663,"ref":"refs/heads/master","commits":[{"sha":"f3b0bc105c25a042e028a1f3126bf56654d862b6","author":{"name":"Simon Farrow","email":"simon@mostlymonkey.co.uk"},"url":"https://api.github.com/repos/s1monfarrow/notusingit/commits/f3b0bc105c25a042e028a1f3126bf56654d862b6","distinct":true,"message":"added simple auto complete"},{"sha":"58950c605717947afe5debdafdccd3f41c1ae2b1","author":{"name":"Simon Farrow","email":"simon@mostlymonkey.co.uk"},"url":"https://api.github.com/repos/s1monfarrow/notusingit/commits/58950c605717947afe5debdafdccd3f41c1ae2b1","distinct":true,"message":"added simple auto complete"}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/s1monfarrow/notusingit","id":3328612,"name":"s1monfarrow/notusingit"},"id":"1529213579"},{"actor":{"url":"https://api.github.com/users/weby","gravatar_id":"ef5e51e5329af4a8f6ab4ffbf85e2d1b","id":542213,"login":"weby"},"type":"PushEvent","created_at":"2012-03-12T20:39:28Z","payload":{"head":"9454fb3471368dc3e6412a9c5d1142c9c30f672f","size":1,"push_id":66899660,"ref":"refs/heads/master","commits":[{"sha":"9454fb3471368dc3e6412a9c5d1142c9c30f672f","author":{"name":"Donatas Stundys","email":"donatas.stundys@gmail.com"},"url":"https://api.github.com/repos/weby/hw2_rottenpotatoes/commits/9454fb3471368dc3e6412a9c5d1142c9c30f672f","distinct":true,"message":"SaaS Week2 HW5. Added session to remember filtering and sorting params."}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/weby/hw2_rottenpotatoes","id":3696386,"name":"weby/hw2_rottenpotatoes"},"id":"1529213578"},{"actor":{"url":"https://api.github.com/users/baopham","gravatar_id":"d1747ec1e8e0325b54071a4f1dab5744","id":783410,"login":"baopham"},"type":"PushEvent","created_at":"2012-03-12T20:39:27Z","payload":{"head":"6c87d801fdf5859f9d391c3065806fdc300db36c","size":1,"push_id":66899657,"commits":[{"sha":"6c87d801fdf5859f9d391c3065806fdc300db36c","author":{"name":"Bao Pham","email":"gbaopham@gmail.com"},"url":"https://api.github.com/repos/baopham/bphamworld/commits/6c87d801fdf5859f9d391c3065806fdc300db36c","distinct":true,"message":"Use fluid layout for navbar and modify index_base.html\n\n* Override margin-left for BPm'sWorld to align with the page's content\n* Remove block bodytag, use variables for onload scripts instead"}],"ref":"refs/heads/bootstrap"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/baopham/bphamworld","id":3522421,"name":"baopham/bphamworld"},"id":"1529213574"},{"actor":{"url":"https://api.github.com/users/LosD","gravatar_id":"a97535317f69b66d60b881219b4bc3de","id":1282832,"login":"LosD"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:27Z","payload":{"comment":{"created_at":"2012-03-12T20:39:27Z","body":"I never tried, but I would certainly think so.\r\n\r\nHowever, if you already checked out something using SVN (As an external client), you can just use the \"Import Maven Project\" (I think that's what it's called), and it will work perfectly fine.\r\n\r\nI you imported using Subclipse directly as a generic project, you can just use the Configure->As Maven Project context menu on the project.\r\n\r\nm2e-subclipse is not really _needed_ for m2e, it just make things a lot simpler, especially when you want to import a dependent project that is stored in SVN.","updated_at":"2012-03-12T20:39:27Z","url":"https://api.github.com/repos/sonatype/m2eclipse-subclipse/issues/comments/4461162","id":4461162,"user":{"avatar_url":"https://secure.gravatar.com/avatar/a97535317f69b66d60b881219b4bc3de?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a97535317f69b66d60b881219b4bc3de","url":"https://api.github.com/users/LosD","id":1282832,"login":"LosD"}},"action":"created","issue":{"number":4,"created_at":"2011-10-30T03:33:05Z","pull_request":{"diff_url":"https://github.com/sonatype/m2eclipse-subclipse/pull/4.diff","patch_url":"https://github.com/sonatype/m2eclipse-subclipse/pull/4.patch","html_url":"https://github.com/sonatype/m2eclipse-subclipse/pull/4"},"comments":20,"body":"This patch changes the supporting subclipse version into 1.8.x. ","title":"subclipse 1.8.x support","updated_at":"2012-03-12T20:39:27Z","url":"https://api.github.com/repos/sonatype/m2eclipse-subclipse/issues/4","id":2089443,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/sonatype/m2eclipse-subclipse/issues/4","user":{"avatar_url":"https://secure.gravatar.com/avatar/3e81de78ea84508f617c40b6e3926462?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3e81de78ea84508f617c40b6e3926462","url":"https://api.github.com/users/vmi","id":74394,"login":"vmi"},"labels":[],"state":"open"}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"cb46e422424d56564bbe32db56d00de6","id":44938,"login":"sonatype"},"repo":{"url":"https://api.github.com/repos/sonatype/m2eclipse-subclipse","id":694255,"name":"sonatype/m2eclipse-subclipse"},"id":"1529213571"},{"actor":{"url":"https://api.github.com/users/ngraef","gravatar_id":"2eb0096c898a16e4fb2331c7bec52d6e","id":1031317,"login":"ngraef"},"type":"IssuesEvent","created_at":"2012-03-12T20:39:27Z","payload":{"action":"opened","issue":{"number":10,"created_at":"2012-03-12T20:39:26Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"body":"thumb, small, medium, large, original","title":"Add preset photo sizes to API","comments":0,"updated_at":"2012-03-12T20:39:26Z","url":"https://api.github.com/repos/CoJMC/jaam/issues/10","id":3618677,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/2eb0096c898a16e4fb2331c7bec52d6e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"2eb0096c898a16e4fb2331c7bec52d6e","url":"https://api.github.com/users/ngraef","id":1031317,"login":"ngraef"},"html_url":"https://github.com/CoJMC/jaam/issues/10","labels":[],"state":"open"}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"8a746394c74caf7ff7c0c2547adaed8c","id":1048434,"login":"CoJMC"},"repo":{"url":"https://api.github.com/repos/CoJMC/jaam","id":2606188,"name":"CoJMC/jaam"},"id":"1529213566"},{"actor":{"url":"https://api.github.com/users/ericholscher","gravatar_id":"a985c35d6be3c88a87d92b92b0d3756f","id":25510,"login":"ericholscher"},"type":"PushEvent","created_at":"2012-03-12T20:39:26Z","payload":{"head":"518c4ba336d41ad6cc0ad9a5f212e15bd7c433a7","size":1,"push_id":66899650,"ref":"refs/heads/master","commits":[{"sha":"518c4ba336d41ad6cc0ad9a5f212e15bd7c433a7","author":{"name":"Eric Holscher","email":"eric@ericholscher.com"},"url":"https://api.github.com/repos/rtfd/readthedocs.org/commits/518c4ba336d41ad6cc0ad9a5f212e15bd7c433a7","distinct":true,"message":"Fix #165. Document the issues around PIL and image scaling."}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/rtfd/readthedocs.org","id":841835,"name":"rtfd/readthedocs.org"},"id":"1529213558"},{"actor":{"url":"https://api.github.com/users/ericholscher","gravatar_id":"a985c35d6be3c88a87d92b92b0d3756f","id":25510,"login":"ericholscher"},"type":"IssuesEvent","created_at":"2012-03-12T20:39:26Z","payload":{"action":"closed","issue":{"number":165,"created_at":"2012-02-14T12:17:49Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"I have images inserted in my documentation, which are scaled by Sphinx at building time, like:\r\n\r\n```\r\n.. image:: images/neuronWithSpines.png\r\n :scale: 50\r\n```\r\n\r\nWhen I build the projects locally, the images are normally scaled, when instead the project is built on RTH, the images are shown full-size.\r\n\r\nOn RTH does not work: http://readthedocs.org/docs/neuronvisio/en/latest/\r\n\r\n(confront with github pages, for a live example: http://mattions.github.com/neuronvisio/)\r\n\r\n","title":"images rescaling in sphinx are not respected by RTD","updated_at":"2012-03-12T20:39:25Z","url":"https://api.github.com/repos/rtfd/readthedocs.org/issues/165","id":3217836,"assignee":null,"milestone":null,"closed_at":"2012-03-12T20:39:24Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/f8d23fccb4b2e8ed576d1e993d098305?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"f8d23fccb4b2e8ed576d1e993d098305","url":"https://api.github.com/users/mattions","id":96245,"login":"mattions"},"html_url":"https://github.com/rtfd/readthedocs.org/issues/165","labels":[],"state":"closed"}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/rtfd/readthedocs.org","id":841835,"name":"rtfd/readthedocs.org"},"id":"1529213557"},{"actor":{"url":"https://api.github.com/users/MattIn4D","gravatar_id":"40f39672ef419fb25074dcb39bcdcbf7","id":1329241,"login":"MattIn4D"},"type":"WatchEvent","created_at":"2012-03-12T20:39:24Z","payload":{"action":"started"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/paulirish/infinite-scroll","id":646976,"name":"paulirish/infinite-scroll"},"id":"1529213546"},{"actor":{"url":"https://api.github.com/users/moechofe","gravatar_id":"6b13ee9a93cf6329aa75793613e006ae","id":79093,"login":"moechofe"},"type":"PushEvent","created_at":"2012-03-12T20:39:24Z","payload":{"head":"17bf37302e2daf8807c3b5d34cd315323c1955e1","size":2,"push_id":66899644,"commits":[{"sha":"f3bfb241797332b6be3f02b20777408521054231","author":{"name":"moechofe","email":"service@moechofe.com"},"url":"https://api.github.com/repos/ATEpeople/ATE/commits/f3bfb241797332b6be3f02b20777408521054231","distinct":true,"message":"add: able to compile more than one po. #13"},{"sha":"17bf37302e2daf8807c3b5d34cd315323c1955e1","author":{"name":"moechofe","email":"service@moechofe.com"},"url":"https://api.github.com/repos/ATEpeople/ATE/commits/17bf37302e2daf8807c3b5d34cd315323c1955e1","distinct":true,"message":"move: messages to separated files. #13"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"7a451edbeed0fa118495d251f983bb8e","id":1522971,"login":"ATEpeople"},"repo":{"url":"https://api.github.com/repos/ATEpeople/ATE","id":3679247,"name":"ATEpeople/ATE"},"id":"1529213545"},{"actor":{"url":"https://api.github.com/users/pepito2k","gravatar_id":"3e3981261dafed89114db84c7f6d92d2","id":613343,"login":"pepito2k"},"type":"WatchEvent","created_at":"2012-03-12T20:39:24Z","payload":{"action":"started"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/needim/noty","id":3289628,"name":"needim/noty"},"id":"1529213542"},{"actor":{"url":"https://api.github.com/users/stephenlb","gravatar_id":"3b4ddb8b9c296ecf6a7cc338da508f98","id":45214,"login":"stephenlb"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:23Z","payload":{"comment":{"created_at":"2012-03-12T20:39:22Z","body":"Hi @timdrew!\r\n\r\nThank you for contacting PubNub. I will help you with you questions. First though I want to confirm your concern about our Flash API. The Flash API is less mature than our Objective-C, Java, Android, JavaScript and other popular APIs. The good news is that the API, like you said, is fairly strait forward. That said, we have not provided extensive tests for the Flash API, as it is in low demand. However we want to provide you the information you need to get started quickly on a path to stable API. \r\n\r\nThe best way to get started with the Flash API is to confirm that the logic written in Action Script actually fits our HTTP Rest API: http://www.pubnub.com/tutorial/http-rest-push-api and a much more extensive guide may be found here: https://github.com/pubnub/pubnub-api/blob/master/README.md\r\n\r\nYou may want to write your own wrapper to this HTTP Rest API! And you'll find out that it is fairly quick to do. Though I recommend upgrading the Flash API by fixing the parts that are not working for you.\r\n\r\nAlternatively, I recommend checking out the WIKI Posted API for Flash here - http://www.wikiflashed.com/wiki/PubNub - which you may have already seen.\r\n\r\nSo I gave you three new pathways to provide a fix for your situation.\r\nWrite your own wrapper using the PubNub HTTP Rest API\r\nUpgrading the Current API to support your needs.\r\nChecking out the Third Party API on the Wiki.\r\nLet me know if this gets you further down the line. We do not support flash, however I will be here to provide helpful details with regards on connecting to the PubNub Cloud via the HTTP Rest API. :-)","updated_at":"2012-03-12T20:39:22Z","url":"https://api.github.com/repos/pubnub/pubnub-api/issues/comments/4461156","id":4461156,"user":{"avatar_url":"https://secure.gravatar.com/avatar/3b4ddb8b9c296ecf6a7cc338da508f98?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3b4ddb8b9c296ecf6a7cc338da508f98","url":"https://api.github.com/users/stephenlb","id":45214,"login":"stephenlb"}},"action":"created","issue":{"number":79,"created_at":"2012-03-12T11:14:50Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"I have created a Flash client using the provided PubNub SDK. It connects to two channels successfully.\r\n\r\nThe first channel provides a regular heartbeat style payload. The second is a user specific channel and is for irregular less frequent messages.\r\n\r\nBoth channels connect fine and start receiving the intended payloads however the second channel goes dead after a period of time and the client no longer received any messages on that channel.\r\n\r\nThis may be a Flash SDK specific issue as if I connect via http://www.pubnub.com/console to the same channel, the channel doesn't go dead.\r\n\r\nIs this a known issue with the Flash SDK? Is there something I have to do to keep a channel with irregular updates open?\r\n\r\nAny help would be greatly appreciated.","title":"Messages not always being received on particular channel using Flash SDK","updated_at":"2012-03-12T20:39:22Z","url":"https://api.github.com/repos/pubnub/pubnub-api/issues/79","id":3609533,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/0271e3e556e8a7c62ae44358639a7606?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"0271e3e556e8a7c62ae44358639a7606","url":"https://api.github.com/users/timdrew","id":547049,"login":"timdrew"},"labels":[],"html_url":"https://github.com/pubnub/pubnub-api/issues/79","state":"open"}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"c525d4a34f41d2c2cb2d2c33ede7aeb1","id":297109,"login":"pubnub"},"repo":{"url":"https://api.github.com/repos/pubnub/pubnub-api","id":704337,"name":"pubnub/pubnub-api"},"id":"1529213538"},{"actor":{"url":"https://api.github.com/users/glenswinfield","gravatar_id":"baa73e5495071fc1bf154dbe6d84bbe5","id":1146295,"login":"glenswinfield"},"type":"PushEvent","created_at":"2012-03-12T20:39:23Z","payload":{"head":"c881f8d4f268645c66f0b41fade26cc37b3de95f","size":1,"push_id":66899639,"commits":[{"sha":"c881f8d4f268645c66f0b41fade26cc37b3de95f","author":{"name":"Glen Swinfield","email":"glen.swinfield@gmail.com"},"url":"https://api.github.com/repos/glenswinfield/snelg-mockapi/commits/c881f8d4f268645c66f0b41fade26cc37b3de95f","distinct":true,"message":"Added vhost example and updated README"}],"ref":"refs/heads/develop"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/glenswinfield/snelg-mockapi","id":3679898,"name":"glenswinfield/snelg-mockapi"},"id":"1529213535"},{"actor":{"url":"https://api.github.com/users/ginatrapani","gravatar_id":"44230311a3dcd684b6c5f81bf2ec9f60","id":60632,"login":"ginatrapani"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:39:22Z","payload":{"comment":{"position":30,"created_at":"2012-03-12T20:39:22Z","body":"I've got 45GB free on my Mac, but I get the error message that there isn't enough space available. No tests for this class?","line":30,"commit_id":"2e7255b2a87849e4986e88547a5d31c77bebc06b","updated_at":"2012-03-12T20:39:22Z","url":"https://api.github.com/repos/mwilkie/thinkup/comments/1074747","id":1074747,"path":"webapp/_lib/model/update/class.UpdateDiskUtil.php","user":{"avatar_url":"https://secure.gravatar.com/avatar/44230311a3dcd684b6c5f81bf2ec9f60?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"44230311a3dcd684b6c5f81bf2ec9f60","url":"https://api.github.com/users/ginatrapani","id":60632,"login":"ginatrapani"},"html_url":"https://github.com/mwilkie/thinkup/commit/2e7255b2a8#commitcomment-1074747"}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/mwilkie/thinkup","id":596206,"name":"mwilkie/thinkup"},"id":"1529213534"},{"actor":{"url":"https://api.github.com/users/hpeters","gravatar_id":"e87411486574edd9426fbc385e8d8ef1","id":837843,"login":"hpeters"},"type":"PushEvent","created_at":"2012-03-12T20:39:22Z","payload":{"head":"486ceea606d9365bc06363fe95829d3343e0b38c","size":1,"push_id":66899637,"commits":[{"sha":"486ceea606d9365bc06363fe95829d3343e0b38c","author":{"name":"Harley Peters","email":"harley@thepetersclan.com"},"url":"https://api.github.com/repos/MythTV-Themes/TintedGlass/commits/486ceea606d9365bc06363fe95829d3343e0b38c","distinct":false,"message":"Fixed a couple of textarea \"bugs\" in the watchrecordings and the manager windows in recodings-ui.xml and video-ui.xml.\n\nStops spamming the log file with the following errors.\n\nQPainter::begin: Paint device returned engine == 0, type: 3\n2012-03-12 11:54:35.963635 E MythPainter::GetImageFromTextLayout: Invalid canvas.\n\nmodified: recordings-ui.xml\nmodified: video-ui.xml"}],"ref":"refs/heads/mythtv-master"},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"4f3d77151b2b214d6dd78fa0164e229d","id":474652,"login":"MythTV-Themes"},"repo":{"url":"https://api.github.com/repos/MythTV-Themes/TintedGlass","id":3597437,"name":"MythTV-Themes/TintedGlass"},"id":"1529213529"},{"actor":{"url":"https://api.github.com/users/famoseagle","gravatar_id":"6b0d8835a4e95219519f005ca170006d","id":7338,"login":"famoseagle"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","payload":{"head":"50b1e6dd9340515b8c2c4470eaf4c8cc53be336c","size":1,"push_id":66899624,"commits":[{"sha":"50b1e6dd9340515b8c2c4470eaf4c8cc53be336c","author":{"name":"Amos Elliston","email":"amos@geni.com"},"url":"https://api.github.com/repos/pocketchange/pocketchange-android-sdk/commits/50b1e6dd9340515b8c2c4470eaf4c8cc53be336c","distinct":true,"message":"one more try"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"b9734e0faa7f131ca253d20c68a798fa","id":1214186,"login":"pocketchange"},"repo":{"url":"https://api.github.com/repos/pocketchange/pocketchange-android-sdk","id":3004381,"name":"pocketchange/pocketchange-android-sdk"},"id":"1529213506"},{"actor":{"url":"https://api.github.com/users/nicolasgramlich","gravatar_id":"ff1dc0e0a23f1c2270babc57bb8fd60c","id":287060,"login":"nicolasgramlich"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","payload":{"head":"f9dd112fef6d8191abafea1f47a139d763f0de5f","size":1,"push_id":66899627,"commits":[{"sha":"f9dd112fef6d8191abafea1f47a139d763f0de5f","author":{"name":"Nicolas Gramlich","email":"ngramlich@zynga.com"},"url":"https://api.github.com/repos/nicolasgramlich/AndEngine/commits/f9dd112fef6d8191abafea1f47a139d763f0de5f","distinct":true,"message":"Another minor cleanup from previous merge."}],"ref":"refs/heads/GLES2"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/nicolasgramlich/AndEngine","id":2828194,"name":"nicolasgramlich/AndEngine"},"id":"1529213524"},{"actor":{"url":"https://api.github.com/users/chrisspiking","gravatar_id":"192d7310df3b22383f9de323c4e0f5c8","id":1425764,"login":"chrisspiking"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","payload":{"head":"1693518af20e712faabbdbfa421187b741dd0cab","size":1,"push_id":66899630,"commits":[{"sha":"1693518af20e712faabbdbfa421187b741dd0cab","author":{"name":"Chris Spiking","email":"chrisspiking@gmail.com"},"url":"https://api.github.com/repos/chrisspiking/hw2_rottenpotatoes/commits/1693518af20e712faabbdbfa421187b741dd0cab","distinct":true,"message":"First Commit"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/chrisspiking/hw2_rottenpotatoes","id":3689790,"name":"chrisspiking/hw2_rottenpotatoes"},"id":"1529213520"},{"actor":{"url":"https://api.github.com/users/cableman","gravatar_id":"651a8858a5216a414aeb03bd2d84fb90","id":111397,"login":"cableman"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","payload":{"head":"ab32e1d52ae8797974cabf2f323a41369059ce32","size":1,"push_id":66899628,"commits":[{"sha":"ab32e1d52ae8797974cabf2f323a41369059ce32","author":{"name":"Jesper Kristensen","email":"cableman@linuxdev.dk"},"url":"https://api.github.com/repos/cableman/ski-hytten/commits/ab32e1d52ae8797974cabf2f323a41369059ce32","distinct":true,"message":"Added front page feature"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/cableman/ski-hytten","id":3240929,"name":"cableman/ski-hytten"},"id":"1529213518"},{"actor":{"url":"https://api.github.com/users/eweitnauer","gravatar_id":"2db5bef022028e9db45e8cbaebbf042f","id":53043,"login":"eweitnauer"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","payload":{"head":"3aab05f5e97b91f71e5d77f5cddb9b9efe53c3ed","size":1,"push_id":66899633,"commits":[{"sha":"3aab05f5e97b91f71e5d77f5cddb9b9efe53c3ed","author":{"name":"Erik Weitnauer","email":"eweitnauer@gmail.com"},"url":"https://api.github.com/repos/eweitnauer/impulse.js/commits/3aab05f5e97b91f71e5d77f5cddb9b9efe53c3ed","distinct":true,"message":"changed geom.js submodule to git readonly. This way it can be pulled on clients that dont have write permission on my github account :)"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/eweitnauer/impulse.js","id":3627992,"name":"eweitnauer/impulse.js"},"id":"1529213517"}] - -GET /events?page=5 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4783'), ('content-length', '32868'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"401d6b6d915e4ac9e96fec0a345905ac"'), ('date', 'Mon, 12 Mar 2012 20:40:34 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"repo":{"url":"https://api.github.com/repos//","name":"/"},"type":"GistEvent","created_at":"2012-03-12T20:39:21Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/rcolepeterson","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","id":598959,"login":"rcolepeterson"},"payload":{"action":"update","gist":{"created_at":"2011-07-12T17:07:27Z","public":true,"comments":0,"git_push_url":"git@gist.github.com:1078436.git","updated_at":"2011-07-12T17:07:27Z","files":{},"url":"https://api.github.com/gists/1078436","id":"1078436","git_pull_url":"git://gist.github.com/1078436.git","description":"detect if sprite is viewable within scrollRect?","user":{"gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","avatar_url":"https://secure.gravatar.com/avatar/c0e73cad042ac82ae88cc42a31bcb5d0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rcolepeterson","id":598959,"login":"rcolepeterson"},"html_url":"https://gist.github.com/1078436"}},"id":"1529213516"},{"repo":{"url":"https://api.github.com/repos/slipcor/pvparena","id":2535162,"name":"slipcor/pvparena"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/slipcor","gravatar_id":"824e741b78231dfb17a44a2b7e2e2dbd","id":970122,"login":"slipcor"},"payload":{"head":"fd69e17ef9385a8ee1df0425bd2b27eb4e3a1a69","size":1,"push_id":66899626,"commits":[{"sha":"fd69e17ef9385a8ee1df0425bd2b27eb4e3a1a69","author":{"name":"Chris Fehling","email":"chris@slipcor.de"},"url":"https://api.github.com/repos/slipcor/pvparena/commits/fd69e17ef9385a8ee1df0425bd2b27eb4e3a1a69","distinct":true,"message":"v0.6.29.5 - version update"}],"ref":"refs/heads/master"},"id":"1529213513"},{"repo":{"url":"https://api.github.com/repos/dynjs/dynjs","id":2469105,"name":"dynjs/dynjs"},"type":"PushEvent","created_at":"2012-03-12T20:39:21Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"11534007eb3579d1318909c51dfd069c","id":766311,"login":"dynjs"},"public":true,"actor":{"url":"https://api.github.com/users/qmx","gravatar_id":"684b4bfe97a40454db104abcb601e375","id":66734,"login":"qmx"},"payload":{"head":"82e7007baed7d136d287835a57d8053fcde73fda","size":2,"push_id":66899625,"ref":"refs/heads/master","commits":[{"sha":"3af54410fa5b1e0438c83d1e75e327dbdab948eb","author":{"name":"Bob McWhirter","email":"bob@mcwhirter.org"},"url":"https://api.github.com/repos/dynjs/dynjs/commits/3af54410fa5b1e0438c83d1e75e327dbdab948eb","distinct":true,"message":"Attach sources and javadocs."},{"sha":"82e7007baed7d136d287835a57d8053fcde73fda","author":{"name":"Douglas Campos","email":"qmx@qmx.me"},"url":"https://api.github.com/repos/dynjs/dynjs/commits/82e7007baed7d136d287835a57d8053fcde73fda","distinct":true,"message":"Merge remote-tracking branch 'bobmcwhirter/pom-improvements'"}]},"id":"1529213510"},{"repo":{"url":"https://api.github.com/repos//","name":"/"},"type":"GistEvent","created_at":"2012-03-12T20:39:21Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/sandfish8","gravatar_id":"7f54fed96eefe2a7a6e83969b14a60e6","id":199130,"login":"sandfish8"},"payload":{"action":"create","gist":{"created_at":"2012-03-12T20:39:19Z","comments":0,"public":true,"files":{},"updated_at":"2012-03-12T20:39:19Z","git_push_url":"git@gist.github.com:2024551.git","url":"https://api.github.com/gists/2024551","id":"2024551","git_pull_url":"git://gist.github.com/2024551.git","description":"","user":{"avatar_url":"https://secure.gravatar.com/avatar/7f54fed96eefe2a7a6e83969b14a60e6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7f54fed96eefe2a7a6e83969b14a60e6","url":"https://api.github.com/users/sandfish8","id":199130,"login":"sandfish8"},"html_url":"https://gist.github.com/2024551"}},"id":"1529213512"},{"repo":{"url":"https://api.github.com/repos/malixsys/pyloto","id":3699647,"name":"malixsys/pyloto"},"type":"CreateEvent","created_at":"2012-03-12T20:39:21Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/malixsys","gravatar_id":"0065f23fe6941a1917152b9322a30cdc","id":664650,"login":"malixsys"},"payload":{"master_branch":"master","ref_type":"branch","ref":"master","description":"pyloto"},"id":"1529213507"},{"repo":{"url":"https://api.github.com/repos/dynjs/dynjs","id":2469105,"name":"dynjs/dynjs"},"type":"PullRequestEvent","created_at":"2012-03-12T20:39:21Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"11534007eb3579d1318909c51dfd069c","id":766311,"login":"dynjs"},"public":true,"actor":{"url":"https://api.github.com/users/qmx","gravatar_id":"684b4bfe97a40454db104abcb601e375","id":66734,"login":"qmx"},"payload":{"number":11,"pull_request":{"issue_url":"https://github.com/dynjs/dynjs/issues/11","head":{"label":"bobmcwhirter:pom-improvements","repo":{"name":"dynjs","master_branch":null,"size":108,"created_at":"2012-03-09T15:28:18Z","has_wiki":true,"clone_url":"https://github.com/bobmcwhirter/dynjs.git","private":false,"updated_at":"2012-03-12T20:32:35Z","watchers":1,"ssh_url":"git@github.com:bobmcwhirter/dynjs.git","fork":true,"language":"Java","git_url":"git://github.com/bobmcwhirter/dynjs.git","url":"https://api.github.com/repos/bobmcwhirter/dynjs","id":3671877,"pushed_at":"2012-03-12T20:32:35Z","svn_url":"https://github.com/bobmcwhirter/dynjs","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://dynjs.org","has_issues":false,"forks":0,"description":"(almost) 100% invokedynamic js impl","html_url":"https://github.com/bobmcwhirter/dynjs","owner":{"avatar_url":"https://secure.gravatar.com/avatar/3b6c8fb19641bde25b8553f398b286c1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3b6c8fb19641bde25b8553f398b286c1","url":"https://api.github.com/users/bobmcwhirter","id":15951,"login":"bobmcwhirter"}},"sha":"3af54410fa5b1e0438c83d1e75e327dbdab948eb","ref":"pom-improvements","user":{"avatar_url":"https://secure.gravatar.com/avatar/3b6c8fb19641bde25b8553f398b286c1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3b6c8fb19641bde25b8553f398b286c1","url":"https://api.github.com/users/bobmcwhirter","id":15951,"login":"bobmcwhirter"}},"number":11,"created_at":"2012-03-12T20:32:48Z","merged_by":{"avatar_url":"https://secure.gravatar.com/avatar/684b4bfe97a40454db104abcb601e375?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"684b4bfe97a40454db104abcb601e375","url":"https://api.github.com/users/qmx","id":66734,"login":"qmx"},"merged":true,"changed_files":1,"comments":0,"body":"","title":"Attach sources and javadocs.","diff_url":"https://github.com/dynjs/dynjs/pull/11.diff","additions":32,"updated_at":"2012-03-12T20:39:19Z","_links":{"html":{"href":"https://github.com/dynjs/dynjs/pull/11"},"self":{"href":"https://api.github.com/repos/dynjs/dynjs/pulls/11"},"comments":{"href":"https://api.github.com/repos/dynjs/dynjs/issues/11/comments"},"review_comments":{"href":"https://api.github.com/repos/dynjs/dynjs/pulls/11/comments"}},"url":"https://api.github.com/repos/dynjs/dynjs/pulls/11","id":969944,"patch_url":"https://github.com/dynjs/dynjs/pull/11.patch","mergeable":null,"merged_at":"2012-03-12T20:39:19Z","closed_at":"2012-03-12T20:39:19Z","commits":1,"user":{"avatar_url":"https://secure.gravatar.com/avatar/3b6c8fb19641bde25b8553f398b286c1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3b6c8fb19641bde25b8553f398b286c1","url":"https://api.github.com/users/bobmcwhirter","id":15951,"login":"bobmcwhirter"},"review_comments":0,"html_url":"https://github.com/dynjs/dynjs/pull/11","deletions":0,"state":"closed","base":{"label":"dynjs:master","repo":{"name":"dynjs","master_branch":null,"size":144,"created_at":"2011-09-27T16:58:05Z","has_wiki":true,"clone_url":"https://github.com/dynjs/dynjs.git","private":false,"updated_at":"2012-03-12T20:39:20Z","watchers":187,"ssh_url":"git@github.com:dynjs/dynjs.git","fork":false,"language":"Java","git_url":"git://github.com/dynjs/dynjs.git","url":"https://api.github.com/repos/dynjs/dynjs","id":2469105,"pushed_at":"2012-03-12T20:39:18Z","svn_url":"https://github.com/dynjs/dynjs","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://dynjs.org","has_issues":false,"forks":19,"description":"(almost) 100% invokedynamic js impl","html_url":"https://github.com/dynjs/dynjs","owner":{"avatar_url":"https://secure.gravatar.com/avatar/11534007eb3579d1318909c51dfd069c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"11534007eb3579d1318909c51dfd069c","url":"https://api.github.com/users/dynjs","id":766311,"login":"dynjs"}},"sha":"6fcdf8bb2531c84890514dda1eea0d800da66f94","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/11534007eb3579d1318909c51dfd069c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"11534007eb3579d1318909c51dfd069c","url":"https://api.github.com/users/dynjs","id":766311,"login":"dynjs"}}},"action":"closed"},"id":"1529213505"},{"repo":{"url":"https://api.github.com/repos/armadillu/SpaceReporter","id":3699722,"name":"armadillu/SpaceReporter"},"type":"CreateEvent","created_at":"2012-03-12T20:39:20Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/armadillu","gravatar_id":"b87a82d7c86161432ee6388c7cbd5e2c","id":167057,"login":"armadillu"},"payload":{"master_branch":"master","description":"SpaceReporter is a small utility that sits on your menu bar and tells you how empty (or full) your hard drives are.","ref":null,"ref_type":"repository"},"id":"1529213503"},{"repo":{"url":"https://api.github.com/repos/k2sports/k2skis-wordpress","id":2502863,"name":"k2sports/k2skis-wordpress"},"type":"PushEvent","created_at":"2012-03-12T20:39:18Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"f7dd6db0d74fdafbd3a9ff4d76aa77a4","id":1085187,"login":"k2sports"},"public":true,"actor":{"url":"https://api.github.com/users/whatisthehumanspirit","gravatar_id":"6641dbe2fa40f52dbd89aa206904bc41","id":1015389,"login":"whatisthehumanspirit"},"payload":{"head":"25096e2cc3dfe50843ee8ddd37ffa10564e96114","size":1,"push_id":66899623,"commits":[{"sha":"25096e2cc3dfe50843ee8ddd37ffa10564e96114","author":{"name":"Alexis Carlson","email":"whatisthehumanspirit@gmail.com"},"url":"https://api.github.com/repos/k2sports/k2skis-wordpress/commits/25096e2cc3dfe50843ee8ddd37ffa10564e96114","distinct":true,"message":"Overrode web site CSS."}],"ref":"refs/heads/master"},"id":"1529213502"},{"repo":{"url":"https://api.github.com/repos//","name":"/"},"type":"GistEvent","created_at":"2012-03-12T20:39:18Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/"},"payload":{"action":"create","gist":{"created_at":"2012-03-12T20:39:17Z","comments":0,"public":true,"files":{},"git_push_url":"git@gist.github.com:2024550.git","updated_at":"2012-03-12T20:39:17Z","url":"https://api.github.com/gists/2024550","id":"2024550","git_pull_url":"git://gist.github.com/2024550.git","description":null,"user":null,"html_url":"https://gist.github.com/2024550"}},"id":"1529213497"},{"repo":{"url":"https://api.github.com/repos/yifanzhang/django-fixture-magic","id":3651456,"name":"yifanzhang/django-fixture-magic"},"type":"PushEvent","created_at":"2012-03-12T20:39:17Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/yifanzhang","gravatar_id":"c398091c9487b7b9f5a2d1f656af0a17","id":1334677,"login":"yifanzhang"},"payload":{"head":"4bb06cda148fd30ae59940e5bc8d61f747d6966e","size":1,"push_id":66899618,"commits":[{"sha":"4bb06cda148fd30ae59940e5bc8d61f747d6966e","author":{"name":"Yifan Zhang","email":"yifan@wavii.com"},"url":"https://api.github.com/repos/yifanzhang/django-fixture-magic/commits/4bb06cda148fd30ae59940e5bc8d61f747d6966e","distinct":true,"message":"deal with OneToOneField"}],"ref":"refs/heads/master"},"id":"1529213492"},{"repo":{"url":"https://api.github.com/repos/davkutalek/CommunMap","id":2301055,"name":"davkutalek/CommunMap"},"type":"PushEvent","created_at":"2012-03-12T20:39:16Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/davkutalek","gravatar_id":"325a64530f88710c80bb2c28ccc4710a","id":735966,"login":"davkutalek"},"payload":{"head":"923c78c12b7bb11df2f03ecacff686f95a6424a9","size":1,"push_id":66899614,"commits":[{"sha":"923c78c12b7bb11df2f03ecacff686f95a6424a9","author":{"name":"David Kutalek","email":"davkutalek@gmail.com"},"url":"https://api.github.com/repos/davkutalek/CommunMap/commits/923c78c12b7bb11df2f03ecacff686f95a6424a9","distinct":true,"message":"Everything seems to be working, except Polygons do not show up in detail\npane"}],"ref":"refs/heads/master"},"id":"1529213484"},{"repo":{"url":"https://api.github.com/repos/janl/node-CouchDBChanges","id":3478486,"name":"janl/node-CouchDBChanges"},"type":"WatchEvent","created_at":"2012-03-12T20:39:16Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/ryanramage","gravatar_id":"1fd8567a6aefb65b8a44d343855923c9","id":795834,"login":"ryanramage"},"payload":{"action":"started"},"id":"1529213483"},{"repo":{"url":"https://api.github.com/repos/Shopify/liquid","id":15435,"name":"Shopify/liquid"},"type":"CreateEvent","created_at":"2012-03-12T20:39:16Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"c5c29e455b8c4f05112abbc01af58a29","id":8085,"login":"Shopify"},"public":true,"actor":{"url":"https://api.github.com/users/Soleone","gravatar_id":"36ce75cb0df693dec7564f03dc1ff625","id":2923,"login":"Soleone"},"payload":{"master_branch":"master","ref_type":"branch","description":"Liquid markup language. Safe, customer facing template language for flexible web apps. \n","ref":"negative-number-comparison"},"id":"1529213481"},{"repo":{"url":"https://api.github.com/repos/saasbook/hw2_rottenpotatoes","id":3306656,"name":"saasbook/hw2_rottenpotatoes"},"type":"ForkEvent","created_at":"2012-03-12T20:39:13Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"9ef6e706e3c2511c8fd4091565e75dfb","id":1168636,"login":"saasbook"},"public":true,"actor":{"url":"https://api.github.com/users/davydovmax","gravatar_id":"08f7837ef962a3684ffd55b8c0ff7ec4","id":213423,"login":"davydovmax"},"payload":{"forkee":{"name":"hw2_rottenpotatoes","master_branch":null,"size":148,"created_at":"2012-03-12T20:39:11Z","has_wiki":true,"public":true,"clone_url":"https://github.com/davydovmax/hw2_rottenpotatoes.git","private":false,"updated_at":"2012-03-12T20:39:11Z","watchers":1,"language":"Ruby","ssh_url":"git@github.com:davydovmax/hw2_rottenpotatoes.git","git_url":"git://github.com/davydovmax/hw2_rottenpotatoes.git","fork":true,"url":"https://api.github.com/repos/davydovmax/hw2_rottenpotatoes","id":3699720,"pushed_at":"2012-03-07T22:10:33Z","svn_url":"https://github.com/davydovmax/hw2_rottenpotatoes","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"RottenPotatoes version for starting HW 2 part (b)","html_url":"https://github.com/davydovmax/hw2_rottenpotatoes","owner":{"avatar_url":"https://secure.gravatar.com/avatar/08f7837ef962a3684ffd55b8c0ff7ec4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"08f7837ef962a3684ffd55b8c0ff7ec4","url":"https://api.github.com/users/davydovmax","id":213423,"login":"davydovmax"}}},"id":"1529213476"},{"repo":{"url":"https://api.github.com/repos/jdf/processing.py","id":833574,"name":"jdf/processing.py"},"type":"WatchEvent","created_at":"2012-03-12T20:39:12Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/pmallory","gravatar_id":"1210e872f71974569d0f8d91bf0f646c","id":790989,"login":"pmallory"},"payload":{"action":"started"},"id":"1529213474"},{"repo":{"url":"https://api.github.com/repos/rtfd/readthedocs.org","id":841835,"name":"rtfd/readthedocs.org"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:11Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/iElectric","gravatar_id":"64798a399a79ed8d34fa83ba0e61c1ac","id":126339,"login":"iElectric"},"payload":{"comment":{"created_at":"2012-03-12T20:39:11Z","body":"Extras can be anything. Some people do like to put 'docs' extras, where they enumerate all dependencies needed to be installed for documentation generation.","updated_at":"2012-03-12T20:39:11Z","url":"https://api.github.com/repos/rtfd/readthedocs.org/issues/comments/4461152","id":4461152,"user":{"avatar_url":"https://secure.gravatar.com/avatar/64798a399a79ed8d34fa83ba0e61c1ac?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"64798a399a79ed8d34fa83ba0e61c1ac","url":"https://api.github.com/users/iElectric","id":126339,"login":"iElectric"}},"action":"created","issue":{"number":173,"created_at":"2012-03-11T11:30:19Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"For example, I have in one of my projects:\r\n\r\n extras_require={\r\n 'test': ['webtest', 'nose', 'coverage'],\r\n 'develop': ['bpython', 'z3c.checkversions [buildout]'],\r\n },\r\n\r\nFor API documentation, 'test' packages need to be installed, would be nice if rtd supported this feature :)","title":"Support setuptools/distribute extras dependencies","updated_at":"2012-03-12T20:39:11Z","url":"https://api.github.com/repos/rtfd/readthedocs.org/issues/173","id":3600534,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/64798a399a79ed8d34fa83ba0e61c1ac?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"64798a399a79ed8d34fa83ba0e61c1ac","url":"https://api.github.com/users/iElectric","id":126339,"login":"iElectric"},"labels":[],"html_url":"https://github.com/rtfd/readthedocs.org/issues/173","state":"open"}},"id":"1529213471"},{"repo":{"url":"https://api.github.com/repos//","name":"/"},"type":"GistEvent","created_at":"2012-03-12T20:39:10Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/gmurphey","gravatar_id":"071d2952e7755e4dded2ef52bf94646b","id":373721,"login":"gmurphey"},"payload":{"action":"create","gist":{"created_at":"2012-03-12T20:39:10Z","comments":0,"public":true,"files":{},"updated_at":"2012-03-12T20:39:10Z","git_push_url":"git@gist.github.com:2024549.git","url":"https://api.github.com/gists/2024549","id":"2024549","git_pull_url":"git://gist.github.com/2024549.git","description":"Profression Google DFP","user":{"avatar_url":"https://secure.gravatar.com/avatar/071d2952e7755e4dded2ef52bf94646b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"071d2952e7755e4dded2ef52bf94646b","url":"https://api.github.com/users/gmurphey","id":373721,"login":"gmurphey"},"html_url":"https://gist.github.com/2024549"}},"id":"1529213466"},{"repo":{"url":"https://api.github.com/repos/csswizardry/CSS-Guidelines","id":3676419,"name":"csswizardry/CSS-Guidelines"},"type":"WatchEvent","created_at":"2012-03-12T20:39:10Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/Madd","gravatar_id":"16c5820d936e51adb72d9f505d42384a","id":436310,"login":"Madd"},"payload":{"action":"started"},"id":"1529213464"},{"repo":{"url":"https://api.github.com/repos/sparkica/LOD2GoogleRefine","id":3699398,"name":"sparkica/LOD2GoogleRefine"},"type":"PushEvent","created_at":"2012-03-12T20:39:09Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/sparkica","gravatar_id":"14e36e86429494ad4c2e79db0d8e4721","id":1309114,"login":"sparkica"},"payload":{"head":"162019825387d7a64f9d21df89cddb3613c9a948","size":1,"push_id":66899602,"commits":[{"sha":"162019825387d7a64f9d21df89cddb3613c9a948","author":{"name":"Mateja Verlic","email":"mateja.verlic@gmail.com"},"url":"https://api.github.com/repos/sparkica/LOD2GoogleRefine/commits/162019825387d7a64f9d21df89cddb3613c9a948","distinct":true,"message":"Cleanup"}],"ref":"refs/heads/master"},"id":"1529213462"},{"repo":{"url":"https://api.github.com/repos/wackou/guessit","id":3573909,"name":"wackou/guessit"},"type":"WatchEvent","created_at":"2012-03-12T20:39:09Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/queeup","gravatar_id":"ee5e9e2f5ef57f321e955b647969f4be","id":87835,"login":"queeup"},"payload":{"action":"started"},"id":"1529213461"},{"repo":{"url":"https://api.github.com/repos/metaskills/less-rails-bootstrap","id":2456112,"name":"metaskills/less-rails-bootstrap"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:09Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/nurey","gravatar_id":"18a203bcac250e13a6c0c8baf0a590e3","id":28474,"login":"nurey"},"payload":{"comment":{"created_at":"2012-03-12T20:39:09Z","body":"Just wondering if anyone has come across this issue. ","updated_at":"2012-03-12T20:39:09Z","url":"https://api.github.com/repos/metaskills/less-rails-bootstrap/issues/comments/4461151","id":4461151,"user":{"avatar_url":"https://secure.gravatar.com/avatar/18a203bcac250e13a6c0c8baf0a590e3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"18a203bcac250e13a6c0c8baf0a590e3","url":"https://api.github.com/users/nurey","id":28474,"login":"nurey"}},"action":"created","issue":{"number":38,"created_at":"2012-03-12T20:24:26Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"body":"I am using a bootswatch theme that provides custom variables.less (https://gist.github.com/2024459) and bootswatch.less (https://gist.github.com/2024455).\r\n\r\nassets/bootswatch/index.css.less looks like https://gist.github.com/2024437\r\n\r\nbootswatch.css:\r\n/*\r\n *= require bootswatch/index\r\n*/\r\n\r\ndemo.rb:\r\nconfig.assets.precompile += %w( bootswatch.css )\r\n\r\nIn development environment everything compiles fine.\r\n\r\nWhen running `bundle exec rake RAILS_ENV=demo RAILS_GROUPS=assets assets:precompile` I get:\r\nvariable @textColor is undefined\r\n (in /app/assets/stylesheets/bootswatch/bootswatch.less)\r\n","title":"full control and assets:precompile","comments":2,"updated_at":"2012-03-12T20:39:09Z","url":"https://api.github.com/repos/metaskills/less-rails-bootstrap/issues/38","id":3618406,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/18a203bcac250e13a6c0c8baf0a590e3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"18a203bcac250e13a6c0c8baf0a590e3","url":"https://api.github.com/users/nurey","id":28474,"login":"nurey"},"html_url":"https://github.com/metaskills/less-rails-bootstrap/issues/38","labels":[],"state":"open"}},"id":"1529213460"},{"repo":{"url":"https://api.github.com/repos/Volox/Nodejs","id":3533868,"name":"Volox/Nodejs"},"type":"PushEvent","created_at":"2012-03-12T20:39:09Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/Volox","gravatar_id":"c833068a68f0aee643c4d62380dc230a","id":1468697,"login":"Volox"},"payload":{"head":"6e296a236a4da975b5019fa8dc4f52b4482f94e6","size":1,"push_id":66899598,"commits":[{"sha":"6e296a236a4da975b5019fa8dc4f52b4482f94e6","author":{"name":"Volox laptop","email":"voloxxx@gmail.com"},"url":"https://api.github.com/repos/Volox/Nodejs/commits/6e296a236a4da975b5019fa8dc4f52b4482f94e6","distinct":true,"message":"Fixed minor bug"}],"ref":"refs/heads/master"},"id":"1529213456"},{"repo":{"url":"https://api.github.com/repos/llimllib/ncaa-bracket-randomizer","id":153698,"name":"llimllib/ncaa-bracket-randomizer"},"type":"PushEvent","created_at":"2012-03-12T20:39:09Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/llimllib","gravatar_id":"aa7c1350d93036592f58f165318044db","id":7150,"login":"llimllib"},"payload":{"head":"23e8b4f2bc8dc501b1c71d92a329becedda02289","size":1,"push_id":66899597,"ref":"refs/heads/master","commits":[{"sha":"23e8b4f2bc8dc501b1c71d92a329becedda02289","author":{"name":"bill","email":"bill.mill@gmail.com"},"url":"https://api.github.com/repos/llimllib/ncaa-bracket-randomizer/commits/23e8b4f2bc8dc501b1c71d92a329becedda02289","distinct":true,"message":"add a note that it doesn't work on IE"}]},"id":"1529213453"},{"repo":{"url":"https://api.github.com/repos/jdmr/tankmon","id":3573478,"name":"jdmr/tankmon"},"type":"PushEvent","created_at":"2012-03-12T20:39:08Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/jdmr","gravatar_id":"e41a8c5633c80cb07799073f80208478","id":148428,"login":"jdmr"},"payload":{"head":"386446541ccf4061b46305b8f504af68d2e7f5d0","size":3,"push_id":66899591,"commits":[{"sha":"f9cd55c11621127d4c81f7ab9613d57973aa754f","author":{"name":"J. David Mendoza","email":"jdmendoza@um.edu.mx"},"url":"https://api.github.com/repos/jdmr/tankmon/commits/f9cd55c11621127d4c81f7ab9613d57973aa754f","distinct":true,"message":"Demonio de sincronizacion con Centeron [Delivered #26312357]"},{"sha":"9f599f99fe35c867b9eb14591b8348e74cfb0290","author":{"name":"J. David Mendoza","email":"jdmendoza@um.edu.mx"},"url":"https://api.github.com/repos/jdmr/tankmon/commits/9f599f99fe35c867b9eb14591b8348e74cfb0290","distinct":true,"message":"Demonio y cambio de nombre de empresa a sin asignar [#26312357] [#26312565]"},{"sha":"386446541ccf4061b46305b8f504af68d2e7f5d0","author":{"name":"J. David Mendoza","email":"jdmendoza@um.edu.mx"},"url":"https://api.github.com/repos/jdmr/tankmon/commits/386446541ccf4061b46305b8f504af68d2e7f5d0","distinct":true,"message":"Cambiar nombre de empresa CENTERON por SIN ASIGNAR [Delivered #26312565]"}],"ref":"refs/heads/master"},"id":"1529213446"},{"repo":{"url":"https://api.github.com/repos/crazystuff/sample_app","id":3699719,"name":"crazystuff/sample_app"},"type":"CreateEvent","created_at":"2012-03-12T20:39:08Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/crazystuff","gravatar_id":"1fb6d76993c05250033d7f0a559c27a4","id":1492987,"login":"crazystuff"},"payload":{"master_branch":"master","ref_type":"repository","description":"ANot","ref":null},"id":"1529213449"},{"repo":{"url":"https://api.github.com/repos/archome/archome","id":3548046,"name":"archome/archome"},"type":"PushEvent","created_at":"2012-03-12T20:39:08Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"23e17f4bd9a35364d0e22a03c8499d47","id":1476166,"login":"archome"},"public":true,"actor":{"url":"https://api.github.com/users/anarchivist","gravatar_id":"bd9477fa003e1d339abd1371bf93a0fb","id":73732,"login":"anarchivist"},"payload":{"head":"d7c69641853131028d1f6367c601f9f76435fd02","size":1,"push_id":66899593,"ref":"refs/heads/gh-pages","commits":[{"sha":"d7c69641853131028d1f6367c601f9f76435fd02","author":{"name":"Mark A. Matienzo","email":"mark@matienzo.org"},"url":"https://api.github.com/repos/archome/archome/commits/d7c69641853131028d1f6367c601f9f76435fd02","distinct":true,"message":"Site updated at 2012-03-12 20:39:04 UTC"}]},"id":"1529213447"},{"repo":{"url":"https://api.github.com/repos/radiowavesurfer/saasbook-hw2","id":3689146,"name":"radiowavesurfer/saasbook-hw2"},"type":"PushEvent","created_at":"2012-03-12T20:39:08Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/radiowavesurfer","gravatar_id":"48c521d9775b5071564ace8b1713e876","id":1526443,"login":"radiowavesurfer"},"payload":{"head":"13bd02773d5fbd57fa873017fed7d26514cc2086","size":1,"push_id":66899590,"commits":[{"sha":"13bd02773d5fbd57fa873017fed7d26514cc2086","author":{"name":"Nick Brown","email":"nickbrown@fastmail.fm"},"url":"https://api.github.com/repos/radiowavesurfer/saasbook-hw2/commits/13bd02773d5fbd57fa873017fed7d26514cc2086","distinct":true,"message":"modifications for hw2 part 4 - some errors still expected"}],"ref":"refs/heads/master"},"id":"1529213443"},{"repo":{"url":"https://api.github.com/repos/edfuh/booty-colorpicker","id":3699277,"name":"edfuh/booty-colorpicker"},"type":"PushEvent","created_at":"2012-03-12T20:39:07Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/edfuh","gravatar_id":"0d8041d344a6a96394477349d555968e","id":148062,"login":"edfuh"},"payload":{"head":"3f22e515c16de4fd63ceaa40a54a7aab97f8f5f8","size":1,"push_id":66899588,"ref":"refs/heads/master","commits":[{"sha":"3f22e515c16de4fd63ceaa40a54a7aab97f8f5f8","author":{"name":"Ed Fuh","email":"ed@storenvy.com"},"url":"https://api.github.com/repos/edfuh/booty-colorpicker/commits/3f22e515c16de4fd63ceaa40a54a7aab97f8f5f8","distinct":true,"message":"derp"}]},"id":"1529213440"},{"repo":{"url":"https://api.github.com/repos/jasonbmc/Intel-Gallery-Viewer","id":3367783,"name":"jasonbmc/Intel-Gallery-Viewer"},"type":"PushEvent","created_at":"2012-03-12T20:39:05Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/jasonbmc","gravatar_id":"0d55d97857069af38c00a2332773d3e7","id":1093179,"login":"jasonbmc"},"payload":{"head":"f3e0ab986cbbc9804ae898196515b51dee24cb1e","size":1,"push_id":66899582,"ref":"refs/heads/zoomlevel1test","commits":[{"sha":"f3e0ab986cbbc9804ae898196515b51dee24cb1e","author":{"name":"Jason Mckim","email":"jasonbmc10@gmail.com"},"url":"https://api.github.com/repos/jasonbmc/Intel-Gallery-Viewer/commits/f3e0ab986cbbc9804ae898196515b51dee24cb1e","distinct":true,"message":"fix of non-breaking exception resulting form upload state changes"}]},"id":"1529213427"},{"repo":{"url":"https://api.github.com/repos/mozilla/rust","id":724712,"name":"mozilla/rust"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:04Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"9ba739c8f3288e256b13553e4d257b5e","id":131524,"login":"mozilla"},"public":true,"actor":{"url":"https://api.github.com/users/brson","gravatar_id":"d0ce8e171d43e20591074a66e9ff7ae6","id":147214,"login":"brson"},"payload":{"comment":{"created_at":"2012-03-12T20:39:03Z","body":"Straw vote on IRC says `new`","updated_at":"2012-03-12T20:39:03Z","url":"https://api.github.com/repos/mozilla/rust/issues/comments/4461148","id":4461148,"user":{"avatar_url":"https://secure.gravatar.com/avatar/d0ce8e171d43e20591074a66e9ff7ae6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"d0ce8e171d43e20591074a66e9ff7ae6","url":"https://api.github.com/users/brson","id":147214,"login":"brson"}},"action":"created","issue":{"number":1951,"created_at":"2012-03-10T06:00:08Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"We have some named `mk`, some `init`, some `create`.","title":"Use consistent names for constructors in libs","updated_at":"2012-03-12T20:39:03Z","url":"https://api.github.com/repos/mozilla/rust/issues/1951","id":3593518,"assignee":null,"milestone":{"number":5,"created_at":"2012-01-20T02:48:39Z","due_on":"2012-03-23T07:00:00Z","title":"0.2 release, detail work, cleanup and performance","creator":{"avatar_url":"https://secure.gravatar.com/avatar/f1bc67b53f1a5512d778426cf447c5ab?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"f1bc67b53f1a5512d778426cf447c5ab","url":"https://api.github.com/users/graydon","id":14097,"login":"graydon"},"url":"https://api.github.com/repos/mozilla/rust/milestones/5","open_issues":16,"closed_issues":41,"description":"","state":"open"},"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/d0ce8e171d43e20591074a66e9ff7ae6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"d0ce8e171d43e20591074a66e9ff7ae6","url":"https://api.github.com/users/brson","id":147214,"login":"brson"},"labels":[{"name":"A-libs","url":"https://api.github.com/repos/mozilla/rust/labels/A-libs","color":"d7e102"},{"name":"E-easy","url":"https://api.github.com/repos/mozilla/rust/labels/E-easy","color":"02e10c"},{"name":"I-cleanup","url":"https://api.github.com/repos/mozilla/rust/labels/I-cleanup","color":"e10c02"}],"html_url":"https://github.com/mozilla/rust/issues/1951","state":"open"}},"id":"1529213422"}] - -GET /events?page=6 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4782'), ('content-length', '28201'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"b6ea183c4f406384fc5d88be4083c3a5"'), ('date', 'Mon, 12 Mar 2012 20:40:36 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/crazystuff","gravatar_id":"1fb6d76993c05250033d7f0a559c27a4","id":1492987,"login":"crazystuff"},"type":"CreateEvent","created_at":"2012-03-12T20:39:08Z","payload":{"master_branch":"master","ref_type":"repository","description":"ANot","ref":null},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/crazystuff/sample_app","id":3699719,"name":"crazystuff/sample_app"},"id":"1529213449"},{"actor":{"url":"https://api.github.com/users/anarchivist","gravatar_id":"bd9477fa003e1d339abd1371bf93a0fb","id":73732,"login":"anarchivist"},"type":"PushEvent","created_at":"2012-03-12T20:39:08Z","payload":{"head":"d7c69641853131028d1f6367c601f9f76435fd02","size":1,"push_id":66899593,"ref":"refs/heads/gh-pages","commits":[{"sha":"d7c69641853131028d1f6367c601f9f76435fd02","author":{"name":"Mark A. Matienzo","email":"mark@matienzo.org"},"url":"https://api.github.com/repos/archome/archome/commits/d7c69641853131028d1f6367c601f9f76435fd02","distinct":true,"message":"Site updated at 2012-03-12 20:39:04 UTC"}]},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"23e17f4bd9a35364d0e22a03c8499d47","id":1476166,"login":"archome"},"repo":{"url":"https://api.github.com/repos/archome/archome","id":3548046,"name":"archome/archome"},"id":"1529213447"},{"actor":{"url":"https://api.github.com/users/radiowavesurfer","gravatar_id":"48c521d9775b5071564ace8b1713e876","id":1526443,"login":"radiowavesurfer"},"type":"PushEvent","created_at":"2012-03-12T20:39:08Z","payload":{"head":"13bd02773d5fbd57fa873017fed7d26514cc2086","size":1,"push_id":66899590,"commits":[{"sha":"13bd02773d5fbd57fa873017fed7d26514cc2086","author":{"name":"Nick Brown","email":"nickbrown@fastmail.fm"},"url":"https://api.github.com/repos/radiowavesurfer/saasbook-hw2/commits/13bd02773d5fbd57fa873017fed7d26514cc2086","distinct":true,"message":"modifications for hw2 part 4 - some errors still expected"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/radiowavesurfer/saasbook-hw2","id":3689146,"name":"radiowavesurfer/saasbook-hw2"},"id":"1529213443"},{"actor":{"url":"https://api.github.com/users/edfuh","gravatar_id":"0d8041d344a6a96394477349d555968e","id":148062,"login":"edfuh"},"type":"PushEvent","created_at":"2012-03-12T20:39:07Z","payload":{"head":"3f22e515c16de4fd63ceaa40a54a7aab97f8f5f8","size":1,"push_id":66899588,"ref":"refs/heads/master","commits":[{"sha":"3f22e515c16de4fd63ceaa40a54a7aab97f8f5f8","author":{"name":"Ed Fuh","email":"ed@storenvy.com"},"url":"https://api.github.com/repos/edfuh/booty-colorpicker/commits/3f22e515c16de4fd63ceaa40a54a7aab97f8f5f8","distinct":true,"message":"derp"}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/edfuh/booty-colorpicker","id":3699277,"name":"edfuh/booty-colorpicker"},"id":"1529213440"},{"actor":{"url":"https://api.github.com/users/jasonbmc","gravatar_id":"0d55d97857069af38c00a2332773d3e7","id":1093179,"login":"jasonbmc"},"type":"PushEvent","created_at":"2012-03-12T20:39:05Z","payload":{"head":"f3e0ab986cbbc9804ae898196515b51dee24cb1e","size":1,"push_id":66899582,"ref":"refs/heads/zoomlevel1test","commits":[{"sha":"f3e0ab986cbbc9804ae898196515b51dee24cb1e","author":{"name":"Jason Mckim","email":"jasonbmc10@gmail.com"},"url":"https://api.github.com/repos/jasonbmc/Intel-Gallery-Viewer/commits/f3e0ab986cbbc9804ae898196515b51dee24cb1e","distinct":true,"message":"fix of non-breaking exception resulting form upload state changes"}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jasonbmc/Intel-Gallery-Viewer","id":3367783,"name":"jasonbmc/Intel-Gallery-Viewer"},"id":"1529213427"},{"actor":{"url":"https://api.github.com/users/brson","gravatar_id":"d0ce8e171d43e20591074a66e9ff7ae6","id":147214,"login":"brson"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:04Z","payload":{"comment":{"created_at":"2012-03-12T20:39:03Z","body":"Straw vote on IRC says `new`","updated_at":"2012-03-12T20:39:03Z","url":"https://api.github.com/repos/mozilla/rust/issues/comments/4461148","id":4461148,"user":{"avatar_url":"https://secure.gravatar.com/avatar/d0ce8e171d43e20591074a66e9ff7ae6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"d0ce8e171d43e20591074a66e9ff7ae6","url":"https://api.github.com/users/brson","id":147214,"login":"brson"}},"action":"created","issue":{"number":1951,"created_at":"2012-03-10T06:00:08Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"We have some named `mk`, some `init`, some `create`.","title":"Use consistent names for constructors in libs","updated_at":"2012-03-12T20:39:03Z","url":"https://api.github.com/repos/mozilla/rust/issues/1951","id":3593518,"assignee":null,"milestone":{"number":5,"created_at":"2012-01-20T02:48:39Z","due_on":"2012-03-23T07:00:00Z","title":"0.2 release, detail work, cleanup and performance","creator":{"avatar_url":"https://secure.gravatar.com/avatar/f1bc67b53f1a5512d778426cf447c5ab?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"f1bc67b53f1a5512d778426cf447c5ab","url":"https://api.github.com/users/graydon","id":14097,"login":"graydon"},"url":"https://api.github.com/repos/mozilla/rust/milestones/5","open_issues":16,"closed_issues":41,"description":"","state":"open"},"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/d0ce8e171d43e20591074a66e9ff7ae6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"d0ce8e171d43e20591074a66e9ff7ae6","url":"https://api.github.com/users/brson","id":147214,"login":"brson"},"labels":[{"name":"A-libs","url":"https://api.github.com/repos/mozilla/rust/labels/A-libs","color":"d7e102"},{"name":"E-easy","url":"https://api.github.com/repos/mozilla/rust/labels/E-easy","color":"02e10c"},{"name":"I-cleanup","url":"https://api.github.com/repos/mozilla/rust/labels/I-cleanup","color":"e10c02"}],"html_url":"https://github.com/mozilla/rust/issues/1951","state":"open"}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"9ba739c8f3288e256b13553e4d257b5e","id":131524,"login":"mozilla"},"repo":{"url":"https://api.github.com/repos/mozilla/rust","id":724712,"name":"mozilla/rust"},"id":"1529213422"},{"actor":{"url":"https://api.github.com/users/ebcomalex","gravatar_id":"b736875b70626f26ff3c6bc15eacc3fd","id":868478,"login":"ebcomalex"},"type":"PushEvent","created_at":"2012-03-12T20:39:03Z","payload":{"head":"37f6c34f5ab00ec1dda79201740c9333ba2da3c0","size":1,"push_id":66899575,"commits":[{"sha":"37f6c34f5ab00ec1dda79201740c9333ba2da3c0","author":{"name":"Alex Lewis","email":"ebcomalex@gmail.com"},"url":"https://api.github.com/repos/ebcomalex/pausebreaklandingpage/commits/37f6c34f5ab00ec1dda79201740c9333ba2da3c0","distinct":true,"message":"some logos. I want a row of logos somewhere on the home page to show off our"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/ebcomalex/pausebreaklandingpage","id":3354326,"name":"ebcomalex/pausebreaklandingpage"},"id":"1529213418"},{"actor":{"url":"https://api.github.com/users/bsiegal","gravatar_id":"aed3dee7a95a7d0385350a33507337db","id":786917,"login":"bsiegal"},"type":"CreateEvent","created_at":"2012-03-12T20:39:03Z","payload":{"master_branch":"master","ref_type":"branch","description":"A KineticJS sort order game for kids","ref":"master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/bsiegal/SortOrderTrain","id":3699477,"name":"bsiegal/SortOrderTrain"},"id":"1529213416"},{"actor":{"url":"https://api.github.com/users/computerdude5000","gravatar_id":"09f942caa6069a3a80dd4a2e3c18171a","id":1530360,"login":"computerdude5000"},"type":"FollowEvent","created_at":"2012-03-12T20:39:02Z","payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/1cb54bf8d35ffe1eb15904e6e3ba4f4b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Jeremy","company":null,"gravatar_id":"1cb54bf8d35ffe1eb15904e6e3ba4f4b","location":"Lakeville, MN","created_at":"2011-04-17T18:29:48Z","blog":"jj.koletar.com","public_repos":11,"followers":1,"public_gists":0,"url":"https://api.github.com/users/jjkoletar","id":735098,"hireable":false,"type":"User","bio":"","html_url":"https://github.com/jjkoletar","login":"jjkoletar","following":0,"email":null}},"public":0,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213414"},{"actor":{"url":"https://api.github.com/users/jhbenterprises","gravatar_id":"958d54d1f2e5eb0d22ad50947a5d80f7","id":1431882,"login":"jhbenterprises"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:39:02Z","payload":{"comment":{"created_at":"2012-03-12T20:39:01Z","body":"yes. that is my question. how would i do that?","updated_at":"2012-03-12T20:39:01Z","url":"https://api.github.com/repos/jimmykane/The-Three-Little-Pigs-Siri-Proxy/issues/comments/4461147","id":4461147,"user":{"avatar_url":"https://secure.gravatar.com/avatar/958d54d1f2e5eb0d22ad50947a5d80f7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"958d54d1f2e5eb0d22ad50947a5d80f7","url":"https://api.github.com/users/jhbenterprises","id":1431882,"login":"jhbenterprises"}},"action":"created","issue":{"number":218,"created_at":"2012-03-12T20:33:01Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":2,"body":"how do i share keys across servers? like one server has the keys and the other ones can access them?","title":"share keys across servers","updated_at":"2012-03-12T20:39:01Z","url":"https://api.github.com/repos/jimmykane/The-Three-Little-Pigs-Siri-Proxy/issues/218","id":3618542,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/958d54d1f2e5eb0d22ad50947a5d80f7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"958d54d1f2e5eb0d22ad50947a5d80f7","url":"https://api.github.com/users/jhbenterprises","id":1431882,"login":"jhbenterprises"},"labels":[],"html_url":"https://github.com/jimmykane/The-Three-Little-Pigs-Siri-Proxy/issues/218","state":"open"}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jimmykane/The-Three-Little-Pigs-Siri-Proxy","id":3140529,"name":"jimmykane/The-Three-Little-Pigs-Siri-Proxy"},"id":"1529213413"},{"actor":{"url":"https://api.github.com/users/rcolepeterson","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","id":598959,"login":"rcolepeterson"},"type":"GistEvent","created_at":"2012-03-12T20:39:01Z","payload":{"action":"update","gist":{"created_at":"2011-07-12T16:56:00Z","comments":0,"public":true,"git_push_url":"git@gist.github.com:1078412.git","files":{},"updated_at":"2011-07-12T17:06:26Z","url":"https://api.github.com/gists/1078412","id":"1078412","git_pull_url":"git://gist.github.com/1078412.git","description":"Draw Rectangle Sprite","user":{"avatar_url":"https://secure.gravatar.com/avatar/c0e73cad042ac82ae88cc42a31bcb5d0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","url":"https://api.github.com/users/rcolepeterson","id":598959,"login":"rcolepeterson"},"html_url":"https://gist.github.com/1078412"}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213410"},{"actor":{"url":"https://api.github.com/users/HenryJobst","gravatar_id":"6d43e49031e56b52e8fe2cd97f8d01e2","id":1455235,"login":"HenryJobst"},"type":"PushEvent","created_at":"2012-03-12T20:39:00Z","payload":{"head":"2e75ff856a99123a13a03b2c2fb1723d9776d900","size":2,"push_id":66899563,"ref":"refs/heads/master","commits":[{"sha":"bc491ead7654ec9de8bf2f1a641ff39175b78e7e","author":{"name":"Henry Jobst","email":"github@jobst-berlin.de"},"url":"https://api.github.com/repos/HenryJobst/Race-Manager/commits/bc491ead7654ec9de8bf2f1a641ff39175b78e7e","distinct":true,"message":"add partials, change sidebar, change competitor pages"},{"sha":"2e75ff856a99123a13a03b2c2fb1723d9776d900","author":{"name":"Henry Jobst","email":"github@jobst-berlin.de"},"url":"https://api.github.com/repos/HenryJobst/Race-Manager/commits/2e75ff856a99123a13a03b2c2fb1723d9776d900","distinct":true,"message":"add empty reports structure"}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/HenryJobst/Race-Manager","id":3539995,"name":"HenryJobst/Race-Manager"},"id":"1529213401"},{"actor":{"url":"https://api.github.com/users/andreasronge","gravatar_id":"f3e2505cbe4fb083ed8d836a87fbd0fd","id":6504,"login":"andreasronge"},"type":"PushEvent","created_at":"2012-03-12T20:39:00Z","payload":{"head":"c37f725ea2accb58b3604267ade57bce9d1ed29a","size":2,"push_id":66899565,"ref":"refs/heads/master","commits":[{"sha":"f648e0c14b43cccb30d8fc120fba5aa6bd91ab9c","author":{"name":"Andreas Ronge","email":"andreas.ronge@gmail.com"},"url":"https://api.github.com/repos/andreasronge/neo4j-core/commits/f648e0c14b43cccb30d8fc120fba5aa6bd91ab9c","distinct":true,"message":"More Cypher DSLs\n\nsee [andeasronge/neo4j#110]"},{"sha":"c37f725ea2accb58b3604267ade57bce9d1ed29a","author":{"name":"Andreas Ronge","email":"andreas.ronge@gmail.com"},"url":"https://api.github.com/repos/andreasronge/neo4j-core/commits/c37f725ea2accb58b3604267ade57bce9d1ed29a","distinct":true,"message":"More Cypher DSLs\n\nsee [andeasronge/neo4j#110]"}]},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/andreasronge/neo4j-core","id":3343704,"name":"andreasronge/neo4j-core"},"id":"1529213397"},{"actor":{"url":"https://api.github.com/users/thomas4g","gravatar_id":"a41a6698643211023d0533cbeda644d4","id":821920,"login":"thomas4g"},"type":"PushEvent","created_at":"2012-03-12T20:39:00Z","payload":{"head":"abd8022513e97170c91085cc6ae08e1efa0add88","size":1,"push_id":66899554,"commits":[{"sha":"abd8022513e97170c91085cc6ae08e1efa0add88","author":{"name":"Thomas Shields","email":"me@thomasshields.net"},"url":"https://api.github.com/repos/thomas4g/Project-Euler/commits/abd8022513e97170c91085cc6ae08e1efa0add88","distinct":true,"message":"removed tmp"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/thomas4g/Project-Euler","id":3684768,"name":"thomas4g/Project-Euler"},"id":"1529213385"},{"actor":{"url":"https://api.github.com/users/Bangsadrengur","gravatar_id":"b6c8cf804995ad601af0e90dfb7284c4","id":769877,"login":"Bangsadrengur"},"type":"CreateEvent","created_at":"2012-03-12T20:39:00Z","payload":{"master_branch":"master","ref_type":"branch","ref":"old","description":"Verkefni í viðmótsforritun í HÍ"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/Bangsadrengur/DagatalSwing","id":3699449,"name":"Bangsadrengur/DagatalSwing"},"id":"1529213389"},{"actor":{"url":"https://api.github.com/users/dailycraft","gravatar_id":"91aba3be947f94c20feafb38ce685e7f","id":1024464,"login":"dailycraft"},"type":"PublicEvent","created_at":"2012-03-12T20:39:00Z","payload":{},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/dailycraft/PetShop","id":2979516,"name":"dailycraft/PetShop"},"id":"1529213388"},{"actor":{"url":"https://api.github.com/users/manaten","gravatar_id":"fb7e03213f2f2204dfb76cd0167d927c","id":586064,"login":"manaten"},"type":"PushEvent","created_at":"2012-03-12T20:38:59Z","payload":{"head":"541aef24efa9fb37c19cd6c7006cd183be535893","size":3,"push_id":66899550,"commits":[{"sha":"77db96d245363a459040135c8928a0624cb73cdf","author":{"name":"manaten","email":"manaten@manaten.net"},"url":"https://api.github.com/repos/manaten/Octopus/commits/77db96d245363a459040135c8928a0624cb73cdf","distinct":true,"message":"Fix readme.md"},{"sha":"72ee67d74e1ec0d1f6b4b440697cbf305153a041","author":{"name":"manaten","email":"manaten@manaten.net"},"url":"https://api.github.com/repos/manaten/Octopus/commits/72ee67d74e1ec0d1f6b4b440697cbf305153a041","distinct":true,"message":"Fix Readme.md"},{"sha":"541aef24efa9fb37c19cd6c7006cd183be535893","author":{"name":"manaten","email":"manaten@manaten.net"},"url":"https://api.github.com/repos/manaten/Octopus/commits/541aef24efa9fb37c19cd6c7006cd183be535893","distinct":true,"message":"Merge branch 'master' of github.com:manaten/Octopus\n\nConflicts:\n\tReadme.md"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/manaten/Octopus","id":3325206,"name":"manaten/Octopus"},"id":"1529213381"},{"actor":{"url":"https://api.github.com/users/bauer01","gravatar_id":"00edafcd51dceccf4f91faa70f890d0b","id":551000,"login":"bauer01"},"type":"PushEvent","created_at":"2012-03-12T20:38:57Z","payload":{"head":"fba7e808814d76f19d55ba221c0b040e3099776f","size":1,"push_id":66899548,"commits":[{"sha":"fba7e808814d76f19d55ba221c0b040e3099776f","author":{"name":"Bauer01","email":"bronislav.sedlak@gmail.com"},"url":"https://api.github.com/repos/bauer01/iXtrum/commits/fba7e808814d76f19d55ba221c0b040e3099776f","distinct":true,"message":"filemanager: forms refactoring"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/bauer01/iXtrum","id":1630273,"name":"bauer01/iXtrum"},"id":"1529213378"},{"actor":{"url":"https://api.github.com/users/colder","gravatar_id":"4314e3d0ad03d48ce5eac111ada387fb","id":98322,"login":"colder"},"type":"PushEvent","created_at":"2012-03-12T20:38:56Z","payload":{"head":"4bfdfd8887b8410e221265fb3a3f76bfa07cef90","size":1,"push_id":66899547,"commits":[{"sha":"4bfdfd8887b8410e221265fb3a3f76bfa07cef90","author":{"name":"Etienne Kneuss","email":"colder@php.net"},"url":"https://api.github.com/repos/colder/insane/commits/4bfdfd8887b8410e221265fb3a3f76bfa07cef90","distinct":true,"message":"Half way there, bugs to fix"}],"ref":"refs/heads/abstractsummaries"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/colder/insane","id":1627844,"name":"colder/insane"},"id":"1529213375"},{"actor":{"url":"https://api.github.com/users/thrisp","gravatar_id":"d74e445b43c9fcc11524fa8c382409b3","id":199137,"login":"thrisp"},"type":"WatchEvent","created_at":"2012-03-12T20:38:56Z","payload":{"action":"started"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/lfcipriani/punkt-segmenter","id":740516,"name":"lfcipriani/punkt-segmenter"},"id":"1529213374"},{"actor":{"url":"https://api.github.com/users/uacmarine556","gravatar_id":"894989638d0cee07d01a46631ce4f49e","id":1530184,"login":"uacmarine556"},"type":"DeleteEvent","created_at":"2012-03-12T20:38:55Z","payload":{"ref":"NewBranch","ref_type":"branch"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/uacmarine556/GitTest","id":3698795,"name":"uacmarine556/GitTest"},"id":"1529213371"},{"actor":{"url":"https://api.github.com/users/cvan","gravatar_id":"2afd33fb37a335686987ebf1f762cafc","id":203725,"login":"cvan"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:38:54Z","payload":{"comment":{"position":32,"created_at":"2012-03-12T20:38:54Z","body":"these should be only personas","line":188,"commit_id":"6e094a85965f474038c7ebaab35ca25cdf65d81d","updated_at":"2012-03-12T20:38:54Z","url":"https://api.github.com/repos/andymckay/zamboni/comments/1074744","id":1074744,"path":"apps/addons/views.py","html_url":"https://github.com/andymckay/zamboni/commit/6e094a8596#commitcomment-1074744","user":{"avatar_url":"https://secure.gravatar.com/avatar/2afd33fb37a335686987ebf1f762cafc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"2afd33fb37a335686987ebf1f762cafc","url":"https://api.github.com/users/cvan","id":203725,"login":"cvan"}}},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/andymckay/zamboni","id":1023152,"name":"andymckay/zamboni"},"id":"1529213367"},{"actor":{"url":"https://api.github.com/users/calavera","gravatar_id":"0c39b828636367fc6e22b7be8c803c74","id":1050,"login":"calavera"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:51Z","payload":{"comment":{"created_at":"2012-03-12T20:38:50Z","body":"@nicksieger I think this can work:\r\n\r\nhttps://github.com/trinidad/trinidad/pull/62","updated_at":"2012-03-12T20:38:50Z","url":"https://api.github.com/repos/sinatra/sinatra/issues/comments/4461144","id":4461144,"user":{"avatar_url":"https://secure.gravatar.com/avatar/0c39b828636367fc6e22b7be8c803c74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"0c39b828636367fc6e22b7be8c803c74","url":"https://api.github.com/users/calavera","id":1050,"login":"calavera"}},"action":"created","issue":{"number":479,"created_at":"2012-03-10T20:52:33Z","pull_request":{"diff_url":"https://github.com/sinatra/sinatra/pull/479.diff","patch_url":"https://github.com/sinatra/sinatra/pull/479.patch","html_url":"https://github.com/sinatra/sinatra/pull/479"},"comments":7,"body":"It's a little verbose and has to work around a couple of issues that diverge from behavior when launched from the command-line, but it seems to work :).","title":"JRuby version of integration server, started in-process w/ ScriptingContainer","updated_at":"2012-03-12T20:38:50Z","url":"https://api.github.com/repos/sinatra/sinatra/issues/479","id":3597354,"assignee":null,"milestone":null,"closed_at":"2012-03-11T00:00:06Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/526d60de6472502bb570a9df2842b33b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"526d60de6472502bb570a9df2842b33b","url":"https://api.github.com/users/nicksieger","id":154,"login":"nicksieger"},"html_url":"https://github.com/sinatra/sinatra/issues/479","labels":[],"state":"closed"}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"22be51f9cf3849462ffc4107675ec182","id":8312,"login":"sinatra"},"repo":{"url":"https://api.github.com/repos/sinatra/sinatra","id":106995,"name":"sinatra/sinatra"},"id":"1529213353"},{"actor":{"url":"https://api.github.com/users/DominicWatson","gravatar_id":"83d35e05dd3ab502389edf5d1b096c45","id":471162,"login":"DominicWatson"},"type":"PushEvent","created_at":"2012-03-12T20:38:50Z","payload":{"head":"cdcc28538cdca1fbb79142122abf3ff52a181aac","size":2,"push_id":66899531,"commits":[{"sha":"514bfbe971b3ec12598031bf0f6610830be73a5b","author":{"name":"Dominic Watson","email":"watson.dominic@gmail.com"},"url":"https://api.github.com/repos/DominicWatson/frankfusion/commits/514bfbe971b3ec12598031bf0f6610830be73a5b","distinct":true,"message":"More fiddling with the blog styling + some more pages"},{"sha":"cdcc28538cdca1fbb79142122abf3ff52a181aac","author":{"name":"Dominic Watson","email":"watson.dominic@gmail.com"},"url":"https://api.github.com/repos/DominicWatson/frankfusion/commits/cdcc28538cdca1fbb79142122abf3ff52a181aac","distinct":true,"message":"More fiddling with the blog styling + some more pages"}],"ref":"refs/heads/master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/DominicWatson/frankfusion","id":2365197,"name":"DominicWatson/frankfusion"},"id":"1529213348"},{"actor":{"url":"https://api.github.com/users/sgonyea","gravatar_id":"2206ea5cb493109b3a3a09ad8b7e8be9","id":76871,"login":"sgonyea"},"type":"ForkEvent","created_at":"2012-03-12T20:38:49Z","payload":{"forkee":{"name":"airbrake","master_branch":null,"size":220,"created_at":"2012-03-12T20:38:49Z","has_wiki":true,"public":true,"clone_url":"https://github.com/sgonyea/airbrake.git","private":false,"updated_at":"2012-03-12T20:38:49Z","watchers":1,"ssh_url":"git@github.com:sgonyea/airbrake.git","fork":true,"language":"Ruby","git_url":"git://github.com/sgonyea/airbrake.git","url":"https://api.github.com/repos/sgonyea/airbrake","id":3699718,"pushed_at":"2012-03-02T13:59:13Z","svn_url":"https://github.com/sgonyea/airbrake","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://airbrake.io","has_issues":false,"forks":0,"description":"The official Airbrake library for Ruby on Rails. Links to other Airbrake libraries are in the ReadMe. ","html_url":"https://github.com/sgonyea/airbrake","owner":{"avatar_url":"https://secure.gravatar.com/avatar/2206ea5cb493109b3a3a09ad8b7e8be9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"2206ea5cb493109b3a3a09ad8b7e8be9","url":"https://api.github.com/users/sgonyea","id":76871,"login":"sgonyea"}}},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"9b706b7832bea4e387a9956531c12a7f","id":1015434,"login":"airbrake"},"repo":{"url":"https://api.github.com/repos/airbrake/airbrake","id":2263819,"name":"airbrake/airbrake"},"id":"1529213345"},{"actor":{"url":"https://api.github.com/users/pitaatip","gravatar_id":"51af49da8c2db5341e4c39d370561144","id":1526758,"login":"pitaatip"},"type":"CreateEvent","created_at":"2012-03-12T20:38:46Z","payload":{"master_branch":"master","ref":"master","ref_type":"branch","description":"Working with evolutionary algorithms, using django and non-rel db's."},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/pitaatip/DJevolution","id":3690160,"name":"pitaatip/DJevolution"},"id":"1529213324"},{"actor":{"url":"https://api.github.com/users/fjun99","gravatar_id":"bc8708539bf9cdcdadd7eee8adc94e69","id":943418,"login":"fjun99"},"type":"WatchEvent","created_at":"2012-03-12T20:38:44Z","payload":{"action":"started"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/Inferis/ViewDeck","id":2915478,"name":"Inferis/ViewDeck"},"id":"1529213319"},{"actor":{"url":"https://api.github.com/users/vrabaud","gravatar_id":"58338d5b54a7c829aafecfd002950568","id":700766,"login":"vrabaud"},"type":"PushEvent","created_at":"2012-03-12T20:38:44Z","payload":{"head":"1e6b97ad2a8569740673e2f510999ae135c560e7","size":1,"push_id":66899515,"ref":"refs/heads/master","commits":[{"sha":"1e6b97ad2a8569740673e2f510999ae135c560e7","author":{"name":"Vincent Rabaud","email":"vrabaud@willowgarage.com"},"url":"https://api.github.com/repos/plasmodic/ecto_ros/commits/1e6b97ad2a8569740673e2f510999ae135c560e7","distinct":true,"message":"nav_msgs is a package so depend on common_msgs"}]},"public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"4be7facec5e98fccdb93685d7e6942c1","id":813169,"login":"plasmodic"},"repo":{"url":"https://api.github.com/repos/plasmodic/ecto_ros","id":1945697,"name":"plasmodic/ecto_ros"},"id":"1529213318"},{"actor":{"url":"https://api.github.com/users/bradvin","gravatar_id":"87df524abcdbb0207a58e6a441bf489e","id":1409490,"login":"bradvin"},"type":"CreateEvent","created_at":"2012-03-12T20:38:44Z","payload":{"master_branch":"master","ref_type":"branch","description":"Agile Planning Poker App","ref":"master"},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/bradvin/poker","id":3698248,"name":"bradvin/poker"},"id":"1529213317"},{"actor":{"url":"https://api.github.com/users/hulevskyi","gravatar_id":"a21eaacdcf370e1808c4e7d61509eb24","id":1524428,"login":"hulevskyi"},"type":"CreateEvent","created_at":"2012-03-12T20:38:44Z","payload":{"master_branch":"master","ref_type":"branch","ref":"master","description":""},"public":true,"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/hulevskyi/DroidRadar","id":3699708,"name":"hulevskyi/DroidRadar"},"id":"1529213313"}] - -GET /events?page=7 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4781'), ('content-length', '42398'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"465f8e42fe512109917270f1eedecf56"'), ('date', 'Mon, 12 Mar 2012 20:40:37 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/bradvin","gravatar_id":"87df524abcdbb0207a58e6a441bf489e","id":1409490,"login":"bradvin"},"type":"CreateEvent","created_at":"2012-03-12T20:38:44Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"branch","description":"Agile Planning Poker App","ref":"master"},"repo":{"url":"https://api.github.com/repos/bradvin/poker","id":3698248,"name":"bradvin/poker"},"id":"1529213317"},{"actor":{"url":"https://api.github.com/users/hulevskyi","gravatar_id":"a21eaacdcf370e1808c4e7d61509eb24","id":1524428,"login":"hulevskyi"},"type":"CreateEvent","created_at":"2012-03-12T20:38:44Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"branch","ref":"master","description":""},"repo":{"url":"https://api.github.com/repos/hulevskyi/DroidRadar","id":3699708,"name":"hulevskyi/DroidRadar"},"id":"1529213313"},{"actor":{"url":"https://api.github.com/users/kingston","gravatar_id":"b8348749c0b1b4e2dda1b7f4b4ff6a98","id":339308,"login":"kingston"},"type":"PushEvent","created_at":"2012-03-12T20:38:43Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"ce60ce0e0f76830658490a33ccd8db8a62a90a98","size":1,"push_id":66899506,"commits":[{"sha":"ce60ce0e0f76830658490a33ccd8db8a62a90a98","author":{"name":"Kingston","email":"git@kingstontam.com"},"url":"https://api.github.com/repos/kingston/kineticmath/commits/ce60ce0e0f76830658490a33ccd8db8a62a90a98","distinct":true,"message":"Redid body to make it correspond to actual body's coordinates"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/kingston/kineticmath","id":3501056,"name":"kingston/kineticmath"},"id":"1529213299"},{"actor":{"url":"https://api.github.com/users/schaefi","gravatar_id":"05d4e92c77ba6a7a20f7cae26b205a63","id":912234,"login":"schaefi"},"type":"PushEvent","created_at":"2012-03-12T20:38:42Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"eba8b10e96bfc815a8b7fa8d819e8de1","id":623819,"login":"openSUSE"},"payload":{"head":"09271a7d413eea2ee3cbbbbc5d5f4607dc012b50","size":1,"push_id":66899504,"commits":[{"sha":"09271a7d413eea2ee3cbbbbc5d5f4607dc012b50","author":{"name":"Robert Schweikert","email":"rjschwei@suse.com"},"url":"https://api.github.com/repos/openSUSE/kiwi/commits/09271a7d413eea2ee3cbbbbc5d5f4607dc012b50","distinct":true,"message":"- fix Validator test\n Revert f551128061 and d76e57194c, comparison in question checks for\n equality of objects, thus numerical comparison is appropriate"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/openSUSE/kiwi","id":2040856,"name":"openSUSE/kiwi"},"id":"1529213294"},{"actor":{"url":"https://api.github.com/users/schaefi","gravatar_id":"05d4e92c77ba6a7a20f7cae26b205a63","id":912234,"login":"schaefi"},"type":"PullRequestEvent","created_at":"2012-03-12T20:38:41Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"eba8b10e96bfc815a8b7fa8d819e8de1","id":623819,"login":"openSUSE"},"payload":{"number":57,"pull_request":{"issue_url":"https://github.com/openSUSE/kiwi/issues/57","head":{"label":"rjschwei:factTest","repo":{"name":"kiwi","master_branch":null,"size":156,"created_at":"2011-10-06T13:55:38Z","has_wiki":true,"clone_url":"https://github.com/rjschwei/kiwi.git","private":false,"updated_at":"2012-03-12T19:43:42Z","watchers":1,"git_url":"git://github.com/rjschwei/kiwi.git","ssh_url":"git@github.com:rjschwei/kiwi.git","fork":true,"language":"Perl","url":"https://api.github.com/repos/rjschwei/kiwi","id":2526142,"pushed_at":"2012-03-12T19:43:34Z","svn_url":"https://github.com/rjschwei/kiwi","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://isny.homelinux.com","has_issues":false,"forks":0,"description":"KIWI OS Image builder","html_url":"https://github.com/rjschwei/kiwi","owner":{"avatar_url":"https://secure.gravatar.com/avatar/ed5b1491aa79201a8eaf93bf57193584?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ed5b1491aa79201a8eaf93bf57193584","url":"https://api.github.com/users/rjschwei","id":1087183,"login":"rjschwei"}},"sha":"09271a7d413eea2ee3cbbbbc5d5f4607dc012b50","ref":"factTest","user":{"avatar_url":"https://secure.gravatar.com/avatar/ed5b1491aa79201a8eaf93bf57193584?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ed5b1491aa79201a8eaf93bf57193584","url":"https://api.github.com/users/rjschwei","id":1087183,"login":"rjschwei"}},"number":57,"changed_files":1,"created_at":"2012-03-12T19:44:06Z","merged_by":{"avatar_url":"https://secure.gravatar.com/avatar/05d4e92c77ba6a7a20f7cae26b205a63?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"05d4e92c77ba6a7a20f7cae26b205a63","url":"https://api.github.com/users/schaefi","id":912234,"login":"schaefi"},"merged":true,"comments":0,"body":"Revert f551128061 and d76e57194c, comparison in question checks for\r\n equality of objects, thus numerical comparison is appropriate","title":"- fix Validator test","additions":1,"updated_at":"2012-03-12T20:38:41Z","diff_url":"https://github.com/openSUSE/kiwi/pull/57.diff","_links":{"html":{"href":"https://github.com/openSUSE/kiwi/pull/57"},"self":{"href":"https://api.github.com/repos/openSUSE/kiwi/pulls/57"},"comments":{"href":"https://api.github.com/repos/openSUSE/kiwi/issues/57/comments"},"review_comments":{"href":"https://api.github.com/repos/openSUSE/kiwi/pulls/57/comments"}},"url":"https://api.github.com/repos/openSUSE/kiwi/pulls/57","id":969573,"patch_url":"https://github.com/openSUSE/kiwi/pull/57.patch","mergeable":null,"merged_at":"2012-03-12T20:38:41Z","closed_at":"2012-03-12T20:38:41Z","commits":1,"user":{"avatar_url":"https://secure.gravatar.com/avatar/ed5b1491aa79201a8eaf93bf57193584?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ed5b1491aa79201a8eaf93bf57193584","url":"https://api.github.com/users/rjschwei","id":1087183,"login":"rjschwei"},"review_comments":0,"html_url":"https://github.com/openSUSE/kiwi/pull/57","deletions":1,"state":"closed","base":{"label":"openSUSE:master","repo":{"name":"kiwi","master_branch":null,"size":346,"created_at":"2011-07-13T08:30:10Z","has_wiki":true,"clone_url":"https://github.com/openSUSE/kiwi.git","private":false,"updated_at":"2012-03-12T20:38:40Z","watchers":15,"git_url":"git://github.com/openSUSE/kiwi.git","ssh_url":"git@github.com:openSUSE/kiwi.git","fork":false,"language":"Perl","url":"https://api.github.com/repos/openSUSE/kiwi","id":2040856,"pushed_at":"2012-03-12T20:38:39Z","svn_url":"https://github.com/openSUSE/kiwi","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://opensuse.github.com/kiwi","has_issues":false,"forks":4,"description":"KIWI OS Image builder","html_url":"https://github.com/openSUSE/kiwi","owner":{"avatar_url":"https://secure.gravatar.com/avatar/eba8b10e96bfc815a8b7fa8d819e8de1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"eba8b10e96bfc815a8b7fa8d819e8de1","url":"https://api.github.com/users/openSUSE","id":623819,"login":"openSUSE"}},"sha":"0ed9c17c2b116ea83c6e790467e755f06f2a100c","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/eba8b10e96bfc815a8b7fa8d819e8de1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"eba8b10e96bfc815a8b7fa8d819e8de1","url":"https://api.github.com/users/openSUSE","id":623819,"login":"openSUSE"}}},"action":"closed"},"repo":{"url":"https://api.github.com/repos/openSUSE/kiwi","id":2040856,"name":"openSUSE/kiwi"},"id":"1529213292"},{"actor":{"url":"https://api.github.com/users/mvieghofer","gravatar_id":"d01a62eb3e3e3520564c635ca3d0953b","id":767703,"login":"mvieghofer"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:41Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"opened","issue":{"number":17,"created_at":"2012-03-12T20:38:41Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"We need a settings page where the user can configure if he wants to use the metris system or miles, if he only wants to use wlan and so on...","title":"Add global settings page","updated_at":"2012-03-12T20:38:41Z","url":"https://api.github.com/repos/celaus/quartermaster/issues/17","id":3618666,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/d01a62eb3e3e3520564c635ca3d0953b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"d01a62eb3e3e3520564c635ca3d0953b","url":"https://api.github.com/users/mvieghofer","id":767703,"login":"mvieghofer"},"html_url":"https://github.com/celaus/quartermaster/issues/17","labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/celaus/quartermaster","id":3088920,"name":"celaus/quartermaster"},"id":"1529213290"},{"actor":{"url":"https://api.github.com/users/jxp","gravatar_id":"42a9de47ed87a81ced5cab792d01e717","id":1502303,"login":"jxp"},"type":"GollumEvent","created_at":"2012-03-12T20:38:40Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"pages":[{"sha":"581b227a3293a802b713b47c17ba4dee11c209a0","title":"PhoneGap Desktop","action":"edited","page_name":"Home","summary":null,"html_url":"https://github.com/jxp/phonegap-desktop/wiki/Home"}]},"repo":{"url":"https://api.github.com/repos/jxp/phonegap-desktop","id":3627114,"name":"jxp/phonegap-desktop"},"id":"1529213279"},{"actor":{"url":"https://api.github.com/users/onedayitwillmake","gravatar_id":"f060b53dd18010b7167d5a0b505c8f78","id":451405,"login":"onedayitwillmake"},"type":"PushEvent","created_at":"2012-03-12T20:38:39Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"023caef5439c229895f67960ffbd96986b45447d","size":1,"push_id":66899495,"commits":[{"sha":"023caef5439c229895f67960ffbd96986b45447d","author":{"name":"Mario Gonzalez","email":"mariogonzalez@gmail.com"},"url":"https://api.github.com/repos/onedayitwillmake/ChuCloneSite/commits/023caef5439c229895f67960ffbd96986b45447d","distinct":true,"message":"Update README"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/onedayitwillmake/ChuCloneSite","id":2092434,"name":"onedayitwillmake/ChuCloneSite"},"id":"1529213277"},{"actor":{"url":"https://api.github.com/users/rodrigogolive","gravatar_id":"622f50d4c1a339c73140fb700fbce5c2","id":1218078,"login":"rodrigogolive"},"type":"PushEvent","created_at":"2012-03-12T20:38:39Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d41d8cd98f00b204e9800998ecf8427e","id":1395057,"login":"INdT"},"payload":{"head":"9d09f4c273c6196d8e8528a3aca81c5edc22196f","size":2,"push_id":66899498,"commits":[{"sha":"7f54a93142364ea4c40c349b3f51497e1f230031","author":{"name":"Rodrigo Goncalves de Oliveira","email":"rodrigo.goncalves@openbossa.org"},"url":"https://api.github.com/repos/INdT/Quasi-Engine/commits/7f54a93142364ea4c40c349b3f51497e1f230031","distinct":false,"message":"Improving image creation\n\nNow, offsets are early calculated, not on real time anymore\n\nSigned-off-by: Rodrigo Goncalves de Oliveira "},{"sha":"9d09f4c273c6196d8e8528a3aca81c5edc22196f","author":{"name":"Rodrigo Goncalves de Oliveira","email":"rodrigo.goncalves@openbossa.org"},"url":"https://api.github.com/repos/INdT/Quasi-Engine/commits/9d09f4c273c6196d8e8528a3aca81c5edc22196f","distinct":false,"message":"Fixing examples to work with new layer drawing method\n\nSigned-off-by: Rodrigo Goncalves de Oliveira "}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/INdT/Quasi-Engine","id":2839094,"name":"INdT/Quasi-Engine"},"id":"1529213275"},{"actor":{"url":"https://api.github.com/users/C-o-r-E","gravatar_id":"23400e1d5264d77e9515ac1aa4fd1d66","id":131006,"login":"C-o-r-E"},"type":"PushEvent","created_at":"2012-03-12T20:38:38Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"de349ef37458d073e47739dd867dfc896ba80d9e","size":2,"push_id":66899492,"commits":[{"sha":"12578abf2ee242e614c363728992f8cf899943cd","author":{"name":"C-o-r-E","email":"can.of.tuna@gmail.com"},"url":"https://api.github.com/repos/C-o-r-E/megaint/commits/12578abf2ee242e614c363728992f8cf899943cd","distinct":true,"message":"some more work... but lost some due to power loss :("},{"sha":"de349ef37458d073e47739dd867dfc896ba80d9e","author":{"name":"C-o-r-E","email":"can.of.tuna@gmail.com"},"url":"https://api.github.com/repos/C-o-r-E/megaint/commits/de349ef37458d073e47739dd867dfc896ba80d9e","distinct":true,"message":"some more work... on addition for one. Not in working order yet."}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/C-o-r-E/megaint","id":3689343,"name":"C-o-r-E/megaint"},"id":"1529213271"},{"actor":{"url":"https://api.github.com/users/"},"type":"GistEvent","created_at":"2012-03-12T20:38:38Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"create","gist":{"created_at":"2012-03-12T20:38:38Z","comments":0,"public":true,"git_push_url":"git@gist.github.com:2024548.git","files":{},"updated_at":"2012-03-12T20:38:38Z","url":"https://api.github.com/gists/2024548","id":"2024548","git_pull_url":"git://gist.github.com/2024548.git","description":null,"html_url":"https://gist.github.com/2024548","user":null}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213272"},{"actor":{"url":"https://api.github.com/users/computerdude5000","gravatar_id":"09f942caa6069a3a80dd4a2e3c18171a","id":1530360,"login":"computerdude5000"},"type":"FollowEvent","created_at":"2012-03-12T20:38:38Z","public":0,"org":{"url":"https://api.github.com/orgs/"},"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/68b7e3d5cc8ed08021b1f88e52ac8a39?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"68b7e3d5cc8ed08021b1f88e52ac8a39","created_at":"2011-06-15T06:07:21Z","public_repos":6,"followers":1,"public_gists":0,"url":"https://api.github.com/users/Hawkheart","id":851071,"type":"User","html_url":"https://github.com/Hawkheart","login":"Hawkheart","following":0}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213268"},{"actor":{"url":"https://api.github.com/users/dhellmann","gravatar_id":"4021eb3a9a363520e27c736cec6905e6","id":43312,"login":"dhellmann"},"type":"PushEvent","created_at":"2012-03-12T20:38:37Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"892a04b47eb82f33d92f6b2fdd5deb4c","id":1339138,"login":"dreamhost"},"payload":{"head":"59a1d49f9bbfd7bb71cb667a3767ab85b8b120b3","size":1,"push_id":66899489,"commits":[{"sha":"59a1d49f9bbfd7bb71cb667a3767ab85b8b120b3","author":{"name":"Doug Hellmann","email":"doug.hellmann@dreamhost.com"},"url":"https://api.github.com/repos/dreamhost/dreamstack-deploy/commits/59a1d49f9bbfd7bb71cb667a3767ab85b8b120b3","distinct":true,"message":"Use the --no-prompt-passwords option instead of pusing a local rc file"}],"ref":"refs/heads/use-devstack-py"},"repo":{"url":"https://api.github.com/repos/dreamhost/dreamstack-deploy","id":3374610,"name":"dreamhost/dreamstack-deploy"},"id":"1529213266"},{"actor":{"url":"https://api.github.com/users/EdPoole","gravatar_id":"e2ef11c2b03b51a68eb688e23c485cd6","id":1478864,"login":"EdPoole"},"type":"CreateEvent","created_at":"2012-03-12T20:38:37Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref":null,"ref_type":"repository","description":"VLE Project"},"repo":{"url":"https://api.github.com/repos/EdPoole/WCSCoursework","id":3699716,"name":"EdPoole/WCSCoursework"},"id":"1529213265"},{"actor":{"url":"https://api.github.com/users/JackDanger","gravatar_id":"78a3ebe99992a520ba8dd78748f987ff","id":2071,"login":"JackDanger"},"type":"ForkEvent","created_at":"2012-03-12T20:38:37Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"22be51f9cf3849462ffc4107675ec182","id":8312,"login":"sinatra"},"payload":{"forkee":{"name":"sinatra","master_branch":null,"size":508,"created_at":"2012-03-12T20:38:36Z","has_wiki":false,"public":true,"clone_url":"https://github.com/JackDanger/sinatra.git","private":false,"updated_at":"2012-03-12T20:38:36Z","watchers":1,"language":"Ruby","ssh_url":"git@github.com:JackDanger/sinatra.git","git_url":"git://github.com/JackDanger/sinatra.git","fork":true,"url":"https://api.github.com/repos/JackDanger/sinatra","id":3699715,"pushed_at":"2012-03-11T12:57:04Z","svn_url":"https://github.com/JackDanger/sinatra","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"http://www.sinatrarb.com/","has_issues":false,"forks":0,"description":"Classy web-development dressed in a DSL (official / canonical repo)","html_url":"https://github.com/JackDanger/sinatra","owner":{"avatar_url":"https://secure.gravatar.com/avatar/78a3ebe99992a520ba8dd78748f987ff?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"78a3ebe99992a520ba8dd78748f987ff","url":"https://api.github.com/users/JackDanger","id":2071,"login":"JackDanger"}}},"repo":{"url":"https://api.github.com/repos/sinatra/sinatra","id":106995,"name":"sinatra/sinatra"},"id":"1529213262"},{"actor":{"url":"https://api.github.com/users/psaikko","gravatar_id":"616a87713838a92d422dfaf59c037371","id":680179,"login":"psaikko"},"type":"PushEvent","created_at":"2012-03-12T20:38:37Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d41d8cd98f00b204e9800998ecf8427e","id":1515457,"login":"lolcatz"},"payload":{"head":"ab35f0e584ac13a793904a6f58171528ad08562e","size":1,"push_id":66899487,"commits":[{"sha":"ab35f0e584ac13a793904a6f58171528ad08562e","author":{"name":"Paul Saikko","email":"psaikko@ukko038.hpc.cs.helsinki.fi"},"url":"https://api.github.com/repos/lolcatz/image-processing-java/commits/ab35f0e584ac13a793904a6f58171528ad08562e","distinct":true,"message":"modified to run on ukko, commented out file write"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/lolcatz/image-processing-java","id":3664206,"name":"lolcatz/image-processing-java"},"id":"1529213263"},{"actor":{"url":"https://api.github.com/users/mattia-battiston","gravatar_id":"bb8949200058311a9511e3f5a194b94d","id":852681,"login":"mattia-battiston"},"type":"PushEvent","created_at":"2012-03-12T20:38:35Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"8a558ba00031813bd3675f9a779946c5af43eca2","size":1,"push_id":66899486,"commits":[{"sha":"8a558ba00031813bd3675f9a779946c5af43eca2","author":{"name":"Mattia Battiston","email":"mattia.battiston@gmail.com"},"url":"https://api.github.com/repos/mattia-battiston/catchme/commits/8a558ba00031813bd3675f9a779946c5af43eca2","distinct":true,"message":"configuring the steps"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/mattia-battiston/catchme","id":3314654,"name":"mattia-battiston/catchme"},"id":"1529213256"},{"actor":{"url":"https://api.github.com/users/bendk","gravatar_id":"be5919fe083074744cbc591cfec0e596","id":1012809,"login":"bendk"},"type":"PullRequestEvent","created_at":"2012-03-12T20:38:34Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"585ceef1aa20ba87608132b45ae1f27b","id":910812,"login":"pculture"},"payload":{"number":268,"pull_request":{"issue_url":"https://github.com/pculture/miro/issues/268","head":{"label":"bendk:fix18840","repo":{"name":"miro","master_branch":null,"size":268,"created_at":"2011-09-21T15:37:13Z","has_wiki":false,"clone_url":"https://github.com/bendk/miro.git","private":false,"updated_at":"2012-03-12T20:36:55Z","watchers":2,"language":"Python","ssh_url":"git@github.com:bendk/miro.git","fork":true,"git_url":"git://github.com/bendk/miro.git","url":"https://api.github.com/repos/bendk/miro","id":2430689,"pushed_at":"2012-03-12T20:36:55Z","svn_url":"https://github.com/bendk/miro","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://www.getmiro.com/","has_issues":false,"forks":0,"description":"Miro is a popular, free, and open internet TV application. It brings video channels from thousands of sources and has more free HD than any other platform.","html_url":"https://github.com/bendk/miro","owner":{"avatar_url":"https://secure.gravatar.com/avatar/be5919fe083074744cbc591cfec0e596?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"be5919fe083074744cbc591cfec0e596","url":"https://api.github.com/users/bendk","id":1012809,"login":"bendk"}},"sha":"efc0826189958c6231cc81132c75135cbc5f2cba","ref":"fix18840","user":{"avatar_url":"https://secure.gravatar.com/avatar/be5919fe083074744cbc591cfec0e596?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"be5919fe083074744cbc591cfec0e596","url":"https://api.github.com/users/bendk","id":1012809,"login":"bendk"}},"number":268,"created_at":"2012-03-12T20:38:34Z","merged_by":null,"merged":false,"changed_files":3,"comments":0,"body":"Fixed more time cleaning things up then actually fixing the ticket for this one. ","title":"Fix18840","diff_url":"https://github.com/pculture/miro/pull/268.diff","additions":4,"updated_at":"2012-03-12T20:38:34Z","_links":{"html":{"href":"https://github.com/pculture/miro/pull/268"},"self":{"href":"https://api.github.com/repos/pculture/miro/pulls/268"},"comments":{"href":"https://api.github.com/repos/pculture/miro/issues/268/comments"},"review_comments":{"href":"https://api.github.com/repos/pculture/miro/pulls/268/comments"}},"url":"https://api.github.com/repos/pculture/miro/pulls/268","id":969994,"patch_url":"https://github.com/pculture/miro/pull/268.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":3,"user":{"avatar_url":"https://secure.gravatar.com/avatar/be5919fe083074744cbc591cfec0e596?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"be5919fe083074744cbc591cfec0e596","url":"https://api.github.com/users/bendk","id":1012809,"login":"bendk"},"review_comments":0,"html_url":"https://github.com/pculture/miro/pull/268","deletions":3,"state":"open","base":{"label":"pculture:master","repo":{"name":"miro","master_branch":null,"size":31632,"created_at":"2011-08-31T15:58:26Z","has_wiki":false,"clone_url":"https://github.com/pculture/miro.git","private":false,"updated_at":"2012-03-12T19:10:31Z","watchers":31,"language":"Python","ssh_url":"git@github.com:pculture/miro.git","fork":false,"git_url":"git://github.com/pculture/miro.git","url":"https://api.github.com/repos/pculture/miro","id":2302470,"pushed_at":"2012-03-12T19:09:24Z","svn_url":"https://github.com/pculture/miro","open_issues":6,"mirror_url":null,"has_downloads":true,"homepage":"http://www.getmiro.com/","has_issues":false,"forks":17,"description":"Miro is a popular, free, and open internet TV application. It brings video channels from thousands of sources and has more free HD than any other platform.","html_url":"https://github.com/pculture/miro","owner":{"avatar_url":"https://secure.gravatar.com/avatar/585ceef1aa20ba87608132b45ae1f27b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"585ceef1aa20ba87608132b45ae1f27b","url":"https://api.github.com/users/pculture","id":910812,"login":"pculture"}},"sha":"5417b78012ca38755db7ace43f2672c93f759be2","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/585ceef1aa20ba87608132b45ae1f27b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"585ceef1aa20ba87608132b45ae1f27b","url":"https://api.github.com/users/pculture","id":910812,"login":"pculture"}}},"action":"opened"},"repo":{"url":"https://api.github.com/repos/pculture/miro","id":2302470,"name":"pculture/miro"},"id":"1529213251"},{"actor":{"url":"https://api.github.com/users/kingcoyote","gravatar_id":"7ce6cabc71e11ada096cd44425fec572","id":755962,"login":"kingcoyote"},"type":"CreateEvent","created_at":"2012-03-12T20:38:34Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"branch","description":"A browser based space shooter","ref":"test-flash"},"repo":{"url":"https://api.github.com/repos/kingcoyote/fusion","id":3369611,"name":"kingcoyote/fusion"},"id":"1529213249"},{"actor":{"url":"https://api.github.com/users/Cyprias","gravatar_id":"21cd206a47767a2443b3538918bc876b","id":1519674,"login":"Cyprias"},"type":"PushEvent","created_at":"2012-03-12T20:38:34Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"7b88d782faf29f2963e4c428ce465562b22887a8","size":2,"push_id":66899480,"commits":[{"sha":"667e94e0e788134dff6028c178f4e9ebabd5864f","author":{"name":"Cyprias","email":"Cyprias@gmail.com"},"url":"https://api.github.com/repos/Cyprias/PurchasePermissions/commits/667e94e0e788134dff6028c178f4e9ebabd5864f","distinct":true,"message":"- Fixed our string format function breaking on missing vars.\n- Added more localized strings. "},{"sha":"7b88d782faf29f2963e4c428ce465562b22887a8","author":{"name":"Cyprias","email":"Cyprias@gmail.com"},"url":"https://api.github.com/repos/Cyprias/PurchasePermissions/commits/7b88d782faf29f2963e4c428ce465562b22887a8","distinct":true,"message":"- Updated some locales and chat colours. "}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/Cyprias/PurchasePermissions","id":3674398,"name":"Cyprias/PurchasePermissions"},"id":"1529213247"},{"actor":{"url":"https://api.github.com/users/50m30n3","gravatar_id":"e1237e5d5b47f6f92769dcc8007016f3","id":542581,"login":"50m30n3"},"type":"CreateEvent","created_at":"2012-03-12T20:38:34Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"branch","description":"IP over audio tunnel","ref":"master"},"repo":{"url":"https://api.github.com/repos/50m30n3/dsptunnel","id":3699709,"name":"50m30n3/dsptunnel"},"id":"1529213245"},{"actor":{"url":"https://api.github.com/users/lkastner","gravatar_id":"a87642a80575aacc6a8408f6451aef45","id":1459046,"login":"lkastner"},"type":"GollumEvent","created_at":"2012-03-12T20:38:33Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"pages":[{"sha":"9ef1770ccdef4988a552d40b6b5f121d7575baa4","title":"TODO","action":"edited","page_name":"TODO","summary":null,"html_url":"https://github.com/lkastner/polymake_toric/wiki/TODO"}]},"repo":{"url":"https://api.github.com/repos/lkastner/polymake_toric","id":3526750,"name":"lkastner/polymake_toric"},"id":"1529213242"},{"actor":{"url":"https://api.github.com/users/sarken","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","id":907055,"login":"sarken"},"type":"PullRequestEvent","created_at":"2012-03-12T20:38:33Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"03b5a7209e4ddf6c7c28fd2fc1f131e4","id":408606,"login":"otwcode"},"payload":{"number":530,"pull_request":{"issue_url":"https://github.com/otwcode/otwarchive/issues/530","head":{"label":"sarken:issue_2963","repo":{"name":"otwarchive","master_branch":null,"size":388,"created_at":"2011-07-11T05:42:20Z","has_wiki":true,"clone_url":"https://github.com/sarken/otwarchive.git","private":false,"updated_at":"2012-03-12T20:34:37Z","watchers":1,"git_url":"git://github.com/sarken/otwarchive.git","language":"Ruby","ssh_url":"git@github.com:sarken/otwarchive.git","fork":true,"url":"https://api.github.com/repos/sarken/otwarchive","id":2028681,"pushed_at":"2012-03-12T20:34:37Z","svn_url":"https://github.com/sarken/otwarchive","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"http://transformativeworks.org/projects/archive","has_issues":false,"forks":0,"description":"The Organization for Transformative Works - Archive Project","html_url":"https://github.com/sarken/otwarchive","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b62b11df1cef2cea5843a26649fdb50a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","url":"https://api.github.com/users/sarken","id":907055,"login":"sarken"}},"sha":"00c13fd9c6d5c3db67a03327173e874cb22959b9","ref":"issue_2963","user":{"avatar_url":"https://secure.gravatar.com/avatar/b62b11df1cef2cea5843a26649fdb50a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","url":"https://api.github.com/users/sarken","id":907055,"login":"sarken"}},"number":530,"merged_by":null,"changed_files":1,"created_at":"2012-03-12T20:38:32Z","merged":false,"comments":0,"body":"http://code.google.com/p/otwarchive/issues/detail?id=2963\r\n\r\nOn the iPhone, navigation items appearing above ordered lists on dashboard pages (such as any user's works index or your own collection index) were unclickable because the ordered lists were overlapping them. Changing the clear on .dashboard .landmark for the handheld stylesheet fixes that.","title":"Fix issue 2963 with unclickable navigation on mobile dashboard pages","additions":4,"updated_at":"2012-03-12T20:38:32Z","diff_url":"https://github.com/otwcode/otwarchive/pull/530.diff","_links":{"html":{"href":"https://github.com/otwcode/otwarchive/pull/530"},"self":{"href":"https://api.github.com/repos/otwcode/otwarchive/pulls/530"},"comments":{"href":"https://api.github.com/repos/otwcode/otwarchive/issues/530/comments"},"review_comments":{"href":"https://api.github.com/repos/otwcode/otwarchive/pulls/530/comments"}},"url":"https://api.github.com/repos/otwcode/otwarchive/pulls/530","id":969993,"patch_url":"https://github.com/otwcode/otwarchive/pull/530.patch","mergeable":null,"commits":1,"merged_at":null,"closed_at":null,"html_url":"https://github.com/otwcode/otwarchive/pull/530","user":{"avatar_url":"https://secure.gravatar.com/avatar/b62b11df1cef2cea5843a26649fdb50a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","url":"https://api.github.com/users/sarken","id":907055,"login":"sarken"},"review_comments":0,"deletions":0,"state":"open","base":{"label":"otwcode:master","repo":{"name":"otwarchive","master_branch":null,"size":11120,"created_at":"2011-02-07T14:50:58Z","has_wiki":true,"clone_url":"https://github.com/otwcode/otwarchive.git","private":false,"updated_at":"2012-03-12T17:03:54Z","watchers":55,"git_url":"git://github.com/otwcode/otwarchive.git","language":"Ruby","ssh_url":"git@github.com:otwcode/otwarchive.git","fork":false,"url":"https://api.github.com/repos/otwcode/otwarchive","id":1338040,"pushed_at":"2012-03-12T17:03:54Z","svn_url":"https://github.com/otwcode/otwarchive","open_issues":7,"has_downloads":true,"mirror_url":null,"homepage":"http://transformativeworks.org/projects/archive","has_issues":true,"forks":43,"description":"The Organization for Transformative Works (OTW) - Archive Of Our Own (AO3) Project","html_url":"https://github.com/otwcode/otwarchive","owner":{"avatar_url":"https://secure.gravatar.com/avatar/03b5a7209e4ddf6c7c28fd2fc1f131e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"03b5a7209e4ddf6c7c28fd2fc1f131e4","url":"https://api.github.com/users/otwcode","id":408606,"login":"otwcode"}},"sha":"67f9da5ab8173c3273ee585647a6b5f11f40d981","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/03b5a7209e4ddf6c7c28fd2fc1f131e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"03b5a7209e4ddf6c7c28fd2fc1f131e4","url":"https://api.github.com/users/otwcode","id":408606,"login":"otwcode"}}},"action":"opened"},"repo":{"url":"https://api.github.com/repos/otwcode/otwarchive","id":1338040,"name":"otwcode/otwarchive"},"id":"1529213239"},{"actor":{"url":"https://api.github.com/users/adamhoracek","gravatar_id":"65bf2a066afba5d6f4eb4df1723b5fc8","id":734739,"login":"adamhoracek"},"type":"WatchEvent","created_at":"2012-03-12T20:38:33Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/mystcolor/JTRevealSidebarDemo","id":2554914,"name":"mystcolor/JTRevealSidebarDemo"},"id":"1529213238"},{"actor":{"url":"https://api.github.com/users/seaneble","gravatar_id":"adc7bf034e6cbd09a212d84ad12ad415","id":1255670,"login":"seaneble"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:31Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"a9f2ac20cba6a17964c01267ced44548","id":1206136,"login":"contao"},"payload":{"action":"opened","issue":{"number":4070,"created_at":"2012-03-12T20:38:30Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"Using the search module to display only a search form I get the following error message (PHP Fatal Error) in system/log/error.log.\r\nI discovered it after upgrading my test environment from 2.11.1 (git) to 3.0.x (git).\r\n\r\n```php\r\nCall to a member function getRelated() on a non-object in /var/www/html/test/htdocs/system/modules/frontend/ModuleSearch.php on line 119\r\n```","title":"Call to a member function getRelated() on a non-object","updated_at":"2012-03-12T20:38:30Z","url":"https://api.github.com/repos/contao/core/issues/4070","id":3618657,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/contao/core/issues/4070","user":{"avatar_url":"https://secure.gravatar.com/avatar/adc7bf034e6cbd09a212d84ad12ad415?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adc7bf034e6cbd09a212d84ad12ad415","url":"https://api.github.com/users/seaneble","id":1255670,"login":"seaneble"},"labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/contao/core","id":2875825,"name":"contao/core"},"id":"1529213226"},{"actor":{"url":"https://api.github.com/users/fpurcell","gravatar_id":"f2cb743ef538d018cf8e45a64972719c","id":64323,"login":"fpurcell"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:30Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"82f833d7f49191769ab7dbacf0bd7dc0","id":325773,"login":"openplans"},"payload":{"action":"opened","issue":{"number":634,"created_at":"2012-03-12T20:38:29Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"On March 11, 2012, http://rtp.trimet.org could not calculate transit instructions. The problem stems from the move to Daylight Savings time at 2:00 am on 3/11/12.\r\n\r\nBinaries & Data: http://maps5.trimet.org/otp-bugs/dst_3-11-2012/\r\n\r\n\r\nCompare: \r\n\r\nhttp://rtp.trimet.org?submit&fromPlace=PDX::45.589850,-122.599266&toPlace=Zoo::45.509750,-122.714645&date=03/11/2012\r\n\r\nvs.\r\n\r\nhttp://rtp.trimet.org?submit&fromPlace=PDX::45.589850,-122.599266&toPlace=Zoo::45.509750,-122.714645&date=03/18/2012\r\n\r\nBoth Sundays run the same two service keys, so both should theoretically return the same results. Dave says there’s special logic for days where DST changes take effect…\r\n","title":"daylight savings time","updated_at":"2012-03-12T20:38:29Z","url":"https://api.github.com/repos/openplans/OpenTripPlanner/issues/634","id":3618656,"assignee":{"avatar_url":"https://secure.gravatar.com/avatar/7af0a4685e93e44ffcd2935fa31ff1c4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7af0a4685e93e44ffcd2935fa31ff1c4","url":"https://api.github.com/users/novalis","id":77003,"login":"novalis"},"milestone":{"number":9,"created_at":"2012-03-01T19:34:21Z","due_on":"2012-06-07T07:00:00Z","title":"0.6","creator":{"avatar_url":"https://secure.gravatar.com/avatar/aa89cac4eb961da882e29b31fac16ab9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"aa89cac4eb961da882e29b31fac16ab9","url":"https://api.github.com/users/andrewbyrd","id":112871,"login":"andrewbyrd"},"url":"https://api.github.com/repos/openplans/OpenTripPlanner/milestones/9","open_issues":20,"closed_issues":2,"description":"","state":"open"},"closed_at":null,"html_url":"https://github.com/openplans/OpenTripPlanner/issues/634","user":{"avatar_url":"https://secure.gravatar.com/avatar/f2cb743ef538d018cf8e45a64972719c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"f2cb743ef538d018cf8e45a64972719c","url":"https://api.github.com/users/fpurcell","id":64323,"login":"fpurcell"},"labels":[{"name":"bug","url":"https://api.github.com/repos/openplans/OpenTripPlanner/labels/bug","color":"e10c02"},{"name":"routing","url":"https://api.github.com/repos/openplans/OpenTripPlanner/labels/routing","color":"444444"}],"state":"open"}},"repo":{"url":"https://api.github.com/repos/openplans/OpenTripPlanner","id":2067253,"name":"openplans/OpenTripPlanner"},"id":"1529213225"},{"actor":{"url":"https://api.github.com/users/aiyah","gravatar_id":"9439e5f6e07cf8f1b31a9c34c144cef0","id":1530446,"login":"aiyah"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:29Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"comment":{"created_at":"2012-03-12T20:38:28Z","body":"Did you try adding single quotes around the width?\r\n\r\n$(this).fixedHeaderTable ({\r\n\t\theight: '180',\r\n\t\twidth: '' + tbodyW + '',\r\n\t\tautoShow: true\r\n});\r\n","updated_at":"2012-03-12T20:38:28Z","url":"https://api.github.com/repos/golovko/Fixed-Header-Table/issues/comments/4461138","id":4461138,"user":{"avatar_url":"https://secure.gravatar.com/avatar/9439e5f6e07cf8f1b31a9c34c144cef0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"9439e5f6e07cf8f1b31a9c34c144cef0","url":"https://api.github.com/users/aiyah","id":1530446,"login":"aiyah"}},"action":"created","issue":{"number":35,"created_at":"2012-02-06T06:17:35Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"Sorry about the non-specific title, but my main problem is that I cannot get your code to work. At all.\r\n\r\nThat may or may not be due to this JS Error:\r\n\r\n\"settings.width.search is not a function in .../jquery.fixedheadertable.js ... line: 83\"\r\n\r\nBut that error aside, I would *strongly* suggest to add a basic but complete example to your documentation that serves as a starting point and a fallback for people like me who cannot get your code to work. At all.\r\n\r\nAs it is your documentation sends a terrible message: \"If you cannot get this to work, you're unworthy to use it anyway\"","title":"Error","updated_at":"2012-03-12T20:38:28Z","url":"https://api.github.com/repos/golovko/Fixed-Header-Table/issues/35","id":3104286,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/4aa80d1a2178e48f3a51bba9fc0f5335?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"4aa80d1a2178e48f3a51bba9fc0f5335","url":"https://api.github.com/users/pecoes","id":1411526,"login":"pecoes"},"html_url":"https://github.com/golovko/Fixed-Header-Table/issues/35","labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/golovko/Fixed-Header-Table","id":1567277,"name":"golovko/Fixed-Header-Table"},"id":"1529213218"},{"actor":{"url":"https://api.github.com/users/easel","gravatar_id":"aacf0375285db03e17360ff38f70444e","id":94159,"login":"easel"},"type":"ForkEvent","created_at":"2012-03-12T20:38:28Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"forkee":{"name":"gunicorn","master_branch":null,"size":1966,"created_at":"2012-03-12T20:38:27Z","has_wiki":false,"public":true,"clone_url":"https://github.com/easel/gunicorn.git","private":false,"updated_at":"2012-03-12T20:38:27Z","watchers":1,"ssh_url":"git@github.com:easel/gunicorn.git","git_url":"git://github.com/easel/gunicorn.git","language":"Python","fork":true,"url":"https://api.github.com/repos/easel/gunicorn","id":3699713,"pushed_at":"2012-03-04T08:01:40Z","svn_url":"https://github.com/easel/gunicorn","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://www.gunicorn.org","has_issues":false,"forks":0,"description":"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.","html_url":"https://github.com/easel/gunicorn","owner":{"avatar_url":"https://secure.gravatar.com/avatar/aacf0375285db03e17360ff38f70444e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"aacf0375285db03e17360ff38f70444e","url":"https://api.github.com/users/easel","id":94159,"login":"easel"}}},"repo":{"url":"https://api.github.com/repos/benoitc/gunicorn","id":390510,"name":"benoitc/gunicorn"},"id":"1529213207"},{"actor":{"url":"https://api.github.com/users/malyanov","gravatar_id":"bde93597c5161569067d37d6a3e8d86a","id":1505810,"login":"malyanov"},"type":"CreateEvent","created_at":"2012-03-12T20:38:28Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"branch","ref":"master","description":"iOS версия дипломной работы"},"repo":{"url":"https://api.github.com/repos/malyanov/Diplom-iOS","id":3699688,"name":"malyanov/Diplom-iOS"},"id":"1529213206"},{"actor":{"url":"https://api.github.com/users/pazguille","gravatar_id":"f8a70e01eddbadc5e4f9876ff34494fa","id":250856,"login":"pazguille"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"05db479a42bbbcc38083e6c3cce42f6a","id":245516,"login":"mercadolibre"},"payload":{"head":"86d47256dd56868fb3d2a12493fb470d3f334784","size":1,"push_id":66899461,"commits":[{"sha":"86d47256dd56868fb3d2a12493fb470d3f334784","author":{"name":"pazguille","email":"guille87paz@gmail.com"},"url":"https://api.github.com/repos/mercadolibre/chico/commits/86d47256dd56868fb3d2a12493fb470d3f334784","distinct":true,"message":"Updated version to 0.10.3 in core.js"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/mercadolibre/chico","id":1049015,"name":"mercadolibre/chico"},"id":"1529213200"}] - -GET /events?page=8 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4780'), ('content-length', '40196'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"cada800100e95339da200b52fd9d84bf"'), ('date', 'Mon, 12 Mar 2012 20:40:41 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"repo":{"url":"https://api.github.com/repos/lkastner/polymake_toric","id":3526750,"name":"lkastner/polymake_toric"},"type":"GollumEvent","created_at":"2012-03-12T20:38:33Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/lkastner","gravatar_id":"a87642a80575aacc6a8408f6451aef45","id":1459046,"login":"lkastner"},"payload":{"pages":[{"sha":"9ef1770ccdef4988a552d40b6b5f121d7575baa4","title":"TODO","action":"edited","page_name":"TODO","summary":null,"html_url":"https://github.com/lkastner/polymake_toric/wiki/TODO"}]},"id":"1529213242"},{"repo":{"url":"https://api.github.com/repos/otwcode/otwarchive","id":1338040,"name":"otwcode/otwarchive"},"type":"PullRequestEvent","created_at":"2012-03-12T20:38:33Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"03b5a7209e4ddf6c7c28fd2fc1f131e4","id":408606,"login":"otwcode"},"public":true,"actor":{"url":"https://api.github.com/users/sarken","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","id":907055,"login":"sarken"},"payload":{"number":530,"pull_request":{"issue_url":"https://github.com/otwcode/otwarchive/issues/530","head":{"label":"sarken:issue_2963","repo":{"name":"otwarchive","master_branch":null,"size":388,"created_at":"2011-07-11T05:42:20Z","has_wiki":true,"clone_url":"https://github.com/sarken/otwarchive.git","private":false,"updated_at":"2012-03-12T20:34:37Z","watchers":1,"git_url":"git://github.com/sarken/otwarchive.git","language":"Ruby","ssh_url":"git@github.com:sarken/otwarchive.git","fork":true,"url":"https://api.github.com/repos/sarken/otwarchive","id":2028681,"pushed_at":"2012-03-12T20:34:37Z","svn_url":"https://github.com/sarken/otwarchive","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"http://transformativeworks.org/projects/archive","has_issues":false,"forks":0,"description":"The Organization for Transformative Works - Archive Project","html_url":"https://github.com/sarken/otwarchive","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b62b11df1cef2cea5843a26649fdb50a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","url":"https://api.github.com/users/sarken","id":907055,"login":"sarken"}},"sha":"00c13fd9c6d5c3db67a03327173e874cb22959b9","ref":"issue_2963","user":{"avatar_url":"https://secure.gravatar.com/avatar/b62b11df1cef2cea5843a26649fdb50a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","url":"https://api.github.com/users/sarken","id":907055,"login":"sarken"}},"number":530,"merged_by":null,"changed_files":1,"created_at":"2012-03-12T20:38:32Z","merged":false,"comments":0,"body":"http://code.google.com/p/otwarchive/issues/detail?id=2963\r\n\r\nOn the iPhone, navigation items appearing above ordered lists on dashboard pages (such as any user's works index or your own collection index) were unclickable because the ordered lists were overlapping them. Changing the clear on .dashboard .landmark for the handheld stylesheet fixes that.","title":"Fix issue 2963 with unclickable navigation on mobile dashboard pages","additions":4,"updated_at":"2012-03-12T20:38:32Z","diff_url":"https://github.com/otwcode/otwarchive/pull/530.diff","_links":{"html":{"href":"https://github.com/otwcode/otwarchive/pull/530"},"self":{"href":"https://api.github.com/repos/otwcode/otwarchive/pulls/530"},"comments":{"href":"https://api.github.com/repos/otwcode/otwarchive/issues/530/comments"},"review_comments":{"href":"https://api.github.com/repos/otwcode/otwarchive/pulls/530/comments"}},"url":"https://api.github.com/repos/otwcode/otwarchive/pulls/530","id":969993,"patch_url":"https://github.com/otwcode/otwarchive/pull/530.patch","mergeable":null,"commits":1,"merged_at":null,"closed_at":null,"html_url":"https://github.com/otwcode/otwarchive/pull/530","user":{"avatar_url":"https://secure.gravatar.com/avatar/b62b11df1cef2cea5843a26649fdb50a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b62b11df1cef2cea5843a26649fdb50a","url":"https://api.github.com/users/sarken","id":907055,"login":"sarken"},"review_comments":0,"deletions":0,"state":"open","base":{"label":"otwcode:master","repo":{"name":"otwarchive","master_branch":null,"size":11120,"created_at":"2011-02-07T14:50:58Z","has_wiki":true,"clone_url":"https://github.com/otwcode/otwarchive.git","private":false,"updated_at":"2012-03-12T17:03:54Z","watchers":55,"git_url":"git://github.com/otwcode/otwarchive.git","language":"Ruby","ssh_url":"git@github.com:otwcode/otwarchive.git","fork":false,"url":"https://api.github.com/repos/otwcode/otwarchive","id":1338040,"pushed_at":"2012-03-12T17:03:54Z","svn_url":"https://github.com/otwcode/otwarchive","open_issues":7,"has_downloads":true,"mirror_url":null,"homepage":"http://transformativeworks.org/projects/archive","has_issues":true,"forks":43,"description":"The Organization for Transformative Works (OTW) - Archive Of Our Own (AO3) Project","html_url":"https://github.com/otwcode/otwarchive","owner":{"avatar_url":"https://secure.gravatar.com/avatar/03b5a7209e4ddf6c7c28fd2fc1f131e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"03b5a7209e4ddf6c7c28fd2fc1f131e4","url":"https://api.github.com/users/otwcode","id":408606,"login":"otwcode"}},"sha":"67f9da5ab8173c3273ee585647a6b5f11f40d981","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/03b5a7209e4ddf6c7c28fd2fc1f131e4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"03b5a7209e4ddf6c7c28fd2fc1f131e4","url":"https://api.github.com/users/otwcode","id":408606,"login":"otwcode"}}},"action":"opened"},"id":"1529213239"},{"repo":{"url":"https://api.github.com/repos/mystcolor/JTRevealSidebarDemo","id":2554914,"name":"mystcolor/JTRevealSidebarDemo"},"type":"WatchEvent","created_at":"2012-03-12T20:38:33Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/adamhoracek","gravatar_id":"65bf2a066afba5d6f4eb4df1723b5fc8","id":734739,"login":"adamhoracek"},"payload":{"action":"started"},"id":"1529213238"},{"repo":{"url":"https://api.github.com/repos/contao/core","id":2875825,"name":"contao/core"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:31Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"a9f2ac20cba6a17964c01267ced44548","id":1206136,"login":"contao"},"public":true,"actor":{"url":"https://api.github.com/users/seaneble","gravatar_id":"adc7bf034e6cbd09a212d84ad12ad415","id":1255670,"login":"seaneble"},"payload":{"action":"opened","issue":{"number":4070,"created_at":"2012-03-12T20:38:30Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"Using the search module to display only a search form I get the following error message (PHP Fatal Error) in system/log/error.log.\r\nI discovered it after upgrading my test environment from 2.11.1 (git) to 3.0.x (git).\r\n\r\n```php\r\nCall to a member function getRelated() on a non-object in /var/www/html/test/htdocs/system/modules/frontend/ModuleSearch.php on line 119\r\n```","title":"Call to a member function getRelated() on a non-object","updated_at":"2012-03-12T20:38:30Z","url":"https://api.github.com/repos/contao/core/issues/4070","id":3618657,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/contao/core/issues/4070","user":{"avatar_url":"https://secure.gravatar.com/avatar/adc7bf034e6cbd09a212d84ad12ad415?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adc7bf034e6cbd09a212d84ad12ad415","url":"https://api.github.com/users/seaneble","id":1255670,"login":"seaneble"},"labels":[],"state":"open"}},"id":"1529213226"},{"repo":{"url":"https://api.github.com/repos/openplans/OpenTripPlanner","id":2067253,"name":"openplans/OpenTripPlanner"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:30Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"82f833d7f49191769ab7dbacf0bd7dc0","id":325773,"login":"openplans"},"public":true,"actor":{"url":"https://api.github.com/users/fpurcell","gravatar_id":"f2cb743ef538d018cf8e45a64972719c","id":64323,"login":"fpurcell"},"payload":{"action":"opened","issue":{"number":634,"created_at":"2012-03-12T20:38:29Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"On March 11, 2012, http://rtp.trimet.org could not calculate transit instructions. The problem stems from the move to Daylight Savings time at 2:00 am on 3/11/12.\r\n\r\nBinaries & Data: http://maps5.trimet.org/otp-bugs/dst_3-11-2012/\r\n\r\n\r\nCompare: \r\n\r\nhttp://rtp.trimet.org?submit&fromPlace=PDX::45.589850,-122.599266&toPlace=Zoo::45.509750,-122.714645&date=03/11/2012\r\n\r\nvs.\r\n\r\nhttp://rtp.trimet.org?submit&fromPlace=PDX::45.589850,-122.599266&toPlace=Zoo::45.509750,-122.714645&date=03/18/2012\r\n\r\nBoth Sundays run the same two service keys, so both should theoretically return the same results. Dave says there’s special logic for days where DST changes take effect…\r\n","title":"daylight savings time","updated_at":"2012-03-12T20:38:29Z","url":"https://api.github.com/repos/openplans/OpenTripPlanner/issues/634","id":3618656,"assignee":{"avatar_url":"https://secure.gravatar.com/avatar/7af0a4685e93e44ffcd2935fa31ff1c4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7af0a4685e93e44ffcd2935fa31ff1c4","url":"https://api.github.com/users/novalis","id":77003,"login":"novalis"},"milestone":{"number":9,"created_at":"2012-03-01T19:34:21Z","due_on":"2012-06-07T07:00:00Z","title":"0.6","creator":{"avatar_url":"https://secure.gravatar.com/avatar/aa89cac4eb961da882e29b31fac16ab9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"aa89cac4eb961da882e29b31fac16ab9","url":"https://api.github.com/users/andrewbyrd","id":112871,"login":"andrewbyrd"},"url":"https://api.github.com/repos/openplans/OpenTripPlanner/milestones/9","open_issues":20,"closed_issues":2,"description":"","state":"open"},"closed_at":null,"html_url":"https://github.com/openplans/OpenTripPlanner/issues/634","user":{"avatar_url":"https://secure.gravatar.com/avatar/f2cb743ef538d018cf8e45a64972719c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"f2cb743ef538d018cf8e45a64972719c","url":"https://api.github.com/users/fpurcell","id":64323,"login":"fpurcell"},"labels":[{"name":"bug","url":"https://api.github.com/repos/openplans/OpenTripPlanner/labels/bug","color":"e10c02"},{"name":"routing","url":"https://api.github.com/repos/openplans/OpenTripPlanner/labels/routing","color":"444444"}],"state":"open"}},"id":"1529213225"},{"repo":{"url":"https://api.github.com/repos/golovko/Fixed-Header-Table","id":1567277,"name":"golovko/Fixed-Header-Table"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:29Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/aiyah","gravatar_id":"9439e5f6e07cf8f1b31a9c34c144cef0","id":1530446,"login":"aiyah"},"payload":{"comment":{"created_at":"2012-03-12T20:38:28Z","body":"Did you try adding single quotes around the width?\r\n\r\n$(this).fixedHeaderTable ({\r\n\t\theight: '180',\r\n\t\twidth: '' + tbodyW + '',\r\n\t\tautoShow: true\r\n});\r\n","updated_at":"2012-03-12T20:38:28Z","url":"https://api.github.com/repos/golovko/Fixed-Header-Table/issues/comments/4461138","id":4461138,"user":{"avatar_url":"https://secure.gravatar.com/avatar/9439e5f6e07cf8f1b31a9c34c144cef0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"9439e5f6e07cf8f1b31a9c34c144cef0","url":"https://api.github.com/users/aiyah","id":1530446,"login":"aiyah"}},"action":"created","issue":{"number":35,"created_at":"2012-02-06T06:17:35Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"Sorry about the non-specific title, but my main problem is that I cannot get your code to work. At all.\r\n\r\nThat may or may not be due to this JS Error:\r\n\r\n\"settings.width.search is not a function in .../jquery.fixedheadertable.js ... line: 83\"\r\n\r\nBut that error aside, I would *strongly* suggest to add a basic but complete example to your documentation that serves as a starting point and a fallback for people like me who cannot get your code to work. At all.\r\n\r\nAs it is your documentation sends a terrible message: \"If you cannot get this to work, you're unworthy to use it anyway\"","title":"Error","updated_at":"2012-03-12T20:38:28Z","url":"https://api.github.com/repos/golovko/Fixed-Header-Table/issues/35","id":3104286,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/4aa80d1a2178e48f3a51bba9fc0f5335?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"4aa80d1a2178e48f3a51bba9fc0f5335","url":"https://api.github.com/users/pecoes","id":1411526,"login":"pecoes"},"html_url":"https://github.com/golovko/Fixed-Header-Table/issues/35","labels":[],"state":"open"}},"id":"1529213218"},{"repo":{"url":"https://api.github.com/repos/benoitc/gunicorn","id":390510,"name":"benoitc/gunicorn"},"type":"ForkEvent","created_at":"2012-03-12T20:38:28Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/easel","gravatar_id":"aacf0375285db03e17360ff38f70444e","id":94159,"login":"easel"},"payload":{"forkee":{"name":"gunicorn","master_branch":null,"size":1966,"created_at":"2012-03-12T20:38:27Z","has_wiki":false,"public":true,"clone_url":"https://github.com/easel/gunicorn.git","private":false,"updated_at":"2012-03-12T20:38:27Z","watchers":1,"ssh_url":"git@github.com:easel/gunicorn.git","git_url":"git://github.com/easel/gunicorn.git","language":"Python","fork":true,"url":"https://api.github.com/repos/easel/gunicorn","id":3699713,"pushed_at":"2012-03-04T08:01:40Z","svn_url":"https://github.com/easel/gunicorn","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://www.gunicorn.org","has_issues":false,"forks":0,"description":"gunicorn 'Green Unicorn' is a WSGI HTTP Server for UNIX, fast clients and sleepy applications.","html_url":"https://github.com/easel/gunicorn","owner":{"avatar_url":"https://secure.gravatar.com/avatar/aacf0375285db03e17360ff38f70444e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"aacf0375285db03e17360ff38f70444e","url":"https://api.github.com/users/easel","id":94159,"login":"easel"}}},"id":"1529213207"},{"repo":{"url":"https://api.github.com/repos/malyanov/Diplom-iOS","id":3699688,"name":"malyanov/Diplom-iOS"},"type":"CreateEvent","created_at":"2012-03-12T20:38:28Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/malyanov","gravatar_id":"bde93597c5161569067d37d6a3e8d86a","id":1505810,"login":"malyanov"},"payload":{"master_branch":"master","ref_type":"branch","ref":"master","description":"iOS версия дипломной работы"},"id":"1529213206"},{"repo":{"url":"https://api.github.com/repos/mercadolibre/chico","id":1049015,"name":"mercadolibre/chico"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"05db479a42bbbcc38083e6c3cce42f6a","id":245516,"login":"mercadolibre"},"public":true,"actor":{"url":"https://api.github.com/users/pazguille","gravatar_id":"f8a70e01eddbadc5e4f9876ff34494fa","id":250856,"login":"pazguille"},"payload":{"head":"86d47256dd56868fb3d2a12493fb470d3f334784","size":1,"push_id":66899461,"commits":[{"sha":"86d47256dd56868fb3d2a12493fb470d3f334784","author":{"name":"pazguille","email":"guille87paz@gmail.com"},"url":"https://api.github.com/repos/mercadolibre/chico/commits/86d47256dd56868fb3d2a12493fb470d3f334784","distinct":true,"message":"Updated version to 0.10.3 in core.js"}],"ref":"refs/heads/master"},"id":"1529213200"},{"repo":{"url":"https://api.github.com/repos/mozilla-services/qdo","id":3220282,"name":"mozilla-services/qdo"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"a41a81f9188770933a4b54382c29cae4","id":1066228,"login":"mozilla-services"},"public":true,"actor":{"url":"https://api.github.com/users/hannosch","gravatar_id":"442ad68d70ba0e030f167c6aca346975","id":483109,"login":"hannosch"},"payload":{"head":"e37d5c5518e6046a81d8a9f7519d9e997fb31646","size":1,"push_id":66899462,"ref":"refs/heads/master","commits":[{"sha":"e37d5c5518e6046a81d8a9f7519d9e997fb31646","author":{"name":"Hanno Schlichting","email":"hanno@hannosch.eu"},"url":"https://api.github.com/repos/mozilla-services/qdo/commits/e37d5c5518e6046a81d8a9f7519d9e997fb31646","distinct":true,"message":"document all the local ports being used"}]},"id":"1529213198"},{"repo":{"url":"https://api.github.com/repos/jjedele/dempster_shafer_cpp","id":3614810,"name":"jjedele/dempster_shafer_cpp"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/Uhlo","gravatar_id":"3c526d854268f8bd9fa7874f2031c70f","id":1499252,"login":"Uhlo"},"payload":{"head":"a0dd3006465ac2c1dcab6f607a3cc61dcce0e58b","size":2,"push_id":66899460,"commits":[{"sha":"47bac3fbe0398915176467a3d33915f3b0ea34f9","author":{"name":"Thilo Michael","email":"uhlomuhlo@gmail.com"},"url":"https://api.github.com/repos/jjedele/dempster_shafer_cpp/commits/47bac3fbe0398915176467a3d33915f3b0ea34f9","distinct":true,"message":"test_csvreader is now a real unit test"},{"sha":"a0dd3006465ac2c1dcab6f607a3cc61dcce0e58b","author":{"name":"Thilo Michael","email":"uhlomuhlo@gmail.com"},"url":"https://api.github.com/repos/jjedele/dempster_shafer_cpp/commits/a0dd3006465ac2c1dcab6f607a3cc61dcce0e58b","distinct":true,"message":"Removed bug in csv reader"}],"ref":"refs/heads/master"},"id":"1529213196"},{"repo":{"url":"https://api.github.com/repos/mtnwestruby/mtnwestruby.github.com","id":3262043,"name":"mtnwestruby/mtnwestruby.github.com"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"bace9d4b37fa3a69fa23b19f0765f089","id":1377809,"login":"mtnwestruby"},"public":true,"actor":{"url":"https://api.github.com/users/blowmage","gravatar_id":"cd8da976054ea4915eafc5d9dd096d38","id":730,"login":"blowmage"},"payload":{"head":"14f2e2c8269e1352e04e5574a27a5110115d7c6b","size":1,"push_id":66899458,"ref":"refs/heads/master","commits":[{"sha":"14f2e2c8269e1352e04e5574a27a5110115d7c6b","author":{"name":"Mike Moore","email":"mike@blowmage.com"},"url":"https://api.github.com/repos/mtnwestruby/mtnwestruby.github.com/commits/14f2e2c8269e1352e04e5574a27a5110115d7c6b","distinct":true,"message":"Move Jamis' session"}]},"id":"1529213192"},{"repo":{"url":"https://api.github.com/repos/cfengine/core","id":3543548,"name":"cfengine/core"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"c297053642cc180a967666f8b141d5c5","id":1239823,"login":"cfengine"},"public":true,"actor":{"url":"https://api.github.com/users/estenberg","gravatar_id":"d345a9e74741d97c74498555a881d3cf","id":1392139,"login":"estenberg"},"payload":{"head":"b1950b9bc480a955425d31cc5638c82b987d27a9","size":2,"push_id":66899453,"commits":[{"sha":"cc0518ac5a22ff0770668ff30dde53bbba952537","author":{"name":"Eystein Måløy Stenberg","email":"eystein@cfengine.com"},"url":"https://api.github.com/repos/cfengine/core/commits/cc0518ac5a22ff0770668ff30dde53bbba952537","distinct":true,"message":"spellfix"},{"sha":"b1950b9bc480a955425d31cc5638c82b987d27a9","author":{"name":"Eystein Måløy Stenberg","email":"eystein@cfengine.com"},"url":"https://api.github.com/repos/cfengine/core/commits/b1950b9bc480a955425d31cc5638c82b987d27a9","distinct":true,"message":"Merge remote branch 'upstream/master'"}],"ref":"refs/heads/master"},"id":"1529213182"},{"repo":{"url":"https://api.github.com/repos/sourcefabric/Airtime","id":664335,"name":"sourcefabric/Airtime"},"type":"PushEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/sourcefabric","gravatar_id":"c966050539547a18a9c9e898e863c70b","id":275305,"login":"sourcefabric"},"payload":{"head":"d54a501bc9bf97fc0f25cb5d2d288b1a84e8b387","size":1,"push_id":66899449,"ref":"refs/heads/on-the-fly-live-stream","commits":[{"sha":"d54a501bc9bf97fc0f25cb5d2d288b1a84e8b387","author":{"name":"James","email":"james@sourcefabric-DX4840.(none)"},"url":"https://api.github.com/repos/sourcefabric/Airtime/commits/d54a501bc9bf97fc0f25cb5d2d288b1a84e8b387","distinct":true,"message":"CC-3415: Live Stream: Disconnect all input.harbor connections before\n terminating the process\n\n- call prepare termiate on monit-restart()"}]},"id":"1529213177"},{"repo":{"url":"https://api.github.com/repos/OpenSensation/android","id":3617744,"name":"OpenSensation/android"},"type":"ForkEvent","created_at":"2012-03-12T20:38:26Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"bed73b4ab0c10dcf599bb316df24fbc1","id":1497168,"login":"OpenSensation"},"public":true,"actor":{"url":"https://api.github.com/users/gbzbar","gravatar_id":"ee6ea4d5bc0e4093977ed4ac07b3a12b","id":1490754,"login":"gbzbar"},"payload":{"forkee":{"name":"android","master_branch":"ics","size":156,"created_at":"2012-03-12T20:38:23Z","has_wiki":false,"public":true,"clone_url":"https://github.com/gbzbar/android.git","private":false,"updated_at":"2012-03-12T20:38:23Z","watchers":1,"language":"Python","ssh_url":"git@github.com:gbzbar/android.git","git_url":"git://github.com/gbzbar/android.git","fork":true,"url":"https://api.github.com/repos/gbzbar/android","id":3699712,"pushed_at":"2012-03-12T19:13:50Z","svn_url":"https://github.com/gbzbar/android","open_issues":0,"has_downloads":false,"mirror_url":null,"homepage":"","has_issues":false,"forks":0,"description":"Misc Android stuff","html_url":"https://github.com/gbzbar/android","owner":{"avatar_url":"https://secure.gravatar.com/avatar/ee6ea4d5bc0e4093977ed4ac07b3a12b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ee6ea4d5bc0e4093977ed4ac07b3a12b","url":"https://api.github.com/users/gbzbar","id":1490754,"login":"gbzbar"}}},"id":"1529213168"},{"repo":{"url":"https://api.github.com/repos/slipcor/pvparena","id":2535162,"name":"slipcor/pvparena"},"type":"PushEvent","created_at":"2012-03-12T20:38:25Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/slipcor","gravatar_id":"824e741b78231dfb17a44a2b7e2e2dbd","id":970122,"login":"slipcor"},"payload":{"head":"889d21460ce455f7f5b3c3271e8fd230a92cb27e","size":1,"push_id":66899442,"commits":[{"sha":"889d21460ce455f7f5b3c3271e8fd230a92cb27e","author":{"name":"Chris Fehling","email":"chris@slipcor.de"},"url":"https://api.github.com/repos/slipcor/pvparena/commits/889d21460ce455f7f5b3c3271e8fd230a92cb27e","distinct":true,"message":"v0.6.29.5 - added config setting protection.restore: stop block restoring"}],"ref":"refs/heads/master"},"id":"1529213165"},{"repo":{"url":"https://api.github.com/repos/haiku/haiku","id":1904156,"name":"haiku/haiku"},"type":"PushEvent","created_at":"2012-03-12T20:38:25Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"f3ce66e8655e7b558157af80acc1f414","id":857793,"login":"haiku"},"public":true,"actor":{"url":"https://api.github.com/users/haiku-mirror","gravatar_id":"40cf99736a847735a029c6249f010417","id":500736,"login":"haiku-mirror"},"payload":{"head":"991c18ad368246db55f8327bb8fc82c6537da70c","size":1,"push_id":66899444,"commits":[{"sha":"991c18ad368246db55f8327bb8fc82c6537da70c","author":{"name":"Jérôme Duval","email":"jerome.duval@gmail.com"},"url":"https://api.github.com/repos/haiku/haiku/commits/991c18ad368246db55f8327bb8fc82c6537da70c","distinct":true,"message":"ffmpeg: added libs packages as dependencies.\n\n* updated ffmpeg to enable previously enabled decoders/encoders\n based on libogg, libspeex, libtheora, libvorbis.\n* removed sources for these libs."}],"ref":"refs/heads/master"},"id":"1529213167"},{"repo":{"url":"https://api.github.com/repos/andymckay/zamboni","id":1023152,"name":"andymckay/zamboni"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:38:23Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/cvan","gravatar_id":"2afd33fb37a335686987ebf1f762cafc","id":203725,"login":"cvan"},"payload":{"comment":{"position":13,"created_at":"2012-03-12T20:38:23Z","body":"nice","line":148,"commit_id":"6e094a85965f474038c7ebaab35ca25cdf65d81d","updated_at":"2012-03-12T20:38:23Z","url":"https://api.github.com/repos/andymckay/zamboni/comments/1074742","id":1074742,"path":"apps/addons/views.py","user":{"avatar_url":"https://secure.gravatar.com/avatar/2afd33fb37a335686987ebf1f762cafc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"2afd33fb37a335686987ebf1f762cafc","url":"https://api.github.com/users/cvan","id":203725,"login":"cvan"},"html_url":"https://github.com/andymckay/zamboni/commit/6e094a8596#commitcomment-1074742"}},"id":"1529213166"},{"repo":{"url":"https://api.github.com/repos/jboreiko/brainStormProject","id":3547863,"name":"jboreiko/brainStormProject"},"type":"WatchEvent","created_at":"2012-03-12T20:38:25Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/samwilcoxon","gravatar_id":"9abc417721627dce4b865ab55739dc5c","id":1283477,"login":"samwilcoxon"},"payload":{"action":"started"},"id":"1529213164"},{"repo":{"url":"https://api.github.com/repos/debrouxl/gcc4ti","id":1414467,"name":"debrouxl/gcc4ti"},"type":"CreateEvent","created_at":"2012-03-12T20:38:23Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/debrouxl","gravatar_id":"990368e8c04f1935cc20c8c53c21d830","id":8375,"login":"debrouxl"},"payload":{"master_branch":"next","ref":"experimental","description":"GCC4TI is a complete and mature GPL SDK for the TI-89, TI-89T, TI-92+ and TI-V200 (collectively known as TI-68k) calculators in the C and ASM languages.","ref_type":"branch"},"id":"1529213162"},{"repo":{"url":"https://api.github.com/repos/clevur-tom/base-maint","id":3699432,"name":"clevur-tom/base-maint"},"type":"PushEvent","created_at":"2012-03-12T20:38:23Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/clevur-tom","gravatar_id":"a188e2b3f6e713e5dccb6e647ddb0884","id":114055,"login":"clevur-tom"},"payload":{"head":"600300e1b21aa4563a69e579c0236ab324a36587","size":1,"push_id":66899437,"commits":[{"sha":"600300e1b21aa4563a69e579c0236ab324a36587","author":{"name":"Tom Butkiewicz","email":"tom@clevur.com"},"url":"https://api.github.com/repos/clevur-tom/base-maint/commits/600300e1b21aa4563a69e579c0236ab324a36587","distinct":true,"message":"added initial maintenance page"}],"ref":"refs/heads/master"},"id":"1529213156"},{"repo":{"url":"https://api.github.com/repos/gruppler/Pathfinder","id":1512198,"name":"gruppler/Pathfinder"},"type":"PushEvent","created_at":"2012-03-12T20:38:23Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/gruppler","gravatar_id":"e417b4324bf819995384e57fce38c72c","id":301190,"login":"gruppler"},"payload":{"head":"9805a2fc74e957a25c8e121f3145a7f36473f9fc","size":6,"push_id":66899436,"commits":[{"sha":"6a9b58aeeb18e417f33a0e25b4b40ce6259612ee","author":{"name":"Craig Laparo","email":"gruppler@gmail.com"},"url":"https://api.github.com/repos/gruppler/Pathfinder/commits/6a9b58aeeb18e417f33a0e25b4b40ce6259612ee","distinct":true,"message":"Improved performance of updating all views"},{"sha":"47957bb71629fd34ea4f752e20af8a890182ffec","author":{"name":"Craig Laparo","email":"gruppler@gmail.com"},"url":"https://api.github.com/repos/gruppler/Pathfinder/commits/47957bb71629fd34ea4f752e20af8a890182ffec","distinct":true,"message":"Copy/Paste/PasteAll Styles buttons"},{"sha":"c213ae8a8028d77a8cc1d8d3294c2b58b5414d9e","author":{"name":"Craig Laparo","email":"gruppler@gmail.com"},"url":"https://api.github.com/repos/gruppler/Pathfinder/commits/c213ae8a8028d77a8cc1d8d3294c2b58b5414d9e","distinct":true,"message":" Copy/Paste/PasteAll Filters buttons"},{"sha":"eba68f1c36b5385b88cf887cfd3cd526d5112dd5","author":{"name":"Craig Laparo","email":"gruppler@gmail.com"},"url":"https://api.github.com/repos/gruppler/Pathfinder/commits/eba68f1c36b5385b88cf887cfd3cd526d5112dd5","distinct":true,"message":"Redraw after PasteAllFilters\nCenter view on open if canvas is not inside viewport"},{"sha":"c60fabbcaa25ec26d9d3b2e77489130e89c2f657","author":{"name":"Craig Laparo","email":"gruppler@gmail.com"},"url":"https://api.github.com/repos/gruppler/Pathfinder/commits/c60fabbcaa25ec26d9d3b2e77489130e89c2f657","distinct":true,"message":"Don't auto-center out-of-bounds view during dragging"},{"sha":"9805a2fc74e957a25c8e121f3145a7f36473f9fc","author":{"name":"Craig Laparo","email":"gruppler@gmail.com"},"url":"https://api.github.com/repos/gruppler/Pathfinder/commits/9805a2fc74e957a25c8e121f3145a7f36473f9fc","distinct":true,"message":"But fix\nFailed to update pf.project.v after deleting a view"}],"ref":"refs/heads/development"},"id":"1529213154"},{"repo":{"url":"https://api.github.com/repos/stamen/paperwalking","id":2704905,"name":"stamen/paperwalking"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:22Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/nvkelso","gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","id":853051,"login":"nvkelso"},"payload":{"action":"opened","issue":{"number":19,"created_at":"2012-03-12T20:38:21Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"From Eric: \r\n\r\nwhen you move the map, the atlas should move with it\r\n\r\nwhen you scale the map, the atlas should scale with it\r\n\r\nyou should be able to move and scale the atlas independent of the map, but not the inverse\r\n\r\nwhen you add or remove a page, the scale and the position of the map should stay the same\r\n\r\nyou shouldn't be able to drag the atlas off the screen; if you wind up with the atlas off the screen there could be a 'restore' button that takes you to a screen where the map is in the center","title":"the atlas layer should move and scale with the map layer","updated_at":"2012-03-12T20:38:21Z","url":"https://api.github.com/repos/stamen/paperwalking/issues/19","id":3618653,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/e679fead4b7cb50b7b60e7c4f99bc348?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e679fead4b7cb50b7b60e7c4f99bc348","url":"https://api.github.com/users/nvkelso","id":853051,"login":"nvkelso"},"html_url":"https://github.com/stamen/paperwalking/issues/19","labels":[{"name":"design","url":"https://api.github.com/repos/stamen/paperwalking/labels/design","color":"009900"}],"state":"open"}},"id":"1529213152"},{"repo":{"url":"https://api.github.com/repos/pvljanda/Piskvorks","id":3688521,"name":"pvljanda/Piskvorks"},"type":"PushEvent","created_at":"2012-03-12T20:38:21Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/pvljanda","gravatar_id":"9456112f7e0a913c51fa07fbe8bf911f","id":1488874,"login":"pvljanda"},"payload":{"head":"9b77c092acc5119d1a9e37ca74290828a69126b5","size":1,"push_id":66899432,"ref":"refs/heads/master","commits":[{"sha":"9b77c092acc5119d1a9e37ca74290828a69126b5","author":{"name":"Pavel Janda","email":"pvljanda@gmail.com"},"url":"https://api.github.com/repos/pvljanda/Piskvorks/commits/9b77c092acc5119d1a9e37ca74290828a69126b5","distinct":true,"message":"readme update"}]},"id":"1529213148"},{"repo":{"url":"https://api.github.com/repos/greenboxal/Cronus-Emulator","id":3562213,"name":"greenboxal/Cronus-Emulator"},"type":"PushEvent","created_at":"2012-03-12T20:38:20Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/greenboxal","gravatar_id":"cc8568508e88b6c11fecbbeec657fe1c","id":1245785,"login":"greenboxal"},"payload":{"head":"25b4d9cb5b0a56783b0e41d0325464cd6319b9af","size":1,"push_id":66899430,"commits":[{"sha":"25b4d9cb5b0a56783b0e41d0325464cd6319b9af","author":{"name":"Jonathan Lima","email":"jonathan_2097@hotmail.com"},"url":"https://api.github.com/repos/greenboxal/Cronus-Emulator/commits/25b4d9cb5b0a56783b0e41d0325464cd6319b9af","distinct":true,"message":"Adicionado suporte a storagepassword."}],"ref":"refs/heads/master"},"id":"1529213147"},{"repo":{"url":"https://api.github.com/repos/cts2/cts2-specification","id":2622908,"name":"cts2/cts2-specification"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:20Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/cts2","gravatar_id":"b2161e93c903c97920a56f3e5d96ef3f","id":1084549,"login":"cts2"},"payload":{"comment":{"created_at":"2012-03-12T20:38:20Z","body":"### Reason For Change\r\nTypographical error in specification documentation.\r\n\r\n### Severity: Support Text\r\n\r\n### Proposed Resolution (PIM)\r\nUpdate PIM text\r\n\r\n### Proposed Resolution (PSM)\r\nNA\r\n\r\n#### Change Location: Statement Information Model, Page 3.\r\n\r\n#### Description\r\nChange text:\r\n\r\n```\r\nsubject - ahe subject\r\n```\r\nto:\r\n```\r\nsubject - the subject\r\n```\r\n\r\n\r\n","updated_at":"2012-03-12T20:38:20Z","url":"https://api.github.com/repos/cts2/cts2-specification/issues/comments/4461134","id":4461134,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b2161e93c903c97920a56f3e5d96ef3f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b2161e93c903c97920a56f3e5d96ef3f","url":"https://api.github.com/users/cts2","id":1084549,"login":"cts2"}},"action":"created","issue":{"number":35,"created_at":"2012-01-31T19:39:56Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"subject - ahe subject\r\n ____","title":"Typo on page 3 of Statement Information model","updated_at":"2012-03-12T20:38:20Z","url":"https://api.github.com/repos/cts2/cts2-specification/issues/35","id":3041288,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/5ab595023899b7e9894625dae846bd29?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5ab595023899b7e9894625dae846bd29","url":"https://api.github.com/users/hsolbrig","id":415926,"login":"hsolbrig"},"html_url":"https://github.com/cts2/cts2-specification/issues/35","labels":[{"name":"Resolved Pending Vote","url":"https://api.github.com/repos/cts2/cts2-specification/labels/Resolved+Pending+Vote","color":"d7e102"},{"name":"Severity:Support Text","url":"https://api.github.com/repos/cts2/cts2-specification/labels/Severity%3ASupport+Text","color":"e102d8"}],"state":"open"}},"id":"1529213142"},{"repo":{"url":"https://api.github.com/repos/andymckay/zamboni","id":1023152,"name":"andymckay/zamboni"},"type":"CommitCommentEvent","created_at":"2012-03-12T20:38:18Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/cvan","gravatar_id":"2afd33fb37a335686987ebf1f762cafc","id":203725,"login":"cvan"},"payload":{"comment":{"position":13,"created_at":"2012-03-12T20:38:18Z","body":"nice","line":148,"commit_id":"6e094a85965f474038c7ebaab35ca25cdf65d81d","updated_at":"2012-03-12T20:38:18Z","url":"https://api.github.com/repos/andymckay/zamboni/comments/1074741","id":1074741,"path":"apps/addons/views.py","user":{"avatar_url":"https://secure.gravatar.com/avatar/2afd33fb37a335686987ebf1f762cafc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"2afd33fb37a335686987ebf1f762cafc","url":"https://api.github.com/users/cvan","id":203725,"login":"cvan"},"html_url":"https://github.com/andymckay/zamboni/commit/6e094a8596#commitcomment-1074741"}},"id":"1529213138"},{"repo":{"url":"https://api.github.com/repos/dapage/McKendree","id":3699711,"name":"dapage/McKendree"},"type":"CreateEvent","created_at":"2012-03-12T20:38:19Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/dapage","gravatar_id":"a3f0c5457f84f6461e4242f276a813fa","id":1442141,"login":"dapage"},"payload":{"master_branch":"master","ref_type":"repository","description":"","ref":null},"id":"1529213140"},{"repo":{"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service","id":2295691,"name":"usm-data-analysis/BOS-Reader-Service"},"type":"PushEvent","created_at":"2012-03-12T20:38:18Z","org":{"url":"https://api.github.com/orgs/","gravatar_id":"8c1adbb295be2b7ab98ed35d4ee545a0","id":255079,"login":"usm-data-analysis"},"public":true,"actor":{"url":"https://api.github.com/users/smancill","gravatar_id":"1c9e0c425cc0f926595c9158cef8aaf1","id":238528,"login":"smancill"},"payload":{"head":"7e339d4f612a83a96056baa07803b8967b3e880d","size":5,"push_id":66899427,"commits":[{"sha":"fc1fe4dec7824edc1142cfa5abb5603be3700bd5","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/fc1fe4dec7824edc1142cfa5abb5603be3700bd5","distinct":true,"message":"Add debug messages to service"},{"sha":"4d5d935a7681f29023b23fd0a20b67a9966a926b","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/4d5d935a7681f29023b23fd0a20b67a9966a926b","distinct":true,"message":"Get length of serialized EVIO"},{"sha":"a0a2bd90517e81f99b06f470d32779726c4d39c7","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/a0a2bd90517e81f99b06f470d32779726c4d39c7","distinct":true,"message":"Fix compilation of service"},{"sha":"2bca8c15f892cb04f7d77d5ec50d0d0f59bae695","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/2bca8c15f892cb04f7d77d5ec50d0d0f59bae695","distinct":true,"message":"Update test to print the EVIO event"},{"sha":"7e339d4f612a83a96056baa07803b8967b3e880d","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/7e339d4f612a83a96056baa07803b8967b3e880d","distinct":true,"message":"Update README"}],"ref":"refs/heads/master"},"id":"1529213136"},{"repo":{"url":"https://api.github.com/repos/gwaldron/osgearth","id":901277,"name":"gwaldron/osgearth"},"type":"PushEvent","created_at":"2012-03-12T20:38:17Z","org":{"url":"https://api.github.com/orgs/"},"public":true,"actor":{"url":"https://api.github.com/users/gwaldron","gravatar_id":"900f7734c487a1953463f6022528af31","id":326618,"login":"gwaldron"},"payload":{"head":"b649c6f4906f6d743f19b48510ae542e7f20b547","size":2,"push_id":66899421,"ref":"refs/heads/master","commits":[{"sha":"9fe7e350e2f4e38d8dcc037c606d3dc3817ecefc","author":{"name":"Glenn W","email":"gwaldron@gmail.com"},"url":"https://api.github.com/repos/gwaldron/osgearth/commits/9fe7e350e2f4e38d8dcc037c606d3dc3817ecefc","distinct":true,"message":"Units: set default units during parse if none are present"},{"sha":"b649c6f4906f6d743f19b48510ae542e7f20b547","author":{"name":"Glenn W","email":"gwaldron@gmail.com"},"url":"https://api.github.com/repos/gwaldron/osgearth/commits/b649c6f4906f6d743f19b48510ae542e7f20b547","distinct":true,"message":"Annotation: tweaked serialization and did a successful test"}]},"id":"1529213126"}] - -GET /events?page=9 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4779'), ('content-length', '40962'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"2d281d5ca56597677ded2c9807a4dcff"'), ('date', 'Mon, 12 Mar 2012 20:40:43 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/dapage","gravatar_id":"a3f0c5457f84f6461e4242f276a813fa","id":1442141,"login":"dapage"},"type":"CreateEvent","created_at":"2012-03-12T20:38:19Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"repository","description":"","ref":null},"repo":{"url":"https://api.github.com/repos/dapage/McKendree","id":3699711,"name":"dapage/McKendree"},"id":"1529213140"},{"actor":{"url":"https://api.github.com/users/smancill","gravatar_id":"1c9e0c425cc0f926595c9158cef8aaf1","id":238528,"login":"smancill"},"type":"PushEvent","created_at":"2012-03-12T20:38:18Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"8c1adbb295be2b7ab98ed35d4ee545a0","id":255079,"login":"usm-data-analysis"},"payload":{"head":"7e339d4f612a83a96056baa07803b8967b3e880d","size":5,"push_id":66899427,"commits":[{"sha":"fc1fe4dec7824edc1142cfa5abb5603be3700bd5","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/fc1fe4dec7824edc1142cfa5abb5603be3700bd5","distinct":true,"message":"Add debug messages to service"},{"sha":"4d5d935a7681f29023b23fd0a20b67a9966a926b","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/4d5d935a7681f29023b23fd0a20b67a9966a926b","distinct":true,"message":"Get length of serialized EVIO"},{"sha":"a0a2bd90517e81f99b06f470d32779726c4d39c7","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/a0a2bd90517e81f99b06f470d32779726c4d39c7","distinct":true,"message":"Fix compilation of service"},{"sha":"2bca8c15f892cb04f7d77d5ec50d0d0f59bae695","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/2bca8c15f892cb04f7d77d5ec50d0d0f59bae695","distinct":true,"message":"Update test to print the EVIO event"},{"sha":"7e339d4f612a83a96056baa07803b8967b3e880d","author":{"name":"smancill","email":"smancill@alumnos.inf.utfsm.cl"},"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service/commits/7e339d4f612a83a96056baa07803b8967b3e880d","distinct":true,"message":"Update README"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/usm-data-analysis/BOS-Reader-Service","id":2295691,"name":"usm-data-analysis/BOS-Reader-Service"},"id":"1529213136"},{"actor":{"url":"https://api.github.com/users/gwaldron","gravatar_id":"900f7734c487a1953463f6022528af31","id":326618,"login":"gwaldron"},"type":"PushEvent","created_at":"2012-03-12T20:38:17Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"b649c6f4906f6d743f19b48510ae542e7f20b547","size":2,"push_id":66899421,"ref":"refs/heads/master","commits":[{"sha":"9fe7e350e2f4e38d8dcc037c606d3dc3817ecefc","author":{"name":"Glenn W","email":"gwaldron@gmail.com"},"url":"https://api.github.com/repos/gwaldron/osgearth/commits/9fe7e350e2f4e38d8dcc037c606d3dc3817ecefc","distinct":true,"message":"Units: set default units during parse if none are present"},{"sha":"b649c6f4906f6d743f19b48510ae542e7f20b547","author":{"name":"Glenn W","email":"gwaldron@gmail.com"},"url":"https://api.github.com/repos/gwaldron/osgearth/commits/b649c6f4906f6d743f19b48510ae542e7f20b547","distinct":true,"message":"Annotation: tweaked serialization and did a successful test"}]},"repo":{"url":"https://api.github.com/repos/gwaldron/osgearth","id":901277,"name":"gwaldron/osgearth"},"id":"1529213126"},{"actor":{"url":"https://api.github.com/users/druwynings","gravatar_id":"1b2217786c2235ea45eed87f31007ccd","id":536577,"login":"druwynings"},"type":"FollowEvent","created_at":"2012-03-12T20:38:16Z","public":0,"org":{"url":"https://api.github.com/orgs/"},"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/a6a3cdc4f1cddc5dfdb377a54beeabdb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Santosh Kumar","company":"Rabbit Inc.","gravatar_id":"a6a3cdc4f1cddc5dfdb377a54beeabdb","location":"Berkeley, CA","created_at":"2009-10-07T18:59:18Z","public_repos":13,"blog":"http://santosh-log.heroku.com","followers":6,"public_gists":65,"url":"https://api.github.com/users/santosh79","id":136484,"hireable":false,"type":"User","bio":"NodeJS systems engineer at Rabbit, building something awesome.","html_url":"https://github.com/santosh79","login":"santosh79","email":"santosh79@gmail.com","following":2}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213121"},{"actor":{"url":"https://api.github.com/users/Gusabi","gravatar_id":"21f588b59e5b0a7d92be27f14405747a","id":1517057,"login":"Gusabi"},"type":"CreateEvent","created_at":"2012-03-12T20:38:16Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":""},"repo":{"url":"https://api.github.com/repos/Gusabi/DomoIY","id":3699710,"name":"Gusabi/DomoIY"},"id":"1529213118"},{"actor":{"url":"https://api.github.com/users/fat","gravatar_id":"a98244cbdacaf1c0b55499466002f7a8","id":169705,"login":"fat"},"type":"PushEvent","created_at":"2012-03-12T20:38:14Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"74e977ae0a10f06057a119eef30c6660","id":50278,"login":"twitter"},"payload":{"head":"56fe54df4385bfa186b82da443b14920ea2b16ee","size":1,"push_id":66899411,"ref":"refs/heads/2.0.2-wip","commits":[{"sha":"56fe54df4385bfa186b82da443b14920ea2b16ee","author":{"name":"Jacob Thornton","email":"jacobthornton@gmail.com"},"url":"https://api.github.com/repos/twitter/bootstrap/commits/56fe54df4385bfa186b82da443b14920ea2b16ee","distinct":true,"message":"remove collapse class on open so that dropdowns are viewable"}]},"repo":{"url":"https://api.github.com/repos/twitter/bootstrap","id":2126244,"name":"twitter/bootstrap"},"id":"1529213108"},{"actor":{"url":"https://api.github.com/users/intscorpio","gravatar_id":"81bf952542330a0af4dfa664df3647da","id":1176502,"login":"intscorpio"},"type":"PushEvent","created_at":"2012-03-12T20:38:15Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"78dc37b3c3b481383c6469a3c97101ced279f7f9","size":1,"push_id":66899416,"ref":"refs/heads/master","commits":[{"sha":"78dc37b3c3b481383c6469a3c97101ced279f7f9","author":{"name":"int_scorpio","email":"int_scorpio@mail.ru"},"url":"https://api.github.com/repos/intscorpio/yahookddcup2/commits/78dc37b3c3b481383c6469a3c97101ced279f7f9","distinct":true,"message":"Rewrited code for g_section optimizing of binsvd params"}]},"repo":{"url":"https://api.github.com/repos/intscorpio/yahookddcup2","id":2736687,"name":"intscorpio/yahookddcup2"},"id":"1529213113"},{"actor":{"url":"https://api.github.com/users/linkenneth","gravatar_id":"059381835e4e08dc0cc7cd2047059a49","id":1477555,"login":"linkenneth"},"type":"PushEvent","created_at":"2012-03-12T20:38:14Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"18df44c7817b5d65e8e7865642fcb27c0e64b081","size":1,"push_id":66899412,"ref":"refs/heads/master","commits":[{"sha":"18df44c7817b5d65e8e7865642fcb27c0e64b081","author":{"name":"Kenneth Lin","email":"kenlin@berkeley.edu"},"url":"https://api.github.com/repos/linkenneth/linkenneth.github.com/commits/18df44c7817b5d65e8e7865642fcb27c0e64b081","distinct":true,"message":"added rackspace go game"}]},"repo":{"url":"https://api.github.com/repos/linkenneth/linkenneth.github.com","id":3691141,"name":"linkenneth/linkenneth.github.com"},"id":"1529213109"},{"actor":{"url":"https://api.github.com/users/wordempire","gravatar_id":"0e85e6f78ba578dc30e756adfa061e1f","id":251382,"login":"wordempire"},"type":"CreateEvent","created_at":"2012-03-12T20:38:12Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"branch","description":"Answer to PE excercises ","ref":"master"},"repo":{"url":"https://api.github.com/repos/wordempire/ProjectEuler","id":3699701,"name":"wordempire/ProjectEuler"},"id":"1529213098"},{"actor":{"url":"https://api.github.com/users/julienchastang","gravatar_id":"ec3b4d2db3e6e33b498deb38592e862d","id":229955,"login":"julienchastang"},"type":"PushEvent","created_at":"2012-03-12T20:38:12Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"f0ddba26f2eb351c7f46434fb5b5f693","id":613345,"login":"Unidata"},"payload":{"head":"b50ccb0257e28fe84afcd1959a1a9a4eeff02903","size":2,"push_id":66899405,"commits":[{"sha":"78cac1a6cfc05687749935515ba57b7308169cf6","author":{"name":"Sean Arms","email":"sarms@unidata.ucar.edu"},"url":"https://api.github.com/repos/Unidata/IDV/commits/78cac1a6cfc05687749935515ba57b7308169cf6","distinct":true,"message":"First pass at adding ide project files to the IDV (specifically, IntelliJ files). Using directory-based IntelliJ project structure. Minor change to .gitignore to include the removal of user specific IntelliJ files in the ide/intellij/.idea directory."},{"sha":"b50ccb0257e28fe84afcd1959a1a9a4eeff02903","author":{"name":"Julien Chastang","email":"julien.c.chastang@gmail.com"},"url":"https://api.github.com/repos/Unidata/IDV/commits/b50ccb0257e28fe84afcd1959a1a9a4eeff02903","distinct":true,"message":"Merge pull request #1 from lesserwhirls/ide\n\nFirst pass at adding ide project files to the IDV (specifically, Intelli..."}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/Unidata/IDV","id":3565779,"name":"Unidata/IDV"},"id":"1529213093"},{"actor":{"url":"https://api.github.com/users/champness","gravatar_id":"52d29ecf22ff312d0cfc7771dba93ef6","id":90897,"login":"champness"},"type":"FollowEvent","created_at":"2012-03-12T20:38:12Z","public":0,"org":{"url":"https://api.github.com/orgs/"},"payload":{"target":{"name":"Timothy Perrett","avatar_url":"https://secure.gravatar.com/avatar/51fe8139c227985278ff8d316650dc2f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":"XMPie & Loop","gravatar_id":"51fe8139c227985278ff8d316650dc2f","location":"Bath, UK","created_at":"2008-02-19T21:46:22Z","blog":"blog.getintheloop.eu","public_repos":32,"followers":64,"public_gists":64,"url":"https://api.github.com/users/timperrett","id":458,"hireable":false,"type":"User","bio":"Technologist by day, Open Source Evangelist, Author and Lift / Akka committer by night; hailing from the marvelous westcountry of the British Isles.\r\n","html_url":"https://github.com/timperrett","login":"timperrett","following":16,"email":"timothy@getintheloop.eu"}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213090"},{"actor":{"url":"https://api.github.com/users/cdouglas","gravatar_id":"62a9c83f3fbc7a54323de9ce19af6a0e","id":145508,"login":"cdouglas"},"type":"PushEvent","created_at":"2012-03-12T20:38:11Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"6f40590077a58e4de8d09e85531c3a298e052fae","size":2,"push_id":66899403,"commits":[{"sha":"5ed1f6210103586044b54fad84e182714ebc1867","author":{"name":"michaelsmit","email":"github@mikesmit.com"},"url":"https://api.github.com/repos/omalley/hadoop-gpl-compression/commits/5ed1f6210103586044b54fad84e182714ebc1867","distinct":true,"message":"Removing \"-SNAPSHOT\" from version for hadoop-common dependency to resolve 404 error."},{"sha":"6f40590077a58e4de8d09e85531c3a298e052fae","author":{"name":"Chris Douglas","email":"cdouglas@apache.org"},"url":"https://api.github.com/repos/omalley/hadoop-gpl-compression/commits/6f40590077a58e4de8d09e85531c3a298e052fae","distinct":true,"message":"Merge pull request #2 from michaelsmit/master\n\nfix minor problem with the version string for hadoop-common"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/omalley/hadoop-gpl-compression","id":632858,"name":"omalley/hadoop-gpl-compression"},"id":"1529213087"},{"actor":{"url":"https://api.github.com/users/cdouglas","gravatar_id":"62a9c83f3fbc7a54323de9ce19af6a0e","id":145508,"login":"cdouglas"},"type":"PullRequestEvent","created_at":"2012-03-12T20:38:10Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"number":2,"pull_request":{"issue_url":"https://github.com/omalley/hadoop-gpl-compression/issues/2","head":{"label":"michaelsmit:master","repo":{"name":"hadoop-gpl-compression","master_branch":null,"size":112,"created_at":"2012-03-12T19:52:34Z","has_wiki":true,"clone_url":"https://github.com/michaelsmit/hadoop-gpl-compression.git","private":false,"updated_at":"2012-03-12T19:54:44Z","watchers":1,"language":"Shell","ssh_url":"git@github.com:michaelsmit/hadoop-gpl-compression.git","fork":true,"git_url":"git://github.com/michaelsmit/hadoop-gpl-compression.git","url":"https://api.github.com/repos/michaelsmit/hadoop-gpl-compression","id":3699223,"pushed_at":"2012-03-12T19:54:41Z","svn_url":"https://github.com/michaelsmit/hadoop-gpl-compression","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"This project is a set of plugins for Apache Hadoop that provide access to the GPL'ed compression codecs.","html_url":"https://github.com/michaelsmit/hadoop-gpl-compression","owner":{"avatar_url":"https://secure.gravatar.com/avatar/eac654b86527a0debe182b33c260105e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"eac654b86527a0debe182b33c260105e","url":"https://api.github.com/users/michaelsmit","id":1404371,"login":"michaelsmit"}},"sha":"5ed1f6210103586044b54fad84e182714ebc1867","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/eac654b86527a0debe182b33c260105e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"eac654b86527a0debe182b33c260105e","url":"https://api.github.com/users/michaelsmit","id":1404371,"login":"michaelsmit"}},"number":2,"created_at":"2012-03-12T20:00:53Z","merged_by":{"avatar_url":"https://secure.gravatar.com/avatar/62a9c83f3fbc7a54323de9ce19af6a0e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"62a9c83f3fbc7a54323de9ce19af6a0e","url":"https://api.github.com/users/cdouglas","id":145508,"login":"cdouglas"},"merged":true,"changed_files":1,"comments":0,"body":"The maven2 repository replaced 0.22.0-SNAPSHOT with 0.22.0.\r\n\r\n(current version string gives a 404 error)","title":"fix minor problem with the version string for hadoop-common","diff_url":"https://github.com/omalley/hadoop-gpl-compression/pull/2.diff","additions":1,"updated_at":"2012-03-12T20:38:10Z","_links":{"html":{"href":"https://github.com/omalley/hadoop-gpl-compression/pull/2"},"self":{"href":"https://api.github.com/repos/omalley/hadoop-gpl-compression/pulls/2"},"comments":{"href":"https://api.github.com/repos/omalley/hadoop-gpl-compression/issues/2/comments"},"review_comments":{"href":"https://api.github.com/repos/omalley/hadoop-gpl-compression/pulls/2/comments"}},"url":"https://api.github.com/repos/omalley/hadoop-gpl-compression/pulls/2","id":969713,"patch_url":"https://github.com/omalley/hadoop-gpl-compression/pull/2.patch","mergeable":null,"merged_at":"2012-03-12T20:38:10Z","closed_at":"2012-03-12T20:38:10Z","commits":1,"user":{"avatar_url":"https://secure.gravatar.com/avatar/eac654b86527a0debe182b33c260105e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"eac654b86527a0debe182b33c260105e","url":"https://api.github.com/users/michaelsmit","id":1404371,"login":"michaelsmit"},"review_comments":0,"html_url":"https://github.com/omalley/hadoop-gpl-compression/pull/2","deletions":1,"state":"closed","base":{"label":"omalley:master","repo":{"name":"hadoop-gpl-compression","master_branch":null,"size":11724,"created_at":"2010-04-28T06:33:39Z","has_wiki":true,"clone_url":"https://github.com/omalley/hadoop-gpl-compression.git","private":false,"updated_at":"2012-03-12T20:38:10Z","watchers":11,"language":"Shell","ssh_url":"git@github.com:omalley/hadoop-gpl-compression.git","fork":false,"git_url":"git://github.com/omalley/hadoop-gpl-compression.git","url":"https://api.github.com/repos/omalley/hadoop-gpl-compression","id":632858,"pushed_at":"2012-03-12T20:38:10Z","svn_url":"https://github.com/omalley/hadoop-gpl-compression","open_issues":1,"mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"forks":4,"description":"This project is a set of plugins for Apache Hadoop that provide access to the GPL'ed compression codecs.","html_url":"https://github.com/omalley/hadoop-gpl-compression","owner":{"avatar_url":"https://secure.gravatar.com/avatar/028a4e648dc71a05947bd17c595673c2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"028a4e648dc71a05947bd17c595673c2","url":"https://api.github.com/users/omalley","id":206536,"login":"omalley"}},"sha":"98e25f5669efa73576bfd6468c077d7aa77ddbae","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/028a4e648dc71a05947bd17c595673c2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"028a4e648dc71a05947bd17c595673c2","url":"https://api.github.com/users/omalley","id":206536,"login":"omalley"}}},"action":"closed"},"repo":{"url":"https://api.github.com/repos/omalley/hadoop-gpl-compression","id":632858,"name":"omalley/hadoop-gpl-compression"},"id":"1529213084"},{"actor":{"url":"https://api.github.com/users/50m30n3","gravatar_id":"e1237e5d5b47f6f92769dcc8007016f3","id":542581,"login":"50m30n3"},"type":"CreateEvent","created_at":"2012-03-12T20:38:10Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref":null,"description":"IP over audio tunnel","ref_type":"repository"},"repo":{"url":"https://api.github.com/repos/50m30n3/dsptunnel","id":3699709,"name":"50m30n3/dsptunnel"},"id":"1529213083"},{"actor":{"url":"https://api.github.com/users/julienchastang","gravatar_id":"ec3b4d2db3e6e33b498deb38592e862d","id":229955,"login":"julienchastang"},"type":"PullRequestEvent","created_at":"2012-03-12T20:38:10Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"f0ddba26f2eb351c7f46434fb5b5f693","id":613345,"login":"Unidata"},"payload":{"number":1,"pull_request":{"issue_url":"https://github.com/Unidata/IDV/issues/1","head":{"label":"lesserwhirls:ide","repo":{"name":"IDV","master_branch":null,"size":124,"created_at":"2012-03-07T14:02:19Z","has_wiki":true,"clone_url":"https://github.com/lesserwhirls/IDV.git","private":false,"updated_at":"2012-03-12T20:01:07Z","watchers":1,"language":"Java","ssh_url":"git@github.com:lesserwhirls/IDV.git","fork":true,"git_url":"git://github.com/lesserwhirls/IDV.git","url":"https://api.github.com/repos/lesserwhirls/IDV","id":3649551,"pushed_at":"2012-03-12T20:01:07Z","svn_url":"https://github.com/lesserwhirls/IDV","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"http://www.unidata.ucar.edu/software/idv/","has_issues":false,"forks":0,"description":"The Integrated Data Viewer (IDV) from Unidata is a framework for analyzing and displaying geoscience data. ","html_url":"https://github.com/lesserwhirls/IDV","owner":{"avatar_url":"https://secure.gravatar.com/avatar/90bcb156fd7c201065f82b5e534fd3e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"90bcb156fd7c201065f82b5e534fd3e1","url":"https://api.github.com/users/lesserwhirls","id":67096,"login":"lesserwhirls"}},"sha":"78cac1a6cfc05687749935515ba57b7308169cf6","ref":"ide","user":{"avatar_url":"https://secure.gravatar.com/avatar/90bcb156fd7c201065f82b5e534fd3e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"90bcb156fd7c201065f82b5e534fd3e1","url":"https://api.github.com/users/lesserwhirls","id":67096,"login":"lesserwhirls"}},"number":1,"merged_by":{"avatar_url":"https://secure.gravatar.com/avatar/ec3b4d2db3e6e33b498deb38592e862d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ec3b4d2db3e6e33b498deb38592e862d","url":"https://api.github.com/users/julienchastang","id":229955,"login":"julienchastang"},"created_at":"2012-03-08T00:10:01Z","merged":true,"changed_files":14,"comments":5,"body":"...J files). Added ant build info to IntelliJ project files.\r\n\r\nI just created an `ide` top level directory to hold different ide project files. The first pass is with IntelliJ files.\r\n\r\nSean","title":"First pass at adding ide project files to the IDV (specifically, Intelli...","diff_url":"https://github.com/Unidata/IDV/pull/1.diff","additions":274,"updated_at":"2012-03-12T20:38:09Z","_links":{"html":{"href":"https://github.com/Unidata/IDV/pull/1"},"self":{"href":"https://api.github.com/repos/Unidata/IDV/pulls/1"},"comments":{"href":"https://api.github.com/repos/Unidata/IDV/issues/1/comments"},"review_comments":{"href":"https://api.github.com/repos/Unidata/IDV/pulls/1/comments"}},"url":"https://api.github.com/repos/Unidata/IDV/pulls/1","id":946976,"patch_url":"https://github.com/Unidata/IDV/pull/1.patch","mergeable":null,"commits":1,"merged_at":"2012-03-12T20:38:09Z","closed_at":"2012-03-12T20:38:09Z","html_url":"https://github.com/Unidata/IDV/pull/1","user":{"avatar_url":"https://secure.gravatar.com/avatar/90bcb156fd7c201065f82b5e534fd3e1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"90bcb156fd7c201065f82b5e534fd3e1","url":"https://api.github.com/users/lesserwhirls","id":67096,"login":"lesserwhirls"},"review_comments":0,"deletions":2,"state":"closed","base":{"label":"Unidata:master","repo":{"name":"IDV","master_branch":null,"size":384,"created_at":"2012-02-27T22:50:22Z","has_wiki":true,"clone_url":"https://github.com/Unidata/IDV.git","private":false,"updated_at":"2012-03-12T20:38:09Z","watchers":3,"language":"Java","ssh_url":"git@github.com:Unidata/IDV.git","fork":false,"git_url":"git://github.com/Unidata/IDV.git","url":"https://api.github.com/repos/Unidata/IDV","id":3565779,"pushed_at":"2012-03-12T20:38:09Z","svn_url":"https://github.com/Unidata/IDV","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"http://www.unidata.ucar.edu/software/idv/","has_issues":true,"forks":2,"description":"The Integrated Data Viewer (IDV) from Unidata is a framework for analyzing and displaying geoscience data. ","html_url":"https://github.com/Unidata/IDV","owner":{"avatar_url":"https://secure.gravatar.com/avatar/f0ddba26f2eb351c7f46434fb5b5f693?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"f0ddba26f2eb351c7f46434fb5b5f693","url":"https://api.github.com/users/Unidata","id":613345,"login":"Unidata"}},"sha":"24db63b745fba4486874606b6eb5b6be4af78ef3","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/f0ddba26f2eb351c7f46434fb5b5f693?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"f0ddba26f2eb351c7f46434fb5b5f693","url":"https://api.github.com/users/Unidata","id":613345,"login":"Unidata"}}},"action":"closed"},"repo":{"url":"https://api.github.com/repos/Unidata/IDV","id":3565779,"name":"Unidata/IDV"},"id":"1529213081"},{"actor":{"url":"https://api.github.com/users/ceterumnet","gravatar_id":"dc008f6c3bc4f70a621df3aff6aeccbf","id":76789,"login":"ceterumnet"},"type":"PushEvent","created_at":"2012-03-12T20:38:09Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"a6ddfa1b910e177e92609934541a59a58ff72617","size":2,"push_id":66899401,"commits":[{"sha":"a900916c19178948643101a60788e7c5419adf6c","author":{"name":"David Raphael","email":"draphael@gmail.com"},"url":"https://api.github.com/repos/ceterumnet/octopress/commits/a900916c19178948643101a60788e7c5419adf6c","distinct":true,"message":"Updated readme"},{"sha":"a6ddfa1b910e177e92609934541a59a58ff72617","author":{"name":"David Raphael","email":"draphael@gmail.com"},"url":"https://api.github.com/repos/ceterumnet/octopress/commits/a6ddfa1b910e177e92609934541a59a58ff72617","distinct":true,"message":"Merge branch 'master' of github.com:ceterumnet/octopress"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/ceterumnet/octopress","id":3699590,"name":"ceterumnet/octopress"},"id":"1529213074"},{"actor":{"url":"https://api.github.com/users/dong41","gravatar_id":"6c2639336b6995134dc8907843a32419","id":441586,"login":"dong41"},"type":"PushEvent","created_at":"2012-03-12T20:38:09Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"9548e3427ae3e98983c762e10b766c608de9c98a","size":1,"push_id":66899399,"commits":[{"sha":"9548e3427ae3e98983c762e10b766c608de9c98a","author":{"name":"Tony Seing","email":"tony.seing@gmail.com"},"url":"https://api.github.com/repos/dong41/icare/commits/9548e3427ae3e98983c762e10b766c608de9c98a","distinct":true,"message":"manager page"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/dong41/icare","id":3031192,"name":"dong41/icare"},"id":"1529213070"},{"actor":{"url":"https://api.github.com/users/ClustyROM","gravatar_id":"f53c6611f69e4b7ecc80c31a9206380d","id":1510541,"login":"ClustyROM"},"type":"PushEvent","created_at":"2012-03-12T20:38:09Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"d483ea11760986efd53da3f91fd6cb1a2df3687d","size":1,"push_id":66899400,"ref":"refs/heads/master","commits":[{"sha":"d483ea11760986efd53da3f91fd6cb1a2df3687d","author":{"name":"Clust3r","email":"jeremy@clust3r.fr"},"url":"https://api.github.com/repos/ClustyROM/platform_manifest/commits/d483ea11760986efd53da3f91fd6cb1a2df3687d","distinct":true,"message":":)"}]},"repo":{"url":"https://api.github.com/repos/ClustyROM/platform_manifest","id":3647975,"name":"ClustyROM/platform_manifest"},"id":"1529213069"},{"actor":{"url":"https://api.github.com/users/tute","gravatar_id":"73c6b8b1ef87c072549584c0a9248537","id":54260,"login":"tute"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:07Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"3d5050fa54a8df0209136efff06bbad2","id":715613,"login":"charlotte-ruby"},"payload":{"comment":{"created_at":"2012-03-12T20:38:06Z","body":"See https://github.com/charlotte-ruby/impressionist/pull/29","updated_at":"2012-03-12T20:38:06Z","url":"https://api.github.com/repos/charlotte-ruby/impressionist/issues/comments/4461129","id":4461129,"user":{"avatar_url":"https://secure.gravatar.com/avatar/73c6b8b1ef87c072549584c0a9248537?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"73c6b8b1ef87c072549584c0a9248537","url":"https://api.github.com/users/tute","id":54260,"login":"tute"}},"action":"created","issue":{"number":21,"created_at":"2011-12-20T19:15:07Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"attr_accessible is going to be enforced by default in the upcoming version of rails. Right now this gem doesn't work if attr_accesible is nil on the model because of mass assignment being used to create the impression records.\r\n\r\nI think the methods that create impressions should use `:without_protection => true` or some other method that gets around mass assignment to properly account for this.","title":"attr_accessible and mass assignment","updated_at":"2012-03-12T20:38:06Z","url":"https://api.github.com/repos/charlotte-ruby/impressionist/issues/21","id":2616864,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/charlotte-ruby/impressionist/issues/21","user":{"avatar_url":"https://secure.gravatar.com/avatar/ec0d18387fb50a662d1b4c13c7781cad?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"ec0d18387fb50a662d1b4c13c7781cad","url":"https://api.github.com/users/aaronchi","id":6336,"login":"aaronchi"},"labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/charlotte-ruby/impressionist","id":1326875,"name":"charlotte-ruby/impressionist"},"id":"1529213056"},{"actor":{"url":"https://api.github.com/users/rcolepeterson","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","id":598959,"login":"rcolepeterson"},"type":"GistEvent","created_at":"2012-03-12T20:38:07Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"create","gist":{"created_at":"2012-03-12T20:38:06Z","comments":0,"public":true,"files":{},"updated_at":"2012-03-12T20:38:06Z","git_push_url":"git@gist.github.com:2024545.git","url":"https://api.github.com/gists/2024545","id":"2024545","git_pull_url":"git://gist.github.com/2024545.git","description":"CSS for iPad but exclude Safari 4 desktop using a media query?","user":{"avatar_url":"https://secure.gravatar.com/avatar/c0e73cad042ac82ae88cc42a31bcb5d0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c0e73cad042ac82ae88cc42a31bcb5d0","url":"https://api.github.com/users/rcolepeterson","id":598959,"login":"rcolepeterson"},"html_url":"https://gist.github.com/2024545"}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213051"},{"actor":{"url":"https://api.github.com/users/hulevskyi","gravatar_id":"a21eaacdcf370e1808c4e7d61509eb24","id":1524428,"login":"hulevskyi"},"type":"CreateEvent","created_at":"2012-03-12T20:38:06Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref_type":"repository","description":"","ref":null},"repo":{"url":"https://api.github.com/repos/hulevskyi/DroidRadar","id":3699708,"name":"hulevskyi/DroidRadar"},"id":"1529213044"},{"actor":{"url":"https://api.github.com/users/sdvg","gravatar_id":"91f1bb52508f1a2bf554b70417c8ce2d","id":971072,"login":"sdvg"},"type":"WatchEvent","created_at":"2012-03-12T20:38:05Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/metajack/strophejs","id":233074,"name":"metajack/strophejs"},"id":"1529213039"},{"actor":{"url":"https://api.github.com/users/timnovinger","gravatar_id":"7b10846a9ff6a3ac22ebb953c1e36f82","id":28424,"login":"timnovinger"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:04Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"comment":{"created_at":"2012-03-12T20:38:04Z","body":"The image is injected and then appended to the `body`…so there is still an actual `img` element to apply css to.\r\n\r\nHave you tried simply adding a border to the `img` that is injected?","updated_at":"2012-03-12T20:38:04Z","url":"https://api.github.com/repos/srobbin/jquery-backstretch/issues/comments/4461128","id":4461128,"user":{"avatar_url":"https://secure.gravatar.com/avatar/7b10846a9ff6a3ac22ebb953c1e36f82?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b10846a9ff6a3ac22ebb953c1e36f82","url":"https://api.github.com/users/timnovinger","id":28424,"login":"timnovinger"}},"action":"created","issue":{"number":94,"created_at":"2012-03-05T12:54:23Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":1,"body":"Hi there. I need to get a border around the image so that the image does not extend to all corners of the browers.\r\nI need a space of around 15-20px giving me basicaly a white border.\r\n\r\nI tried things like adding a border to the body itself. It did add a border, but the bottom part of it was off screen and had to be scrolled to get it to apear.\r\n\r\nAnyone an idea how to get this up and running?","title":"Border around image","updated_at":"2012-03-12T20:38:04Z","url":"https://api.github.com/repos/srobbin/jquery-backstretch/issues/94","id":3505837,"assignee":null,"milestone":null,"closed_at":null,"html_url":"https://github.com/srobbin/jquery-backstretch/issues/94","user":{"avatar_url":"https://secure.gravatar.com/avatar/c8b7ea97c6c2d53914c450412628bd63?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"c8b7ea97c6c2d53914c450412628bd63","url":"https://api.github.com/users/bobbybobo","id":1502703,"login":"bobbybobo"},"labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/srobbin/jquery-backstretch","id":440647,"name":"srobbin/jquery-backstretch"},"id":"1529213035"},{"actor":{"url":"https://api.github.com/users/larshesel","gravatar_id":"adfa528eee0ab354d9522d76fa1297d9","id":679187,"login":"larshesel"},"type":"FollowEvent","created_at":"2012-03-12T20:38:04Z","public":0,"org":{"url":"https://api.github.com/orgs/"},"payload":{"target":{"avatar_url":"https://secure.gravatar.com/avatar/2583ee1ee6f3d7cfbd7dfe5bb5c3a9a4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","name":"Dave Smith","gravatar_id":"2583ee1ee6f3d7cfbd7dfe5bb5c3a9a4","company":"Basho","location":null,"created_at":"2008-08-09T20:07:59Z","public_repos":25,"blog":"http://dizzyd.com","followers":61,"public_gists":6,"url":"https://api.github.com/users/dizzyd","id":20146,"hireable":false,"type":"User","bio":null,"login":"dizzyd","html_url":"https://github.com/dizzyd","following":0,"email":"dizzyd@dizzyd.com"}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1529213033"},{"actor":{"url":"https://api.github.com/users/rezyh","gravatar_id":"bbca0a590cd57a35d8f150f79be3824b","id":1526460,"login":"rezyh"},"type":"ForkEvent","created_at":"2012-03-12T20:38:04Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"forkee":{"name":"Spoon-Knife","master_branch":null,"created_at":"2012-03-12T20:38:03Z","size":284,"has_wiki":false,"clone_url":"https://github.com/rezyh/Spoon-Knife.git","public":true,"private":false,"updated_at":"2012-03-12T20:38:03Z","watchers":1,"url":"https://api.github.com/repos/rezyh/Spoon-Knife","fork":true,"git_url":"git://github.com/rezyh/Spoon-Knife.git","language":null,"ssh_url":"git@github.com:rezyh/Spoon-Knife.git","id":3699707,"pushed_at":"2011-10-31T14:34:52Z","svn_url":"https://github.com/rezyh/Spoon-Knife","mirror_url":null,"has_downloads":true,"open_issues":0,"homepage":"","has_issues":false,"description":"This repo is for demonstration purposes only. Comments and issues may or may not be responded to.","forks":0,"html_url":"https://github.com/rezyh/Spoon-Knife","owner":{"gravatar_id":"bbca0a590cd57a35d8f150f79be3824b","avatar_url":"https://secure.gravatar.com/avatar/bbca0a590cd57a35d8f150f79be3824b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rezyh","id":1526460,"login":"rezyh"}}},"repo":{"url":"https://api.github.com/repos/octocat/Spoon-Knife","id":1300192,"name":"octocat/Spoon-Knife"},"id":"1529213031"},{"actor":{"url":"https://api.github.com/users/sdvg","gravatar_id":"91f1bb52508f1a2bf554b70417c8ce2d","id":971072,"login":"sdvg"},"type":"WatchEvent","created_at":"2012-03-12T20:38:03Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/metajack/strophejs","id":233074,"name":"metajack/strophejs"},"id":"1529213016"},{"actor":{"url":"https://api.github.com/users/qrooel","gravatar_id":"30069e601dec4df007b97ffdc6c64c6e","id":1167170,"login":"qrooel"},"type":"WatchEvent","created_at":"2012-03-12T20:38:03Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/NoamB/sorcery","id":1307476,"name":"NoamB/sorcery"},"id":"1529213013"},{"actor":{"url":"https://api.github.com/users/jshiell","gravatar_id":"e3dbd0c7a5d8903b2109714bf13ab9b1","id":1030482,"login":"jshiell"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:38:02Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"comment":{"created_at":"2012-03-12T20:38:02Z","body":"Closing due to no further feedback. Feel free to reopen if needed =)","updated_at":"2012-03-12T20:38:02Z","url":"https://api.github.com/repos/jshiell/checkstyle-idea/issues/comments/4461125","id":4461125,"user":{"avatar_url":"https://secure.gravatar.com/avatar/e3dbd0c7a5d8903b2109714bf13ab9b1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e3dbd0c7a5d8903b2109714bf13ab9b1","url":"https://api.github.com/users/jshiell","id":1030482,"login":"jshiell"}},"action":"created","issue":{"number":20,"created_at":"2011-12-08T12:49:45Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":8,"body":"I downloaded version 3.5 to IDEA 10.5.4 on Windows XP\r\n\r\nI have a setting of a property available for my CheckStyle 5.4 file (a path to a suppress file), but when accessing the \"Edit Properties\" under the \"Configuration File\" tab in the CheckStyle setting, I am not able to save a value for that property.\r\nEdit Properties -> Property Name = checkstyleConfigDir -> Value = \"C:\\checkstyle\" -> OK\r\nwhen I again access the Edit Properties dialouge, the Value field is just empty\r\n\r\nplease let me know if you need some more information\r\n\r\nBTW, I think you need to update the README file\r\nI read in the README-file: \r\n\"The 'Errors' item in the preferences panel will allow you to turn this on and to configure it.\"\r\nI do not know where the \"Errors item in the preferences panel\" is, but I discovered (after a lot of trying and failing) that the real-time scan had to be turned on through Inspections->CheckStyle->Real-time scan","title":"Can not edit property for custom file","updated_at":"2012-03-12T20:38:02Z","url":"https://api.github.com/repos/jshiell/checkstyle-idea/issues/20","id":2487142,"assignee":null,"milestone":null,"closed_at":"2012-03-12T20:38:02Z","html_url":"https://github.com/jshiell/checkstyle-idea/issues/20","user":{"avatar_url":"https://secure.gravatar.com/avatar/97aeea00918d08bb0edb0645830199ac?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"97aeea00918d08bb0edb0645830199ac","url":"https://api.github.com/users/anif","id":1249729,"login":"anif"},"labels":[],"state":"closed"}},"repo":{"url":"https://api.github.com/repos/jshiell/checkstyle-idea","id":2335594,"name":"jshiell/checkstyle-idea"},"id":"1529213003"},{"actor":{"url":"https://api.github.com/users/jshiell","gravatar_id":"e3dbd0c7a5d8903b2109714bf13ab9b1","id":1030482,"login":"jshiell"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:02Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"closed","issue":{"number":20,"created_at":"2011-12-08T12:49:45Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":8,"body":"I downloaded version 3.5 to IDEA 10.5.4 on Windows XP\r\n\r\nI have a setting of a property available for my CheckStyle 5.4 file (a path to a suppress file), but when accessing the \"Edit Properties\" under the \"Configuration File\" tab in the CheckStyle setting, I am not able to save a value for that property.\r\nEdit Properties -> Property Name = checkstyleConfigDir -> Value = \"C:\\checkstyle\" -> OK\r\nwhen I again access the Edit Properties dialouge, the Value field is just empty\r\n\r\nplease let me know if you need some more information\r\n\r\nBTW, I think you need to update the README file\r\nI read in the README-file: \r\n\"The 'Errors' item in the preferences panel will allow you to turn this on and to configure it.\"\r\nI do not know where the \"Errors item in the preferences panel\" is, but I discovered (after a lot of trying and failing) that the real-time scan had to be turned on through Inspections->CheckStyle->Real-time scan","title":"Can not edit property for custom file","updated_at":"2012-03-12T20:38:02Z","url":"https://api.github.com/repos/jshiell/checkstyle-idea/issues/20","id":2487142,"assignee":null,"milestone":null,"closed_at":"2012-03-12T20:38:02Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/97aeea00918d08bb0edb0645830199ac?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"97aeea00918d08bb0edb0645830199ac","url":"https://api.github.com/users/anif","id":1249729,"login":"anif"},"html_url":"https://github.com/jshiell/checkstyle-idea/issues/20","labels":[],"state":"closed"}},"repo":{"url":"https://api.github.com/repos/jshiell/checkstyle-idea","id":2335594,"name":"jshiell/checkstyle-idea"},"id":"1529213002"},{"actor":{"url":"https://api.github.com/users/ryanramage","gravatar_id":"1fd8567a6aefb65b8a44d343855923c9","id":795834,"login":"ryanramage"},"type":"WatchEvent","created_at":"2012-03-12T20:38:02Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/janl/node-CouchDBExternal","id":3478257,"name":"janl/node-CouchDBExternal"},"id":"1529212998"}] - -GET /events?page=10 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4778'), ('content-length', '33093'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="prev"'), ('etag', '"498424502d63c627d5e496a610b20311"'), ('date', 'Mon, 12 Mar 2012 20:40:44 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jshiell","gravatar_id":"e3dbd0c7a5d8903b2109714bf13ab9b1","id":1030482,"login":"jshiell"},"type":"IssuesEvent","created_at":"2012-03-12T20:38:02Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"closed","issue":{"number":20,"created_at":"2011-12-08T12:49:45Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":8,"body":"I downloaded version 3.5 to IDEA 10.5.4 on Windows XP\r\n\r\nI have a setting of a property available for my CheckStyle 5.4 file (a path to a suppress file), but when accessing the \"Edit Properties\" under the \"Configuration File\" tab in the CheckStyle setting, I am not able to save a value for that property.\r\nEdit Properties -> Property Name = checkstyleConfigDir -> Value = \"C:\\checkstyle\" -> OK\r\nwhen I again access the Edit Properties dialouge, the Value field is just empty\r\n\r\nplease let me know if you need some more information\r\n\r\nBTW, I think you need to update the README file\r\nI read in the README-file: \r\n\"The 'Errors' item in the preferences panel will allow you to turn this on and to configure it.\"\r\nI do not know where the \"Errors item in the preferences panel\" is, but I discovered (after a lot of trying and failing) that the real-time scan had to be turned on through Inspections->CheckStyle->Real-time scan","title":"Can not edit property for custom file","updated_at":"2012-03-12T20:38:02Z","url":"https://api.github.com/repos/jshiell/checkstyle-idea/issues/20","id":2487142,"assignee":null,"milestone":null,"closed_at":"2012-03-12T20:38:02Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/97aeea00918d08bb0edb0645830199ac?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"97aeea00918d08bb0edb0645830199ac","url":"https://api.github.com/users/anif","id":1249729,"login":"anif"},"html_url":"https://github.com/jshiell/checkstyle-idea/issues/20","labels":[],"state":"closed"}},"repo":{"url":"https://api.github.com/repos/jshiell/checkstyle-idea","id":2335594,"name":"jshiell/checkstyle-idea"},"id":"1529213002"},{"actor":{"url":"https://api.github.com/users/ryanramage","gravatar_id":"1fd8567a6aefb65b8a44d343855923c9","id":795834,"login":"ryanramage"},"type":"WatchEvent","created_at":"2012-03-12T20:38:02Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/janl/node-CouchDBExternal","id":3478257,"name":"janl/node-CouchDBExternal"},"id":"1529212998"},{"actor":{"url":"https://api.github.com/users/codedev","gravatar_id":"06381bebb3a31f2d410580e5ae88e614","id":1475589,"login":"codedev"},"type":"ForkEvent","created_at":"2012-03-12T20:38:00Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"forkee":{"name":"SiriServer","master_branch":null,"size":212,"created_at":"2012-03-12T20:38:00Z","has_wiki":true,"public":true,"clone_url":"https://github.com/codedev/SiriServer.git","private":false,"updated_at":"2012-03-12T20:38:00Z","watchers":1,"language":"Python","ssh_url":"git@github.com:codedev/SiriServer.git","fork":true,"git_url":"git://github.com/codedev/SiriServer.git","url":"https://api.github.com/repos/codedev/SiriServer","id":3699706,"pushed_at":"2012-03-12T01:08:10Z","svn_url":"https://github.com/codedev/SiriServer","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"","has_issues":false,"forks":0,"description":"This goals at recreating a siriServer using python","html_url":"https://github.com/codedev/SiriServer","owner":{"avatar_url":"https://secure.gravatar.com/avatar/06381bebb3a31f2d410580e5ae88e614?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"06381bebb3a31f2d410580e5ae88e614","url":"https://api.github.com/users/codedev","id":1475589,"login":"codedev"}}},"repo":{"url":"https://api.github.com/repos/jimmykane/SiriServer","id":3317076,"name":"jimmykane/SiriServer"},"id":"1529212984"},{"actor":{"url":"https://api.github.com/users/cmcandrews","gravatar_id":"c8582e67417140773bba569c87ea8461","id":105343,"login":"cmcandrews"},"type":"PushEvent","created_at":"2012-03-12T20:38:00Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"375c7f05575600d4e2794a18fb2c834bcb7a177a","size":1,"push_id":66899372,"ref":"refs/heads/master","commits":[{"sha":"375c7f05575600d4e2794a18fb2c834bcb7a177a","author":{"name":"Chris McAndrews","email":"chrismcandrews@gmail.com"},"url":"https://api.github.com/repos/dkutilek/cs114Gnutella/commits/375c7f05575600d4e2794a18fb2c834bcb7a177a","distinct":true,"message":"A listening peer will now check if any of its connections are closed and delete the associated peer from its peer list."}]},"repo":{"url":"https://api.github.com/repos/dkutilek/cs114Gnutella","id":3545801,"name":"dkutilek/cs114Gnutella"},"id":"1529212978"},{"actor":{"url":"https://api.github.com/users/wbollenbacher","gravatar_id":"5aaae7f5f15719d00b80177955108395","id":523094,"login":"wbollenbacher"},"type":"PushEvent","created_at":"2012-03-12T20:38:00Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"7447cf090e55cebf07628aec3266c01d","id":406161,"login":"ooici"},"payload":{"head":"c8be5bf27389e9d18d9742f33e4e447fbc752c15","size":2,"push_id":66899369,"ref":"refs/heads/master","commits":[{"sha":"5fd64b17d6a8b51697cda7a95fdca8f58c26cce4","author":{"name":"Bill Bollenbacher","email":"wbollenbacher@ucsd.edu"},"url":"https://api.github.com/repos/ooici/coi-services/commits/5fd64b17d6a8b51697cda7a95fdca8f58c26cce4","distinct":true,"message":"changed where the packet factories method is imported from"},{"sha":"c8be5bf27389e9d18d9742f33e4e447fbc752c15","author":{"name":"Bill Bollenbacher","email":"wbollenbacher@ucsd.edu"},"url":"https://api.github.com/repos/ooici/coi-services/commits/c8be5bf27389e9d18d9742f33e4e447fbc752c15","distinct":true,"message":"Merge branch 'master' of github.com:ooici/coi-services"}]},"repo":{"url":"https://api.github.com/repos/ooici/coi-services","id":2667688,"name":"ooici/coi-services"},"id":"1529212969"},{"actor":{"url":"https://api.github.com/users/nosaesa","gravatar_id":"deab55017e8e98309891c48a4033093b","id":1530409,"login":"nosaesa"},"type":"ForkEvent","created_at":"2012-03-12T20:38:00Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"forkee":{"name":"CS61B-Project","master_branch":null,"size":180,"created_at":"2012-03-12T20:37:58Z","has_wiki":true,"public":true,"clone_url":"https://github.com/nosaesa/CS61B-Project.git","private":false,"updated_at":"2012-03-12T20:37:58Z","watchers":1,"language":"Java","ssh_url":"git@github.com:nosaesa/CS61B-Project.git","fork":true,"git_url":"git://github.com/nosaesa/CS61B-Project.git","url":"https://api.github.com/repos/nosaesa/CS61B-Project","id":3699705,"pushed_at":"2012-03-12T09:37:33Z","svn_url":"https://github.com/nosaesa/CS61B-Project","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"","has_issues":false,"forks":0,"description":"Implementation of A.I. in the game of Network","html_url":"https://github.com/nosaesa/CS61B-Project","owner":{"avatar_url":"https://secure.gravatar.com/avatar/deab55017e8e98309891c48a4033093b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"deab55017e8e98309891c48a4033093b","url":"https://api.github.com/users/nosaesa","id":1530409,"login":"nosaesa"}}},"repo":{"url":"https://api.github.com/repos/kamikaze823/CS61B-Project","id":3674661,"name":"kamikaze823/CS61B-Project"},"id":"1529212968"},{"actor":{"url":"https://api.github.com/users/timothypage","gravatar_id":"2590cd7d82c8d2ee814c0790fad139cc","id":1253266,"login":"timothypage"},"type":"WatchEvent","created_at":"2012-03-12T20:38:00Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/powmedia/backbone-forms","id":2341343,"name":"powmedia/backbone-forms"},"id":"1529212967"},{"actor":{"url":"https://api.github.com/users/thomas4g","gravatar_id":"a41a6698643211023d0533cbeda644d4","id":821920,"login":"thomas4g"},"type":"PushEvent","created_at":"2012-03-12T20:38:00Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"a0e78df2ed3883dd9f4d6101159c77af2d0d2484","size":1,"push_id":66899370,"commits":[{"sha":"a0e78df2ed3883dd9f4d6101159c77af2d0d2484","author":{"name":"Thomas Shields","email":"me@thomasshields.net"},"url":"https://api.github.com/repos/thomas4g/Project-Euler/commits/a0e78df2ed3883dd9f4d6101159c77af2d0d2484","distinct":true,"message":"10"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/thomas4g/Project-Euler","id":3684768,"name":"thomas4g/Project-Euler"},"id":"1529212965"},{"actor":{"url":"https://api.github.com/users/migurski","gravatar_id":"039667155d1baa533e461671e97891a1","id":58730,"login":"migurski"},"type":"IssuesEvent","created_at":"2012-03-12T20:37:59Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"opened","issue":{"number":18,"created_at":"2012-03-12T20:37:58Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"","title":"Animate overlaid rectangle on slippy map at print.php?id=xyz","updated_at":"2012-03-12T20:37:58Z","url":"https://api.github.com/repos/stamen/paperwalking/issues/18","id":3618647,"assignee":{"avatar_url":"https://secure.gravatar.com/avatar/d9d4dfbc2edd36ce1b9496261e037859?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"d9d4dfbc2edd36ce1b9496261e037859","url":"https://api.github.com/users/mlevans","id":386185,"login":"mlevans"},"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/039667155d1baa533e461671e97891a1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"039667155d1baa533e461671e97891a1","url":"https://api.github.com/users/migurski","id":58730,"login":"migurski"},"html_url":"https://github.com/stamen/paperwalking/issues/18","labels":[{"name":"minor","url":"https://api.github.com/repos/stamen/paperwalking/labels/minor","color":"ff9900"}],"state":"open"}},"repo":{"url":"https://api.github.com/repos/stamen/paperwalking","id":2704905,"name":"stamen/paperwalking"},"id":"1529212964"},{"actor":{"url":"https://api.github.com/users/mojavelinux","gravatar_id":"dcccd96c499963133f7f95e7ffa20c4e","id":79351,"login":"mojavelinux"},"type":"GollumEvent","created_at":"2012-03-12T20:37:58Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"9be5bfc3104c3702712413ff986fe45b","id":330981,"login":"arquillian"},"payload":{"pages":[{"sha":"bb11421306c649464fc65372d294c0f4376b3132","title":"Burndown to Live","action":"edited","page_name":"Burndown to Live","summary":null,"html_url":"https://github.com/arquillian/arquillian.github.com/wiki/Burndown-to-Live"}]},"repo":{"url":"https://api.github.com/repos/arquillian/arquillian.github.com","id":2431108,"name":"arquillian/arquillian.github.com"},"id":"1529212960"},{"actor":{"url":"https://api.github.com/users/ksevelyar","gravatar_id":"c8e2069c00c57d942f4c239bdcdd7353","id":725959,"login":"ksevelyar"},"type":"PushEvent","created_at":"2012-03-12T20:37:57Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"e70413130a3e9b347c4e46ce824421009e69b1da","size":1,"push_id":66899362,"ref":"refs/heads/master","commits":[{"sha":"e70413130a3e9b347c4e46ce824421009e69b1da","author":{"name":"ksevelyar","email":"ksevelyar@gmail.com"},"url":"https://api.github.com/repos/ksevelyar/linux-desktop/commits/e70413130a3e9b347c4e46ce824421009e69b1da","distinct":true,"message":"woa!! this one was really HARD!"}]},"repo":{"url":"https://api.github.com/repos/ksevelyar/linux-desktop","id":3579678,"name":"ksevelyar/linux-desktop"},"id":"1529212953"},{"actor":{"url":"https://api.github.com/users/ki113d","gravatar_id":"088f41c7e03ef6e961830d4e17adbec9","id":619341,"login":"ki113d"},"type":"PushEvent","created_at":"2012-03-12T20:37:55Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"4bb441cbf3aebefd9c3a0c7c13c3ab1c67c483b3","size":1,"push_id":66899354,"commits":[{"sha":"4bb441cbf3aebefd9c3a0c7c13c3ab1c67c483b3","author":{"name":"ki113d","email":"ki113d@ArchBox.localdomain"},"url":"https://api.github.com/repos/ki113d/dwm/commits/4bb441cbf3aebefd9c3a0c7c13c3ab1c67c483b3","distinct":true,"message":"Small update"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/ki113d/dwm","id":3636806,"name":"ki113d/dwm"},"id":"1529212945"},{"actor":{"url":"https://api.github.com/users/jrioux","gravatar_id":"5cae8144750de6864336452d020fd491","id":1246890,"login":"jrioux"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:37:55Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"cbddfebe00a15f38108875eaafa827de","id":260832,"login":"sympy"},"payload":{"comment":{"created_at":"2012-03-12T20:37:54Z","body":"The two \"fix tests\" commits should probably be squashed with other commits in order not to gratuitously break git bisect, but otherwise this looks good to me.","updated_at":"2012-03-12T20:37:54Z","url":"https://api.github.com/repos/sympy/sympy/issues/comments/4461121","id":4461121,"user":{"avatar_url":"https://secure.gravatar.com/avatar/5cae8144750de6864336452d020fd491?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5cae8144750de6864336452d020fd491","url":"https://api.github.com/users/jrioux","id":1246890,"login":"jrioux"}},"action":"created","issue":{"number":422,"created_at":"2011-06-15T02:43:59Z","pull_request":{"diff_url":"https://github.com/sympy/sympy/pull/422.diff","patch_url":"https://github.com/sympy/sympy/pull/422.patch","html_url":"https://github.com/sympy/sympy/pull/422"},"comments":14,"body":"Changes basically following those described at http://code.google.com/p/sympy/issues/detail?id=1811 are contained in these commits. In addition, iterable functions common_prefix and common_suffix are added to handle identification of extractable sequences in noncommutative terms and are used in a noncommutative factoring routine.\r\n\r\nI've left these as a series of individual commits hoping that this might help in the review process (to keep the individual changes per commit small).\r\n\r\nAfter committing, search issues for this pull request number (e.g. put \"422\" in the search box to see which might have been related to this issue.)","title":"1858b (1811) separatevars modifications and noncommutative factoring","updated_at":"2012-03-12T20:37:54Z","url":"https://api.github.com/repos/sympy/sympy/issues/422","id":1058951,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/61e106a28e171b4407171702b182759f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"61e106a28e171b4407171702b182759f","url":"https://api.github.com/users/smichr","id":90703,"login":"smichr"},"html_url":"https://github.com/sympy/sympy/issues/422","labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/sympy/sympy","id":640534,"name":"sympy/sympy"},"id":"1529212943"},{"actor":{"url":"https://api.github.com/users/pfraze","gravatar_id":"88e8e6d6c8b93c91e6dcce053dfbb915","id":1270099,"login":"pfraze"},"type":"PushEvent","created_at":"2012-03-12T20:37:54Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"df9e6527e7032b87571455623210b17927b8ada3","size":1,"push_id":66899353,"commits":[{"sha":"df9e6527e7032b87571455623210b17927b8ada3","author":{"name":"Paul Frazee","email":"pfrazee@gmail.com"},"url":"https://api.github.com/repos/pfraze/pfraze.github.com/commits/df9e6527e7032b87571455623210b17927b8ada3","distinct":true,"message":"eh, didn't need that chapter"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/pfraze/pfraze.github.com","id":3599255,"name":"pfraze/pfraze.github.com"},"id":"1529212937"},{"actor":{"url":"https://api.github.com/users/johnjelinek","gravatar_id":"5d27377ee4681a396bdaa7c2abe954a9","id":873610,"login":"johnjelinek"},"type":"IssueCommentEvent","created_at":"2012-03-12T20:37:53Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"comment":{"created_at":"2012-03-12T20:37:53Z","body":"I already tried. For some reason, it won't find the NUnit.Core namespace\r\nunder vb.net\r\nOn Mar 12, 2012 2:50 PM, \"Gspr Nagy\" <\r\nreply@reply.github.com>\r\nwrote:\r\n\r\n> there are a few free on-line c# -> vb.net converter. maybe you can try to\r\n> convert the file with them. if you have success, we can add it to the\r\n> package.\r\n>\r\n> ---\r\n> Reply to this email directly or view it on GitHub:\r\n> https://github.com/techtalk/SpecFlow/issues/26#issuecomment-4460150\r\n>","updated_at":"2012-03-12T20:37:53Z","url":"https://api.github.com/repos/techtalk/SpecFlow/issues/comments/4461120","id":4461120,"user":{"avatar_url":"https://secure.gravatar.com/avatar/5d27377ee4681a396bdaa7c2abe954a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5d27377ee4681a396bdaa7c2abe954a9","url":"https://api.github.com/users/johnjelinek","id":873610,"login":"johnjelinek"}},"action":"created","issue":{"number":26,"created_at":"2011-01-13T06:47:37Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":6,"body":"See discussion on the group:\nhttp://groups.google.com/group/specflow/browse_thread/thread/75f0cc35d7964497?hl=en_US","title":"AfterTestRun-Hook does not trigger when running in NUnitGui or NUnitConsole","updated_at":"2012-03-12T20:37:53Z","url":"https://api.github.com/repos/techtalk/SpecFlow/issues/26","id":523913,"assignee":null,"milestone":null,"closed_at":"2011-10-17T14:47:34Z","user":{"avatar_url":"https://secure.gravatar.com/avatar/e6f60d485649907ed1efc82a3cfc1d28?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e6f60d485649907ed1efc82a3cfc1d28","url":"https://api.github.com/users/jbandi","id":56378,"login":"jbandi"},"html_url":"https://github.com/techtalk/SpecFlow/issues/26","labels":[{"name":"bug","url":"https://api.github.com/repos/techtalk/SpecFlow/labels/bug","color":"e10c02"},{"name":"runtime","url":"https://api.github.com/repos/techtalk/SpecFlow/labels/runtime","color":"02d7e1"}],"state":"closed"}},"repo":{"url":"https://api.github.com/repos/techtalk/SpecFlow","id":346594,"name":"techtalk/SpecFlow"},"id":"1529212921"},{"actor":{"url":"https://api.github.com/users/clevur-tom","gravatar_id":"a188e2b3f6e713e5dccb6e647ddb0884","id":114055,"login":"clevur-tom"},"type":"CreateEvent","created_at":"2012-03-12T20:37:53Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref":"master","description":"","ref_type":"branch"},"repo":{"url":"https://api.github.com/repos/clevur-tom/base-maint","id":3699432,"name":"clevur-tom/base-maint"},"id":"1529212918"},{"actor":{"url":"https://api.github.com/users/pydanny","gravatar_id":"67e05420d4dd3492097aeb77f44f7867","id":62857,"login":"pydanny"},"type":"IssuesEvent","created_at":"2012-03-12T20:37:53Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"ae5c77f60136c1c511da5e5ccd40e7d8","id":1462106,"login":"consumernotebook"},"payload":{"action":"opened","issue":{"number":24,"created_at":"2012-03-12T20:37:52Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"In both the browser and API versions.","title":"Search","updated_at":"2012-03-12T20:37:52Z","url":"https://api.github.com/repos/consumernotebook/tickets/issues/24","id":3618642,"assignee":{"avatar_url":"https://secure.gravatar.com/avatar/67e05420d4dd3492097aeb77f44f7867?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"67e05420d4dd3492097aeb77f44f7867","url":"https://api.github.com/users/pydanny","id":62857,"login":"pydanny"},"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/67e05420d4dd3492097aeb77f44f7867?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"67e05420d4dd3492097aeb77f44f7867","url":"https://api.github.com/users/pydanny","id":62857,"login":"pydanny"},"html_url":"https://github.com/consumernotebook/tickets/issues/24","labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/consumernotebook/tickets","id":3533406,"name":"consumernotebook/tickets"},"id":"1529212917"},{"actor":{"url":"https://api.github.com/users/tierney","gravatar_id":"4ad7975e01ee5dcbff46b2fafa88369c","id":366388,"login":"tierney"},"type":"PushEvent","created_at":"2012-03-12T20:37:50Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"e1129dc055a7a988b88ae595c6c0454036d7a893","size":1,"push_id":66899340,"commits":[{"sha":"e1129dc055a7a988b88ae595c6c0454036d7a893","author":{"name":"Matt Tierney","email":"tierney@cs.nyu.edu"},"url":"https://api.github.com/repos/tierney/web_perf/commits/e1129dc055a7a988b88ae595c6c0454036d7a893","distinct":true,"message":"Ready rpc mechanism."}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/tierney/web_perf","id":3640172,"name":"tierney/web_perf"},"id":"1529212903"},{"actor":{"url":"https://api.github.com/users/dadenjay","gravatar_id":"e69f897fed7fcab0f0ca6ec2f3e3bafc","id":1470230,"login":"dadenjay"},"type":"PushEvent","created_at":"2012-03-12T20:37:50Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"8a4dd4682f2f61556b6cc88c5d3be571b2109c76","size":1,"push_id":66899339,"ref":"refs/heads/master","commits":[{"sha":"8a4dd4682f2f61556b6cc88c5d3be571b2109c76","author":{"name":"Nathan","email":"njh246@gmail.com"},"url":"https://api.github.com/repos/dadenjay/gittest2/commits/8a4dd4682f2f61556b6cc88c5d3be571b2109c76","distinct":true,"message":"mostly style edits up to 12mar"}]},"repo":{"url":"https://api.github.com/repos/dadenjay/gittest2","id":3612465,"name":"dadenjay/gittest2"},"id":"1529212902"},{"actor":{"url":"https://api.github.com/users/stephaneAG","gravatar_id":"76a42b0a32683070782a4bbb68d4c46a","id":1298071,"login":"stephaneAG"},"type":"PushEvent","created_at":"2012-03-12T20:37:50Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"86eb3635e9d7ba6b88d03b7347648ce69af605fd","size":1,"push_id":66899338,"commits":[{"sha":"86eb3635e9d7ba6b88d03b7347648ce69af605fd","author":{"name":"StephaneAG","email":"seedsodesign@gmail.com"},"url":"https://api.github.com/repos/stephaneAG/siriproxy-mod/commits/86eb3635e9d7ba6b88d03b7347648ce69af605fd","distinct":true,"message":"Set the roof on fire\n\n..."}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/stephaneAG/siriproxy-mod","id":3085031,"name":"stephaneAG/siriproxy-mod"},"id":"1529212900"},{"actor":{"url":"https://api.github.com/users/EButlerIV","gravatar_id":"fd94273de9206a2f8762c86239bb41a2","id":591805,"login":"EButlerIV"},"type":"PushEvent","created_at":"2012-03-12T20:37:49Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"9dac08b1d0b38808cd43a7402ed6e7ab52506edc","size":1,"push_id":66899332,"commits":[{"sha":"9dac08b1d0b38808cd43a7402ed6e7ab52506edc","author":{"name":"Eugene Butler","email":"eugene.iv@gmail.com"},"url":"https://api.github.com/repos/xcoderzach/LiveController/commits/9dac08b1d0b38808cd43a7402ed6e7ab52506edc","distinct":true,"message":"merged"}],"ref":"refs/heads/develop"},"repo":{"url":"https://api.github.com/repos/xcoderzach/LiveController","id":1628734,"name":"xcoderzach/LiveController"},"id":"1529212893"},{"actor":{"url":"https://api.github.com/users/nilspk","gravatar_id":"67e34bf2081652b30675367a3c1a32d4","id":926533,"login":"nilspk"},"type":"WatchEvent","created_at":"2012-03-12T20:37:49Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/JugglerShu/XVim","id":3430409,"name":"JugglerShu/XVim"},"id":"1529212892"},{"actor":{"url":"https://api.github.com/users/lincrampton","gravatar_id":"4cda731fa493721ac481bc20cd95a1c2","id":1399770,"login":"lincrampton"},"type":"WatchEvent","created_at":"2012-03-12T20:37:48Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"a492cf15500880884557cbf7bdd449f8","id":351846,"login":"guard"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/guard/guard-brakeman","id":3207026,"name":"guard/guard-brakeman"},"id":"1529212890"},{"actor":{"url":"https://api.github.com/users/rocketspops","gravatar_id":"08b7b603b012b9abde38075abd622ce1","id":91978,"login":"rocketspops"},"type":"WatchEvent","created_at":"2012-03-12T20:37:46Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"action":"started"},"repo":{"url":"https://api.github.com/repos/ahume/selector-queries","id":2048381,"name":"ahume/selector-queries"},"id":"1529212882"},{"actor":{"url":"https://api.github.com/users/ngraef","gravatar_id":"2eb0096c898a16e4fb2331c7bec52d6e","id":1031317,"login":"ngraef"},"type":"IssuesEvent","created_at":"2012-03-12T20:37:46Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"8a746394c74caf7ff7c0c2547adaed8c","id":1048434,"login":"CoJMC"},"payload":{"action":"opened","issue":{"number":9,"created_at":"2012-03-12T20:37:46Z","pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"comments":0,"body":"","title":"Center align content on base model","updated_at":"2012-03-12T20:37:46Z","url":"https://api.github.com/repos/CoJMC/jaam/issues/9","id":3618640,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/2eb0096c898a16e4fb2331c7bec52d6e?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"2eb0096c898a16e4fb2331c7bec52d6e","url":"https://api.github.com/users/ngraef","id":1031317,"login":"ngraef"},"html_url":"https://github.com/CoJMC/jaam/issues/9","labels":[],"state":"open"}},"repo":{"url":"https://api.github.com/repos/CoJMC/jaam","id":2606188,"name":"CoJMC/jaam"},"id":"1529212881"},{"actor":{"url":"https://api.github.com/users/dzirtbry","gravatar_id":"ec78593f5a9966741e352dd4ddb80fc9","id":929149,"login":"dzirtbry"},"type":"PushEvent","created_at":"2012-03-12T20:37:45Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"ba8198e3bdf1ebb2fef1bc06189dc11847fd2df9","size":1,"push_id":66899320,"commits":[{"sha":"ba8198e3bdf1ebb2fef1bc06189dc11847fd2df9","author":{"name":"dzirtbry","email":"dzirtbry@gmail.com"},"url":"https://api.github.com/repos/dzirtbry/hw2_rottenpotatoes/commits/ba8198e3bdf1ebb2fef1bc06189dc11847fd2df9","distinct":true,"message":"Finished part 3"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/dzirtbry/hw2_rottenpotatoes","id":3690624,"name":"dzirtbry/hw2_rottenpotatoes"},"id":"1529212877"},{"actor":{"url":"https://api.github.com/users/SnoFox","gravatar_id":"7eca787199a56eb9437ee2a6374470fa","id":37625,"login":"SnoFox"},"type":"PushEvent","created_at":"2012-03-12T20:37:45Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"1cac61c4925e277d73d369350f0600d0bfa88785","size":6,"push_id":66899318,"commits":[{"sha":"57f4d5c08c8be146c17b007b55b66daf29527a6d","author":{"name":"David Dixon II","email":"scrapii407@gmail.com"},"url":"https://api.github.com/repos/SnoFox/pyfox/commits/57f4d5c08c8be146c17b007b55b66daf29527a6d","distinct":true,"message":"SnoFox has a point with the target stuff. I thank him for putting up with my crap."},{"sha":"6ca51b2a7a1e5f1e345c71c265fb26574793396d","author":{"name":"David Dixon II","email":"scrapii407@gmail.com"},"url":"https://api.github.com/repos/SnoFox/pyfox/commits/6ca51b2a7a1e5f1e345c71c265fb26574793396d","distinct":true,"message":"Fix PM Crash - SnoFox"},{"sha":"d803ab02c5f6a34ce6d9e76492720ba4d3bc6f9f","author":{"name":"David Dixon II","email":"scrapii407@gmail.com"},"url":"https://api.github.com/repos/SnoFox/pyfox/commits/d803ab02c5f6a34ce6d9e76492720ba4d3bc6f9f","distinct":true,"message":"Add more of SnoFox's stuff along with more of mine"},{"sha":"32959db1e945b1e51573193a5db3ee08c4a6ca42","author":{"name":"David Dixon II","email":"scrapii407@gmail.com"},"url":"https://api.github.com/repos/SnoFox/pyfox/commits/32959db1e945b1e51573193a5db3ee08c4a6ca42","distinct":true,"message":"Don't change params when catching PRIVMSG. It messes with sr_"},{"sha":"a1dbc30502b6b6228993283744508ef87d6f18ab","author":{"name":"Josh Johnson","email":"SnoFox@SnoFox.net"},"url":"https://api.github.com/repos/SnoFox/pyfox/commits/a1dbc30502b6b6228993283744508ef87d6f18ab","distinct":true,"message":"Started an internal address list"},{"sha":"1cac61c4925e277d73d369350f0600d0bfa88785","author":{"name":"Josh Johnson","email":"SnoFox@SnoFox.net"},"url":"https://api.github.com/repos/SnoFox/pyfox/commits/1cac61c4925e277d73d369350f0600d0bfa88785","distinct":true,"message":"Merge in upstream changes"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/SnoFox/pyfox","id":3689407,"name":"SnoFox/pyfox"},"id":"1529212875"},{"actor":{"url":"https://api.github.com/users/aust","gravatar_id":"5b454ae06f708bca42185789d991c834","id":403978,"login":"aust"},"type":"PushEvent","created_at":"2012-03-12T20:37:44Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"4a352bdf712b16cb0d72486ac75bb10a46cd634d","size":7,"push_id":66899312,"commits":[{"sha":"da800d0d1d3c426496795f12529639e047226055","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/da800d0d1d3c426496795f12529639e047226055","distinct":true,"message":"Added views for the admin/blog section."},{"sha":"af44cfd4207ee1217b446d34597bfee4e8cf0644","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/af44cfd4207ee1217b446d34597bfee4e8cf0644","distinct":true,"message":"admin/blog/list section now correctly shows blog entries."},{"sha":"3fa88dd2332d78e4827918fc49a479e5af1059e2","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/3fa88dd2332d78e4827918fc49a479e5af1059e2","distinct":true,"message":"Added ActionEdit for admin/blog. Status messages must be implemented."},{"sha":"fae188afad706f8d1edabcb104854b969b1ce217","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/fae188afad706f8d1edabcb104854b969b1ce217","distinct":true,"message":"Added the ability for the admin/blog/edit page to show status messages."},{"sha":"368b1b385c2df91e6dbaf17335f9162cceb6537d","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/368b1b385c2df91e6dbaf17335f9162cceb6537d","distinct":true,"message":"$edit_view is now initialized before status_message is set in admin/blog/entry."},{"sha":"7e858545e18d0116950eaa2c6867da50419d24e9","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/7e858545e18d0116950eaa2c6867da50419d24e9","distinct":true,"message":"$blog_entry is now validated to exist in ActionEdit."},{"sha":"4a352bdf712b16cb0d72486ac75bb10a46cd634d","author":{"name":"Austin Burrow","email":"atburrow@gmail.com"},"url":"https://api.github.com/repos/aust/cms/commits/4a352bdf712b16cb0d72486ac75bb10a46cd634d","distinct":true,"message":"ActionEditSave has been implemented for admin/blog."}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/aust/cms","id":3667874,"name":"aust/cms"},"id":"1529212865"},{"actor":{"url":"https://api.github.com/users/rnarang","gravatar_id":"7181fca158d3d10e9ee8f6c8ec662491","id":1494515,"login":"rnarang"},"type":"CreateEvent","created_at":"2012-03-12T20:37:44Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"master_branch":"master","ref":null,"description":"","ref_type":"repository"},"repo":{"url":"https://api.github.com/repos/rnarang/iStreet","id":3699703,"name":"rnarang/iStreet"},"id":"1529212864"},{"actor":{"url":"https://api.github.com/users/leafpicker","gravatar_id":"4afd41bc3a576f5c5bc3f52d9323efc5","id":1192449,"login":"leafpicker"},"type":"PushEvent","created_at":"2012-03-12T20:37:44Z","public":true,"org":{"url":"https://api.github.com/orgs/"},"payload":{"head":"9db3fd324ba25051478dbfa75d4d3d17941b2b5b","size":1,"push_id":66899310,"commits":[{"sha":"9db3fd324ba25051478dbfa75d4d3d17941b2b5b","author":{"name":"Yuke Zhu","email":"zyk0902@gmail.com"},"url":"https://api.github.com/repos/leafpicker/LifeGameSim/commits/9db3fd324ba25051478dbfa75d4d3d17941b2b5b","distinct":true,"message":"Buffer Limit"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/leafpicker/LifeGameSim","id":3587899,"name":"leafpicker/LifeGameSim"},"id":"1529212861"}] - -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4777'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a04fa7229a3c9b15fab1634fcabc039f"'), ('date', 'Mon, 12 Mar 2012 20:40:45 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"Organization","url":"https://api.github.com/orgs/BeaverSoftware","owned_private_repos":0,"disk_usage":0,"created_at":"2012-02-09T19:20:12Z","email":null,"public_repos":2,"billing_email":"BeaverSoftware@vincent-jacques.net","following":0,"login":"BeaverSoftware","public_gists":0,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","html_url":"https://github.com/BeaverSoftware","private_gists":0,"followers":0,"name":null,"collaborators":0,"plan":{"space":307200,"name":"free","private_repos":0},"location":"Paris, France","id":1424031,"total_private_repos":0,"company":null,"blog":null} - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4776'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"799a1386ab3d19c0628461ef47950094"'), ('date', 'Mon, 12 Mar 2012 20:40:45 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"total_private_repos":5,"type":"User","bio":"","url":"https://api.github.com/users/jacquev6","disk_usage":17576,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","owned_private_repos":5,"collaborators":0,"public_gists":1,"following":24,"blog":"http://vincent-jacques.net","login":"jacquev6","private_gists":2,"html_url":"https://github.com/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","followers":12,"name":"Vincent Jacques","plan":{"collaborators":1,"space":614400,"private_repos":5,"name":"micro"},"public_repos":16,"location":"Paris, France","hireable":false,"id":327146,"company":"Criteo"} - -GET /users/jacquev6/events/orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4775'), ('content-length', '21838'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"3f7f8549b790ac33d32397deae2e5575"'), ('date', 'Mon, 12 Mar 2012 20:40:46 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-04T08:17:15Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub","id":3616888,"name":"BeaverSoftware/CreatedByPyGithub"},"id":"1526182616"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-03T11:16:34Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/CreatedByPyGithub","id":3610173,"name":"BeaverSoftware/CreatedByPyGithub"},"id":"1526021988"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:57:40Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"390bcc2b855d419e9fd6727049aa9217db56a06a","size":1,"push_id":65381113,"ref":"refs/heads/master","commits":[{"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","distinct":true,"message":"This commit was created by PyGithub"}]},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526010140"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:57:39Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","size":2,"push_id":65381112,"ref":"refs/heads/previous_master","commits":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":false,"message":"This commit was created by PyGithub"},{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","distinct":false,"message":"This commit was created by PyGithub"}]},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526010139"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:56:56Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"ref_type":"branch","ref":"previous_master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526010100"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:54:25Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"ref_type":"tag","ref":"tagCreatedByPyGithub"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009934"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:52:06Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","size":1,"push_id":65380919,"commits":[{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009779"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:52:04Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","size":2,"push_id":65380918,"ref":"refs/heads/previous_master","commits":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","distinct":false,"message":"This commit was created by PyGithub"},{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":false,"message":"This commit was created by PyGithub"}]},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009777"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:47:21Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"ref_type":"tag","ref":"tag_1330764175"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009425"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:47:15Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"ref_type":"tag","ref":"a_tag"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009414"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:42:55Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","size":1,"push_id":65380594,"commits":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009059"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:11:55Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","size":1,"push_id":65379432,"commits":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526006647"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:11:13Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","size":1,"push_id":65379410,"commits":[{"sha":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526006609"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:19:32Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595643,"name":"BeaverSoftware/TestPyGithub"},"id":"1525404633"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:19:03Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref":null,"ref_type":"repository","description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595636,"name":"BeaverSoftware/TestPyGithub"},"id":"1525404453"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:16:23Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595613,"name":"BeaverSoftware/TestPyGithub"},"id":"1525403337"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T20:12:55Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref":null,"ref_type":"repository","description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595586,"name":"BeaverSoftware/TestPyGithub"},"id":"1525402258"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-03-01T19:36:29Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3595253,"name":"BeaverSoftware/TestPyGithub"},"id":"1525387859"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-28T20:11:58Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"9473baa2f243872c07c8f008e3d53aed6b5c9ac5","size":1,"push_id":64666710,"commits":[{"sha":"9473baa2f243872c07c8f008e3d53aed6b5c9ac5","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/9473baa2f243872c07c8f008e3d53aed6b5c9ac5","distinct":true,"message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3575047,"name":"BeaverSoftware/TestPyGithub"},"id":"1524541002"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-26T17:28:36Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"ff9cc7d9bcb62d9dbf0784994fe026e9060701ef","size":1,"push_id":64259989,"ref":"refs/heads/master","commits":[{"sha":"ff9cc7d9bcb62d9dbf0784994fe026e9060701ef","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/ff9cc7d9bcb62d9dbf0784994fe026e9060701ef","message":"This commit was ter created by PyGithub"}]},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3553496,"name":"BeaverSoftware/TestPyGithub"},"id":"1523710410"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-26T16:46:35Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"23395b2fa62293196bd8a640b14447c7b552c301","size":1,"push_id":64257074,"commits":[{"sha":"23395b2fa62293196bd8a640b14447c7b552c301","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/23395b2fa62293196bd8a640b14447c7b552c301","message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3553240,"name":"BeaverSoftware/TestPyGithub"},"id":"1523704553"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-25T16:10:21Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"daded682d3a64f70df2e5561783e7282a5cd80a9","size":1,"push_id":64171897,"commits":[{"sha":"daded682d3a64f70df2e5561783e7282a5cd80a9","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/daded682d3a64f70df2e5561783e7282a5cd80a9","message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3545577,"name":"BeaverSoftware/TestPyGithub"},"id":"1523516455"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-02-25T15:39:19Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"73b34d944187f282fa6049cd05b02432488b357b","size":1,"push_id":64169946,"commits":[{"sha":"73b34d944187f282fa6049cd05b02432488b357b","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/73b34d944187f282fa6049cd05b02432488b357b","message":"This commit was ter created by PyGithub"}],"ref":"refs/heads/master"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3545372,"name":"BeaverSoftware/TestPyGithub"},"id":"1523512558"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PushEvent","created_at":"2012-02-25T15:27:57Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"head":"9f2ec52ae9e166d6104834bd0a7f3f9550565100","size":1,"push_id":64169244,"ref":"refs/heads/master","commits":[{"sha":"9f2ec52ae9e166d6104834bd0a7f3f9550565100","author":{"name":"Vincent Jacques","email":"vincent@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/9f2ec52ae9e166d6104834bd0a7f3f9550565100","message":"foo"}]},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3545295,"name":"BeaverSoftware/TestPyGithub"},"id":"1523511231"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"ForkEvent","created_at":"2012-02-16T21:47:45Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"forkee":{"master_branch":null,"name":"FatherBeaver","has_wiki":true,"created_at":"2012-02-16T21:47:44Z","size":0,"clone_url":"https://github.com/jacquev6/FatherBeaver.git","public":true,"watchers":1,"private":false,"updated_at":"2012-02-16T21:47:44Z","url":"https://api.github.com/repos/jacquev6/FatherBeaver","ssh_url":"git@github.com:jacquev6/FatherBeaver.git","fork":true,"git_url":"git://github.com/jacquev6/FatherBeaver.git","language":null,"svn_url":"https://github.com/jacquev6/FatherBeaver","pushed_at":null,"id":3464364,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"","description":"","forks":0,"html_url":"https://github.com/jacquev6/FatherBeaver","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","id":3400397,"name":"BeaverSoftware/FatherBeaver"},"id":"1520524054"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"CreateEvent","created_at":"2012-02-09T19:32:22Z","public":true,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"master_branch":"master","description":"","ref_type":"repository","ref":null},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","id":3400397,"name":"BeaverSoftware/FatherBeaver"},"id":"1518484373"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"TeamAddEvent","created_at":"2012-02-09T19:20:13Z","public":null,"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"payload":{"membership_id":963957,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"team":{"name":"Owners","url":"https://api.github.com/teams/141487","id":141487}},"repo":{"url":"https://api.github.com/repos//","name":"/"},"id":"1518480611"}] - -GET /users/jacquev6/events/orgs/BeaverSoftware?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4774'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:47 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4773'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"319136009a7d4dee7979bbc73391f2d9"'), ('date', 'Mon, 12 Mar 2012 20:40:47 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"collaborators":0,"type":"User","bio":"","url":"https://api.github.com/users/jacquev6","disk_usage":17576,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","total_private_repos":5,"owned_private_repos":5,"public_gists":1,"blog":"http://vincent-jacques.net","following":24,"login":"jacquev6","private_gists":2,"public_repos":16,"html_url":"https://github.com/jacquev6","followers":12,"name":"Vincent Jacques","plan":{"private_repos":5,"collaborators":1,"space":614400,"name":"micro"},"location":"Paris, France","hireable":false,"id":327146,"company":"Criteo"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4772'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d362e31e73c9e38e4132485709492f88"'), ('date', 'Mon, 12 Mar 2012 20:40:48 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_downloads":true,"created_at":"2012-03-03T07:41:19Z","has_issues":true,"master_branch":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","forks":2,"fork":false,"has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","mirror_url":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","size":84,"open_issues":16,"updated_at":"2012-03-04T09:21:39Z","owner":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","id":3609314,"language":null} - -GET /repos/jacquev6/TestPyGithub/events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4771'), ('content-length', '106671'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"fb9bd69e6f5b64719024c3d1f9ac1074"'), ('date', 'Mon, 12 Mar 2012 20:40:49 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DownloadEvent","created_at":"2012-03-04T09:21:35Z","public":true,"payload":{"download":{"name":"DownloadCreatedByPyGithub.txt","size":1024,"created_at":"2012-03-04T09:21:35Z","content_type":"text/plain","url":"https://api.github.com/repos/jacquev6/TestPyGithub/downloads/199118","download_count":0,"id":199118,"description":null,"html_url":"https://github.com/downloads/jacquev6/TestPyGithub/DownloadCreatedByPyGithub.txt"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526187975"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:23Z","public":true,"payload":{"number":25,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":25,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","merged_by":null,"merged":false,"created_at":"2012-03-04T09:06:15Z","changed_files":1,"body":"","title":"Pull request also created by PyGithub","comments":0,"updated_at":"2012-03-04T09:06:23Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","id":924866,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch","mergeable":true,"closed_at":"2012-03-04T09:06:23Z","merged_at":null,"commits":5,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"review_comments":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":16,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186828"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestReviewCommentEvent","created_at":"2012-03-04T09:06:19Z","public":true,"payload":{"comment":{"position":1,"created_at":"2012-03-04T09:06:19Z","body":"Comment created by PyGithub","updated_at":"2012-03-04T09:06:19Z","commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","id":515515,"path":"foo.bar","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186822"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:15Z","public":true,"payload":{"number":25,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":25,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","changed_files":1,"merged":false,"merged_by":null,"created_at":"2012-03-04T09:06:15Z","body":"","title":"Pull request also created by PyGithub","comments":0,"updated_at":"2012-03-04T09:06:15Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"id":924866,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":5,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":17,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186820"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:14Z","public":true,"payload":{"number":24,"pull_request":{"head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":24,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","created_at":"2012-03-04T09:06:12Z","merged":false,"changed_files":1,"merged_by":null,"body":"","title":"Pull request created by PyGithub","comments":0,"additions":1,"updated_at":"2012-03-04T09:06:13Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"}},"id":924865,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch","mergeable":true,"commits":5,"merged_at":null,"closed_at":"2012-03-04T09:06:13Z","deletions":0,"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":16,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186816"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:13Z","public":true,"payload":{"number":24,"pull_request":{"head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":24,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","created_at":"2012-03-04T09:06:12Z","merged":false,"changed_files":1,"merged_by":null,"body":"","title":"Pull request created by PyGithub","comments":0,"additions":1,"updated_at":"2012-03-04T09:06:12Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"}},"id":924865,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch","mergeable":true,"merged_at":null,"commits":5,"closed_at":null,"deletions":0,"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":17,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186814"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:03:32Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"merged":false,"changed_files":1,"created_at":"2012-03-04T09:00:46Z","comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","updated_at":"2012-03-04T09:03:32Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T09:03:32Z","commits":5,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":16,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186613"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:03:32Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"open_issues":0,"mirror_url":null,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T09:00:46Z","merged":false,"comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","updated_at":"2012-03-04T09:03:29Z","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"open_issues":17,"mirror_url":null,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"reopened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186610"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:54Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"language":null,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T09:00:46Z","merged":false,"comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","updated_at":"2012-03-04T09:00:54Z","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T09:00:54Z","commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"language":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":16,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186376"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestReviewCommentEvent","created_at":"2012-03-04T09:00:50Z","public":true,"payload":{"comment":{"position":1,"created_at":"2012-03-04T09:00:50Z","body":"Comment created by PyGithub","updated_at":"2012-03-04T09:00:50Z","commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515513","id":515513,"path":"foo.bar","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186369"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:48Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"changed_files":1,"merged":false,"created_at":"2012-03-04T09:00:46Z","comments":0,"body":"","title":"Pull request also created by PyGithub","updated_at":"2012-03-04T09:00:46Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":true,"closed_at":null,"commits":5,"merged_at":null,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":17,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186364"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:46Z","public":true,"payload":{"number":22,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":22,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/22","merged":false,"merged_by":null,"created_at":"2012-03-04T09:00:43Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T09:00:45Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/22.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/22"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/22/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22","id":924859,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/22.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T09:00:45Z","commits":5,"deletions":0,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/22","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","mirror_url":null,"open_issues":16,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186358"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:44Z","public":true,"payload":{"number":22,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":22,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/22","merged_by":null,"merged":false,"created_at":"2012-03-04T09:00:43Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T09:00:43Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/22.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/22"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/22/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22","id":924859,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/22.patch","mergeable":null,"closed_at":null,"merged_at":null,"commits":5,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/22","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"review_comments":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":17,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186354"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:58:46Z","public":true,"payload":{"number":21,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","language":null,"fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":21,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/21","merged_by":null,"merged":false,"created_at":"2012-03-04T08:57:13Z","changed_files":1,"body":"","title":"Pull request also created by PyGithub","comments":0,"updated_at":"2012-03-04T08:58:46Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/21.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/21"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21","id":924857,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/21.patch","mergeable":true,"closed_at":"2012-03-04T08:58:46Z","commits":5,"merged_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/21","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"review_comments":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","language":null,"fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":16,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186171"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:57:13Z","public":true,"payload":{"number":21,"pull_request":{"number":21,"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"has_wiki":true,"size":112,"created_at":"2012-03-03T07:53:19Z","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","private":false,"watchers":1,"updated_at":"2012-03-03T08:57:40Z","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","language":null,"fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","has_downloads":true,"open_issues":0,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/21","merged_by":null,"created_at":"2012-03-04T08:57:13Z","changed_files":1,"merged":false,"title":"Pull request also created by PyGithub","comments":0,"body":"","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/21.diff","updated_at":"2012-03-04T08:57:13Z","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/21"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21/comments"}},"id":924857,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/21.patch","mergeable":null,"merged_at":null,"commits":5,"closed_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/21","review_comments":0,"deletions":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"has_wiki":true,"size":84,"created_at":"2012-03-03T07:41:19Z","clone_url":"https://github.com/jacquev6/TestPyGithub.git","private":false,"watchers":1,"updated_at":"2012-03-03T07:53:19Z","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","git_url":"git://github.com/jacquev6/TestPyGithub.git","language":null,"fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","has_downloads":true,"open_issues":17,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186026"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:57:12Z","public":true,"payload":{"number":20,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":20,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/20","merged":false,"merged_by":null,"created_at":"2012-03-04T08:57:10Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T08:57:11Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/20.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/20"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20","id":924856,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/20.patch","mergeable":true,"commits":5,"merged_at":null,"closed_at":"2012-03-04T08:57:11Z","review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/20","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":16,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186023"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:57:11Z","public":true,"payload":{"number":20,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":20,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/20","merged":false,"merged_by":null,"created_at":"2012-03-04T08:57:10Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T08:57:10Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/20.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/20"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20","id":924856,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/20.patch","mergeable":null,"commits":5,"merged_at":null,"closed_at":null,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/20","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":17,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186021"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:56:43Z","public":true,"payload":{"number":19,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/19","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":19,"merged_by":null,"merged":false,"changed_files":1,"created_at":"2012-03-04T08:53:29Z","comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/19.diff","updated_at":"2012-03-04T08:56:43Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/19"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19","id":924849,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/19.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T08:56:43Z","commits":5,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/19","deletions":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":16,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185981"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:30Z","public":true,"payload":{"number":19,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/19","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"open_issues":0,"mirror_url":null,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":19,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T08:53:29Z","merged":false,"comments":0,"body":"","title":"Pull request also created by PyGithub","updated_at":"2012-03-04T08:53:29Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/19.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/19"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19","id":924849,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/19.patch","mergeable":true,"closed_at":null,"commits":5,"merged_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/19","deletions":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"open_issues":17,"mirror_url":null,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185612"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:28Z","public":true,"payload":{"number":18,"pull_request":{"head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":18,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/18","created_at":"2012-03-04T08:53:27Z","merged":false,"changed_files":1,"merged_by":null,"body":"","title":"Pull request created by PyGithub","comments":0,"additions":1,"updated_at":"2012-03-04T08:53:28Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/18.diff","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/18"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18/comments"}},"id":924848,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/18.patch","mergeable":true,"merged_at":null,"commits":5,"closed_at":"2012-03-04T08:53:28Z","deletions":0,"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/18","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":16,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185609"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:27Z","public":true,"payload":{"number":18,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/18","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":18,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T08:53:27Z","merged":false,"comments":0,"body":"","title":"Pull request created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/18.diff","updated_at":"2012-03-04T08:53:27Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/18"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18","id":924848,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/18.patch","mergeable":null,"closed_at":null,"merged_at":null,"commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/18","deletions":0,"review_comments":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":17,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185607"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:11Z","public":true,"payload":{"number":17,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/17","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":17,"merged_by":null,"changed_files":1,"merged":false,"created_at":"2012-03-04T08:43:07Z","comments":0,"body":"","title":"Pull request created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/17.diff","updated_at":"2012-03-04T08:53:11Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/17"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17","id":924842,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/17.patch","mergeable":true,"closed_at":"2012-03-04T08:53:11Z","merged_at":null,"commits":5,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/17","deletions":0,"review_comments":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":16,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185583"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:43:08Z","public":true,"payload":{"number":17,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/17","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":17,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T08:43:07Z","merged":false,"comments":0,"body":"","title":"Pull request created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/17.diff","updated_at":"2012-03-04T08:43:07Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/17"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17","id":924842,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/17.patch","mergeable":null,"closed_at":null,"merged_at":null,"commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/17","deletions":0,"review_comments":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":17,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526184567"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:35:57Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:35:57Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:35:57Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039846","id":1039846,"path":"ReadMe.md","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039846"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526184045"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:35:55Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:35:55Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:35:55Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","id":1039845,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526184043"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:34:50Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:34:50Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:34:50Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","id":1039843,"path":"ReadMe.md","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183983"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:34:49Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:34:49Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:34:49Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","id":1039842,"path":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183980"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:33:53Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:33:53Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:33:53Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","id":1039839,"path":"ReadMe.md","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183908"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:33:52Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:33:52Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:33:52Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039838","id":1039838,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039838"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183906"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:32:17Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:32:17Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:32:17Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","id":1039835,"path":"ReadMe.md","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183789"}] - -GET /repos/jacquev6/TestPyGithub/events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4770'), ('content-length', '38879'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"238c1a98d13e0246fc1dc7ba9a3bff26"'), ('date', 'Mon, 12 Mar 2012 20:40:50 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:32:17Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:32:17Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:32:17Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039834","id":1039834,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039834"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183787"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:31:38Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:31:38Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:31:38Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039833","id":1039833,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039833"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183746"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:30:50Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:30:50Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:30:50Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039832","id":1039832,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039832"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183704"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"MemberEvent","created_at":"2012-03-04T08:21:39Z","public":true,"payload":{"action":"added","member":{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/Lyloa","id":1131432,"login":"Lyloa"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526182903"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T11:09:17Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T11:09:17Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T11:09:17Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300027","id":4300027,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":16,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:09:14Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T11:09:17Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16","id":3489023,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/16","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526021343"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T11:09:16Z","public":true,"payload":{"action":"opened","issue":{"number":16,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:09:14Z","comments":0,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T11:09:16Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16","id":3489023,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/16","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526021337"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T11:08:03Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T11:08:02Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T11:08:02Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300021","id":4300021,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":15,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:07:59Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T11:08:02Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15","id":3489016,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/15","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526021244"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T11:08:00Z","public":true,"payload":{"action":"opened","issue":{"number":15,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:07:59Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T11:07:59Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15","id":3489016,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/15","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526021242"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T11:05:44Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T11:05:43Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T11:05:43Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300011","id":4300011,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":14,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:05:41Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T11:05:43Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14","id":3489009,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/issues/14","labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526021060"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T11:05:42Z","public":true,"payload":{"action":"opened","issue":{"number":14,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:05:41Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T11:05:41Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14","id":3489009,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/14","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526021058"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T11:04:24Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T11:04:24Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T11:04:24Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300005","id":4300005,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":13,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:04:22Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T11:04:24Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13","id":3489005,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/13","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020964"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T11:04:22Z","public":true,"payload":{"action":"opened","issue":{"number":13,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T11:04:22Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T11:04:22Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13","id":3489005,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/issues/13","labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020960"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T10:59:01Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T10:59:00Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T10:59:00Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4299977","id":4299977,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":12,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:58:52Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:59:00Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12","id":3488992,"assignee":null,"milestone":{"number":1,"created_at":"2012-03-03T10:58:55Z","due_on":null,"title":"Milestone edited by PyGithub","creator":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","open_issues":1,"closed_issues":0,"description":null,"state":"open"},"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/issues/12","labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020508"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:58:52Z","public":true,"payload":{"action":"opened","issue":{"number":12,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:58:52Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:58:52Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12","id":3488992,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/12","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020500"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T10:58:16Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T10:58:15Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T10:58:15Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4299970","id":4299970,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":11,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:58:08Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:58:15Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11","id":3488985,"assignee":null,"milestone":{"number":1,"created_at":"2012-03-03T10:58:10Z","due_on":null,"title":"Milestone edited by PyGithub","creator":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","open_issues":1,"closed_issues":0,"description":null,"state":"open"},"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/issues/11","labels":[],"state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020440"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:58:08Z","public":true,"payload":{"action":"opened","issue":{"number":11,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:58:08Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:58:08Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11","id":3488985,"assignee":null,"milestone":null,"closed_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/11","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020428"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssueCommentEvent","created_at":"2012-03-03T10:57:34Z","public":true,"payload":{"comment":{"created_at":"2012-03-03T10:57:32Z","body":"Comment created by PyGithub","updated_at":"2012-03-03T10:57:32Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4299964","id":4299964,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"action":"created","issue":{"number":10,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:57:24Z","comments":1,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:57:32Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10","id":3488983,"assignee":null,"milestone":{"number":1,"created_at":"2012-03-03T10:57:27Z","due_on":null,"title":"Milestone edited by PyGithub","creator":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","closed_issues":0,"open_issues":1,"description":null,"state":"open"},"closed_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/10","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020376"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:57:24Z","public":true,"payload":{"action":"opened","issue":{"number":10,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:57:24Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:57:24Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10","id":3488983,"assignee":null,"milestone":null,"closed_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/10","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526020366"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:52:33Z","public":true,"payload":{"action":"opened","issue":{"number":9,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:52:32Z","comments":0,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:52:33Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/9","id":3488962,"assignee":null,"milestone":null,"closed_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/9","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526019924"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:49:16Z","public":true,"payload":{"action":"opened","issue":{"number":8,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:49:14Z","comments":0,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:49:16Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/8","id":3488955,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/8","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526019638"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:46:56Z","public":true,"payload":{"action":"opened","issue":{"number":7,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:46:56Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:46:56Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/7","id":3488943,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/7","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526019456"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:44:30Z","public":true,"payload":{"action":"opened","issue":{"number":6,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:44:30Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:44:30Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/6","id":3488933,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/6","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526019276"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:43:39Z","public":true,"payload":{"action":"opened","issue":{"number":5,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:43:37Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:43:37Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/5","id":3488930,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/5","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526019207"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:38:44Z","public":true,"payload":{"action":"opened","issue":{"number":4,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:38:43Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:38:43Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/4","id":3488906,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/4","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526018698"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:36:44Z","public":true,"payload":{"action":"opened","issue":{"number":3,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:36:41Z","comments":0,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:36:42Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/3","id":3488891,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/3","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526018510"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:36:17Z","public":true,"payload":{"action":"opened","issue":{"number":2,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:36:15Z","comments":0,"body":"Issue edited by PyGithub","title":"Issue created by PyGithub","updated_at":"2012-03-03T10:36:16Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/2","id":3488887,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/2","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526018472"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"IssuesEvent","created_at":"2012-03-03T10:33:50Z","public":true,"payload":{"action":"opened","issue":{"number":1,"pull_request":{"diff_url":null,"patch_url":null,"html_url":null},"created_at":"2012-03-03T10:33:50Z","comments":0,"body":null,"title":"Issue created by PyGithub","updated_at":"2012-03-03T10:33:50Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/1","id":3488878,"assignee":null,"milestone":null,"closed_at":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"labels":[],"html_url":"https://github.com/jacquev6/TestPyGithub/issues/1","state":"open"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526018266"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"ForkEvent","created_at":"2012-03-03T07:53:19Z","public":true,"payload":{"forkee":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":84,"public":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526005234"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CreateEvent","created_at":"2012-03-03T07:43:16Z","public":true,"payload":{"master_branch":"master","ref_type":"branch","description":"Guinea-pig for PyGithub testing","ref":"master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526004485"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CreateEvent","created_at":"2012-03-03T07:41:20Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":"Guinea-pig for PyGithub testing"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526004228"}] - -GET /repos/jacquev6/TestPyGithub/events?page=3 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4769'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:40:51 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4768'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"563ebe7b2e6d0115011a0de5b7216aba"'), ('date', 'Mon, 12 Mar 2012 20:40:52 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"User","url":"https://api.github.com/users/jacquev6","owned_private_repos":5,"disk_usage":17576,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","public_repos":16,"following":24,"login":"jacquev6","public_gists":1,"hireable":false,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","html_url":"https://github.com/jacquev6","private_gists":2,"followers":12,"name":"Vincent Jacques","bio":"","collaborators":0,"plan":{"space":614400,"name":"micro","private_repos":5,"collaborators":1},"location":"Paris, France","id":327146,"total_private_repos":5,"company":"Criteo","blog":"http://vincent-jacques.net"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4767'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"39d79315ff35ca303b8b191a86433a98"'), ('date', 'Mon, 12 Mar 2012 20:40:52 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_downloads":true,"created_at":"2012-03-03T07:41:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","has_issues":true,"master_branch":null,"description":"Guinea-pig for PyGithub testing","forks":2,"fork":false,"mirror_url":null,"has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","size":84,"open_issues":16,"updated_at":"2012-03-04T09:21:39Z","owner":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","id":3609314,"language":null} - -GET /repos/jacquev6/TestPyGithub/issues/events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4766'), ('content-length', '41119'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last"'), ('etag', '"1df33ef2bdec5814e8df24aa18031242"'), ('date', 'Mon, 12 Mar 2012 20:40:53 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693379","created_at":"2012-03-04T09:06:23Z","event":"closed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25","created_at":"2012-03-04T09:06:15Z","assignee":null,"milestone":null,"labels":[],"number":25,"body":"","closed_at":"2012-03-04T09:06:23Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/25","updated_at":"2012-03-04T09:06:23Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch"},"id":3495132,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693379},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693376","created_at":"2012-03-04T09:06:15Z","event":"subscribed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25","created_at":"2012-03-04T09:06:15Z","assignee":null,"milestone":null,"labels":[],"number":25,"body":"","closed_at":"2012-03-04T09:06:23Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/25","updated_at":"2012-03-04T09:06:23Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch"},"id":3495132,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693376},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693373","created_at":"2012-03-04T09:06:13Z","event":"closed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24","created_at":"2012-03-04T09:06:12Z","assignee":null,"milestone":null,"labels":[],"number":24,"body":"","closed_at":"2012-03-04T09:06:13Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/24","updated_at":"2012-03-04T09:06:13Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch"},"id":3495131,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693373},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693372","created_at":"2012-03-04T09:06:12Z","event":"subscribed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24","created_at":"2012-03-04T09:06:12Z","assignee":null,"milestone":null,"labels":[],"number":24,"body":"","closed_at":"2012-03-04T09:06:13Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/24","updated_at":"2012-03-04T09:06:13Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch"},"id":3495131,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693372},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693330","created_at":"2012-03-04T09:03:32Z","event":"closed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23","created_at":"2012-03-04T09:00:46Z","assignee":null,"milestone":null,"labels":[],"number":23,"body":"","closed_at":"2012-03-04T09:03:32Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/23","updated_at":"2012-03-04T09:03:32Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch"},"id":3495116,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693330},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693326","created_at":"2012-03-04T09:03:29Z","event":"reopened","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23","created_at":"2012-03-04T09:00:46Z","assignee":null,"milestone":null,"labels":[],"number":23,"body":"","closed_at":"2012-03-04T09:03:32Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/23","updated_at":"2012-03-04T09:03:32Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch"},"id":3495116,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693326},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693287","created_at":"2012-03-04T09:00:54Z","event":"closed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23","created_at":"2012-03-04T09:00:46Z","assignee":null,"milestone":null,"labels":[],"number":23,"body":"","closed_at":"2012-03-04T09:03:32Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/23","updated_at":"2012-03-04T09:03:32Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch"},"id":3495116,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693287},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693286","created_at":"2012-03-04T09:00:46Z","event":"subscribed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23","created_at":"2012-03-04T09:00:46Z","assignee":null,"milestone":null,"labels":[],"number":23,"body":"","closed_at":"2012-03-04T09:03:32Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/23","updated_at":"2012-03-04T09:03:32Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch"},"id":3495116,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693286},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693285","created_at":"2012-03-04T09:00:45Z","event":"closed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/22","created_at":"2012-03-04T09:00:43Z","assignee":null,"milestone":null,"labels":[],"number":22,"body":"","closed_at":"2012-03-04T09:00:45Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/22","updated_at":"2012-03-04T09:00:45Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/22.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/22","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/22.patch"},"id":3495115,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693285},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693284","created_at":"2012-03-04T09:00:43Z","event":"subscribed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/22","created_at":"2012-03-04T09:00:43Z","assignee":null,"milestone":null,"labels":[],"number":22,"body":"","closed_at":"2012-03-04T09:00:45Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/22","updated_at":"2012-03-04T09:00:45Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/22.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/22","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/22.patch"},"id":3495115,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693284},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693240","created_at":"2012-03-04T08:58:46Z","event":"closed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/21","created_at":"2012-03-04T08:57:13Z","assignee":null,"milestone":null,"labels":[],"number":21,"body":"","closed_at":"2012-03-04T08:58:46Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/21","updated_at":"2012-03-04T08:58:46Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/21.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/21","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/21.patch"},"id":3495098,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693240},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693220","created_at":"2012-03-04T08:57:13Z","event":"subscribed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/21","created_at":"2012-03-04T08:57:13Z","assignee":null,"milestone":null,"labels":[],"number":21,"body":"","closed_at":"2012-03-04T08:58:46Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/21","updated_at":"2012-03-04T08:58:46Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/21.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/21","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/21.patch"},"id":3495098,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693220},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693219","created_at":"2012-03-04T08:57:11Z","event":"closed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/20","created_at":"2012-03-04T08:57:10Z","assignee":null,"milestone":null,"labels":[],"number":20,"body":"","closed_at":"2012-03-04T08:57:11Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/20","updated_at":"2012-03-04T08:57:11Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/20.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/20","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/20.patch"},"id":3495097,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693219},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693218","created_at":"2012-03-04T08:57:10Z","event":"subscribed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/20","created_at":"2012-03-04T08:57:10Z","assignee":null,"milestone":null,"labels":[],"number":20,"body":"","closed_at":"2012-03-04T08:57:11Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/20","updated_at":"2012-03-04T08:57:11Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/20.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/20","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/20.patch"},"id":3495097,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693218},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693212","created_at":"2012-03-04T08:56:43Z","event":"closed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/19","created_at":"2012-03-04T08:53:29Z","assignee":null,"milestone":null,"labels":[],"number":19,"body":"","closed_at":"2012-03-04T08:56:43Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/19","updated_at":"2012-03-04T08:56:43Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/19.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/19","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/19.patch"},"id":3495086,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693212},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693175","created_at":"2012-03-04T08:53:29Z","event":"subscribed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/19","created_at":"2012-03-04T08:53:29Z","assignee":null,"milestone":null,"labels":[],"number":19,"body":"","closed_at":"2012-03-04T08:56:43Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/19","updated_at":"2012-03-04T08:56:43Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/19.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/19","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/19.patch"},"id":3495086,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693175},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693174","created_at":"2012-03-04T08:53:28Z","event":"closed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/18","created_at":"2012-03-04T08:53:27Z","assignee":null,"milestone":null,"labels":[],"number":18,"body":"","closed_at":"2012-03-04T08:53:28Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/18","updated_at":"2012-03-04T08:53:28Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/18.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/18","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/18.patch"},"id":3495085,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693174},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693173","created_at":"2012-03-04T08:53:27Z","event":"subscribed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/18","created_at":"2012-03-04T08:53:27Z","assignee":null,"milestone":null,"labels":[],"number":18,"body":"","closed_at":"2012-03-04T08:53:28Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/18","updated_at":"2012-03-04T08:53:28Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/18.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/18","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/18.patch"},"id":3495085,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693173},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693170","created_at":"2012-03-04T08:53:11Z","event":"closed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/17","created_at":"2012-03-04T08:43:07Z","assignee":null,"milestone":null,"labels":[],"number":17,"body":"","closed_at":"2012-03-04T08:53:11Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/17","updated_at":"2012-03-04T08:53:11Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/17.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/17","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/17.patch"},"id":3495069,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693170},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693055","created_at":"2012-03-04T08:43:07Z","event":"subscribed","issue":{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/17","created_at":"2012-03-04T08:43:07Z","assignee":null,"milestone":null,"labels":[],"number":17,"body":"","closed_at":"2012-03-04T08:53:11Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/17","updated_at":"2012-03-04T08:53:11Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/17.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/17","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/17.patch"},"id":3495069,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693055},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10670005","created_at":"2012-03-03T11:09:14Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16","created_at":"2012-03-03T11:09:14Z","assignee":null,"milestone":null,"labels":[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}],"number":16,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/16","updated_at":"2012-03-03T11:09:25Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3489023,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10670005},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669989","created_at":"2012-03-03T11:07:59Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15","created_at":"2012-03-03T11:07:59Z","assignee":null,"milestone":null,"labels":[],"number":15,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/15","updated_at":"2012-03-03T11:08:10Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3489016,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669989},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669967","created_at":"2012-03-03T11:05:41Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14","created_at":"2012-03-03T11:05:41Z","assignee":null,"milestone":null,"labels":[],"number":14,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/14","updated_at":"2012-03-03T11:05:51Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3489009,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669967},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669961","created_at":"2012-03-03T11:04:22Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13","created_at":"2012-03-03T11:04:22Z","assignee":null,"milestone":null,"labels":[],"number":13,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/13","updated_at":"2012-03-03T11:04:24Z","comments":1,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3489005,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669961},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669915","created_at":"2012-03-03T10:58:52Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12","created_at":"2012-03-03T10:58:52Z","assignee":null,"milestone":null,"labels":[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}],"number":12,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/12","updated_at":"2012-03-03T10:59:00Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3488992,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669915},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669897","created_at":"2012-03-03T10:58:08Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11","created_at":"2012-03-03T10:58:08Z","assignee":null,"milestone":null,"labels":[],"number":11,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/11","updated_at":"2012-03-03T10:58:15Z","comments":1,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3488985,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669897},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669887","created_at":"2012-03-03T10:57:24Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10","created_at":"2012-03-03T10:57:24Z","assignee":null,"milestone":null,"labels":[],"number":10,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/10","updated_at":"2012-03-03T10:57:32Z","comments":1,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3488983,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669887},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669817","created_at":"2012-03-03T10:52:32Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/9","created_at":"2012-03-03T10:52:32Z","assignee":null,"milestone":null,"labels":[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}],"number":9,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/9","updated_at":"2012-03-03T10:52:38Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3488962,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669817},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669756","created_at":"2012-03-03T10:49:14Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/8","created_at":"2012-03-03T10:49:14Z","assignee":null,"milestone":null,"labels":[],"number":8,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/8","updated_at":"2012-03-03T10:49:19Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3488955,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669756},{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669715","created_at":"2012-03-03T10:46:56Z","event":"subscribed","issue":{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/7","created_at":"2012-03-03T10:46:56Z","assignee":null,"milestone":null,"labels":[],"number":7,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/7","updated_at":"2012-03-03T10:47:00Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3488943,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10669715}] - -GET /repos/jacquev6/TestPyGithub/issues/events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4765'), ('content-length', '7465'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="first", ; rel="prev"'), ('etag', '"a4043da404d7280b6da939cc098271be"'), ('date', 'Mon, 12 Mar 2012 20:40:55 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669681","created_at":"2012-03-03T10:44:30Z","issue":{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/6","created_at":"2012-03-03T10:44:30Z","milestone":null,"labels":[],"number":6,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/6","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-03T10:44:34Z","comments":0,"state":"open","id":3488933,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}},"commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10669681},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669665","created_at":"2012-03-03T10:43:37Z","issue":{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/5","created_at":"2012-03-03T10:43:37Z","milestone":null,"labels":[],"number":5,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/5","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-03T10:43:42Z","comments":0,"state":"open","id":3488930,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}},"commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10669665},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669534","created_at":"2012-03-03T10:38:43Z","issue":{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/4","created_at":"2012-03-03T10:38:43Z","milestone":null,"labels":[],"number":4,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/4","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-03T10:38:47Z","comments":0,"state":"open","id":3488906,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}},"commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10669534},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669470","created_at":"2012-03-03T10:36:41Z","issue":{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/3","created_at":"2012-03-03T10:36:41Z","milestone":null,"labels":[],"number":3,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/3","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-03T10:36:42Z","comments":0,"state":"open","id":3488891,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}},"commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10669470},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669460","created_at":"2012-03-03T10:36:15Z","issue":{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/2","created_at":"2012-03-03T10:36:15Z","milestone":null,"labels":[],"number":2,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/2","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-03T10:36:16Z","comments":0,"state":"open","id":3488887,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}},"commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10669460},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10669416","created_at":"2012-03-03T10:33:50Z","issue":{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/1","created_at":"2012-03-03T10:33:50Z","milestone":null,"labels":[],"number":1,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/1","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-03T10:33:51Z","comments":0,"state":"open","id":3488878,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}},"commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10669416}] - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4764'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3cb42a900190a26e5a0fa0381b7c93b8"'), ('date', 'Mon, 12 Mar 2012 20:40:55 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"total_private_repos":5,"type":"User","url":"https://api.github.com/users/jacquev6","public_repos":16,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","owned_private_repos":5,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","plan":{"private_repos":5,"space":614400,"collaborators":1,"name":"micro"},"following":24,"login":"jacquev6","html_url":"https://github.com/jacquev6","followers":12,"hireable":false,"collaborators":0,"public_gists":1,"name":"Vincent Jacques","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","location":"Paris, France","bio":"","id":327146,"private_gists":2,"disk_usage":17576,"company":"Criteo","blog":"http://vincent-jacques.net"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4763'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"376c3d9c88b7b7685f0baf46a318d3d1"'), ('date', 'Mon, 12 Mar 2012 20:40:56 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"has_downloads":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","mirror_url":null,"has_issues":true,"master_branch":null,"created_at":"2012-03-03T07:41:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"description":"Guinea-pig for PyGithub testing","has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"html_url":"https://github.com/jacquev6/TestPyGithub","private":false,"homepage":"http://vincent-jacques.net/PyGithub","size":84,"open_issues":16,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","updated_at":"2012-03-04T09:21:39Z","owner":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","id":3609314,"language":null} - -GET /repos/jacquev6/TestPyGithub/issues/events/10693379 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4762'), ('content-length', '1399'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f8931f4b6b4695194c1315662752980a"'), ('date', 'Mon, 12 Mar 2012 20:40:57 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"commit_id":null,"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693379","created_at":"2012-03-04T09:06:23Z","event":"closed","issue":{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25","created_at":"2012-03-04T09:06:15Z","assignee":null,"milestone":null,"labels":[],"number":25,"body":"","closed_at":"2012-03-04T09:06:23Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/25","updated_at":"2012-03-04T09:06:23Z","comments":0,"state":"closed","pull_request":{"diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch"},"id":3495132,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"id":10693379} - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4761'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0806ed9cb560b7d7ac80e9ae3198d91d"'), ('date', 'Mon, 12 Mar 2012 20:40:57 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/jacquev6","type":"User","url":"https://api.github.com/users/jacquev6","disk_usage":17576,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","public_repos":16,"total_private_repos":5,"public_gists":1,"blog":"http://vincent-jacques.net","owned_private_repos":5,"private_gists":2,"following":24,"hireable":false,"login":"jacquev6","bio":"","followers":12,"name":"Vincent Jacques","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","plan":{"private_repos":5,"space":614400,"name":"micro","collaborators":1},"location":"Paris, France","id":327146,"collaborators":0,"company":"Criteo"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4760'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d362e31e73c9e38e4132485709492f88"'), ('date', 'Mon, 12 Mar 2012 20:40:58 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_downloads":true,"created_at":"2012-03-03T07:41:19Z","has_issues":true,"master_branch":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","forks":2,"fork":false,"has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","mirror_url":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","size":84,"open_issues":16,"updated_at":"2012-03-04T09:21:39Z","owner":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","id":3609314,"language":null} - -GET /networks/jacquev6/TestPyGithub/events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4759'), ('content-length', '106671'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next"'), ('etag', '"fb9bd69e6f5b64719024c3d1f9ac1074"'), ('date', 'Mon, 12 Mar 2012 20:40:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DownloadEvent","created_at":"2012-03-04T09:21:35Z","public":true,"payload":{"download":{"name":"DownloadCreatedByPyGithub.txt","size":1024,"created_at":"2012-03-04T09:21:35Z","content_type":"text/plain","url":"https://api.github.com/repos/jacquev6/TestPyGithub/downloads/199118","download_count":0,"id":199118,"description":null,"html_url":"https://github.com/downloads/jacquev6/TestPyGithub/DownloadCreatedByPyGithub.txt"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526187975"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:23Z","public":true,"payload":{"number":25,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":25,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","merged_by":null,"merged":false,"created_at":"2012-03-04T09:06:15Z","changed_files":1,"body":"","title":"Pull request also created by PyGithub","comments":0,"updated_at":"2012-03-04T09:06:23Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","id":924866,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch","mergeable":true,"closed_at":"2012-03-04T09:06:23Z","merged_at":null,"commits":5,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"review_comments":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":16,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186828"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestReviewCommentEvent","created_at":"2012-03-04T09:06:19Z","public":true,"payload":{"comment":{"position":1,"created_at":"2012-03-04T09:06:19Z","body":"Comment created by PyGithub","updated_at":"2012-03-04T09:06:19Z","commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","id":515515,"path":"foo.bar","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186822"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:15Z","public":true,"payload":{"number":25,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":25,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","changed_files":1,"merged":false,"merged_by":null,"created_at":"2012-03-04T09:06:15Z","body":"","title":"Pull request also created by PyGithub","comments":0,"updated_at":"2012-03-04T09:06:15Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"id":924866,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":5,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":17,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186820"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:14Z","public":true,"payload":{"number":24,"pull_request":{"head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":24,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","created_at":"2012-03-04T09:06:12Z","merged":false,"changed_files":1,"merged_by":null,"body":"","title":"Pull request created by PyGithub","comments":0,"additions":1,"updated_at":"2012-03-04T09:06:13Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"}},"id":924865,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch","mergeable":true,"commits":5,"merged_at":null,"closed_at":"2012-03-04T09:06:13Z","deletions":0,"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":16,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186816"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:06:13Z","public":true,"payload":{"number":24,"pull_request":{"head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":24,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","created_at":"2012-03-04T09:06:12Z","merged":false,"changed_files":1,"merged_by":null,"body":"","title":"Pull request created by PyGithub","comments":0,"additions":1,"updated_at":"2012-03-04T09:06:12Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"}},"id":924865,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch","mergeable":true,"merged_at":null,"commits":5,"closed_at":null,"deletions":0,"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":17,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186814"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:03:32Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"merged":false,"changed_files":1,"created_at":"2012-03-04T09:00:46Z","comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","updated_at":"2012-03-04T09:03:32Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T09:03:32Z","commits":5,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":16,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186613"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:03:32Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"open_issues":0,"mirror_url":null,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T09:00:46Z","merged":false,"comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","updated_at":"2012-03-04T09:03:29Z","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":null,"merged_at":null,"closed_at":null,"commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"open_issues":17,"mirror_url":null,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"reopened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186610"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:54Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"language":null,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T09:00:46Z","merged":false,"comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","updated_at":"2012-03-04T09:00:54Z","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T09:00:54Z","commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"language":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":16,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186376"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestReviewCommentEvent","created_at":"2012-03-04T09:00:50Z","public":true,"payload":{"comment":{"position":1,"created_at":"2012-03-04T09:00:50Z","body":"Comment created by PyGithub","updated_at":"2012-03-04T09:00:50Z","commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515513","id":515513,"path":"foo.bar","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186369"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:48Z","public":true,"payload":{"number":23,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/23","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":23,"merged_by":null,"changed_files":1,"merged":false,"created_at":"2012-03-04T09:00:46Z","comments":0,"body":"","title":"Pull request also created by PyGithub","updated_at":"2012-03-04T09:00:46Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/23"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/23","id":924860,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","mergeable":true,"closed_at":null,"commits":5,"merged_at":null,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","deletions":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":17,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186364"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:46Z","public":true,"payload":{"number":22,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","mirror_url":null,"open_issues":0,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":22,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/22","merged":false,"merged_by":null,"created_at":"2012-03-04T09:00:43Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T09:00:45Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/22.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/22"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/22/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22","id":924859,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/22.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T09:00:45Z","commits":5,"deletions":0,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/22","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","mirror_url":null,"open_issues":16,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186358"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T09:00:44Z","public":true,"payload":{"number":22,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":22,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/22","merged_by":null,"merged":false,"created_at":"2012-03-04T09:00:43Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T09:00:43Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/22.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/22"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/22/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/22","id":924859,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/22.patch","mergeable":null,"closed_at":null,"merged_at":null,"commits":5,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/22","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"review_comments":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":17,"has_downloads":true,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186354"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:58:46Z","public":true,"payload":{"number":21,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","language":null,"fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":21,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/21","merged_by":null,"merged":false,"created_at":"2012-03-04T08:57:13Z","changed_files":1,"body":"","title":"Pull request also created by PyGithub","comments":0,"updated_at":"2012-03-04T08:58:46Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/21.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/21"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21","id":924857,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/21.patch","mergeable":true,"closed_at":"2012-03-04T08:58:46Z","commits":5,"merged_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/21","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"review_comments":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","language":null,"fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":16,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186171"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:57:13Z","public":true,"payload":{"number":21,"pull_request":{"number":21,"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"has_wiki":true,"size":112,"created_at":"2012-03-03T07:53:19Z","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","private":false,"watchers":1,"updated_at":"2012-03-03T08:57:40Z","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","language":null,"fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","has_downloads":true,"open_issues":0,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/21","merged_by":null,"created_at":"2012-03-04T08:57:13Z","changed_files":1,"merged":false,"title":"Pull request also created by PyGithub","comments":0,"body":"","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/21.diff","updated_at":"2012-03-04T08:57:13Z","additions":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/21"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/21/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/21/comments"}},"id":924857,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/21.patch","mergeable":null,"merged_at":null,"commits":5,"closed_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/21","review_comments":0,"deletions":0,"base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"has_wiki":true,"size":84,"created_at":"2012-03-03T07:41:19Z","clone_url":"https://github.com/jacquev6/TestPyGithub.git","private":false,"watchers":1,"updated_at":"2012-03-03T07:53:19Z","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","git_url":"git://github.com/jacquev6/TestPyGithub.git","language":null,"fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","has_downloads":true,"open_issues":17,"mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186026"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:57:12Z","public":true,"payload":{"number":20,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":20,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/20","merged":false,"merged_by":null,"created_at":"2012-03-04T08:57:10Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T08:57:11Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/20.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/20"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20","id":924856,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/20.patch","mergeable":true,"commits":5,"merged_at":null,"closed_at":"2012-03-04T08:57:11Z","review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/20","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":16,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186023"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:57:11Z","public":true,"payload":{"number":20,"pull_request":{"head":{"label":"BeaverSoftware:master","repo":{"name":"TestPyGithub","master_branch":null,"size":112,"created_at":"2012-03-03T07:53:19Z","has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","private":false,"watchers":1,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","language":null,"id":3609352,"pushed_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","open_issues":0,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":20,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/20","merged":false,"merged_by":null,"created_at":"2012-03-04T08:57:10Z","changed_files":1,"body":"","title":"Pull request created by PyGithub","comments":0,"updated_at":"2012-03-04T08:57:10Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/20.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/20"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/20/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/20","id":924856,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/20.patch","mergeable":null,"commits":5,"merged_at":null,"closed_at":null,"review_comments":0,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"deletions":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/20","base":{"label":"jacquev6:master","repo":{"name":"TestPyGithub","master_branch":null,"size":84,"created_at":"2012-03-03T07:41:19Z","has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","private":false,"watchers":1,"git_url":"git://github.com/jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","language":null,"id":3609314,"pushed_at":"2012-03-03T07:43:16Z","svn_url":"https://github.com/jacquev6/TestPyGithub","open_issues":17,"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"open"},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526186021"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:56:43Z","public":true,"payload":{"number":19,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/19","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":19,"merged_by":null,"merged":false,"changed_files":1,"created_at":"2012-03-04T08:53:29Z","comments":0,"body":"","title":"Pull request also created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/19.diff","updated_at":"2012-03-04T08:56:43Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/19"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19","id":924849,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/19.patch","mergeable":true,"merged_at":null,"closed_at":"2012-03-04T08:56:43Z","commits":5,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/19","deletions":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":16,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185981"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:30Z","public":true,"payload":{"number":19,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/19","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"open_issues":0,"mirror_url":null,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":19,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T08:53:29Z","merged":false,"comments":0,"body":"","title":"Pull request also created by PyGithub","updated_at":"2012-03-04T08:53:29Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/19.diff","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/19"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/19/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/19","id":924849,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/19.patch","mergeable":true,"closed_at":null,"commits":5,"merged_at":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/19","deletions":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"open_issues":17,"mirror_url":null,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185612"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:28Z","public":true,"payload":{"number":18,"pull_request":{"head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":18,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/18","created_at":"2012-03-04T08:53:27Z","merged":false,"changed_files":1,"merged_by":null,"body":"","title":"Pull request created by PyGithub","comments":0,"additions":1,"updated_at":"2012-03-04T08:53:28Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/18.diff","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18","_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/18"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18/comments"}},"id":924848,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/18.patch","mergeable":true,"merged_at":null,"commits":5,"closed_at":"2012-03-04T08:53:28Z","deletions":0,"review_comments":0,"html_url":"https://github.com/jacquev6/TestPyGithub/pull/18","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":16,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"state":"closed"},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185609"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:27Z","public":true,"payload":{"number":18,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/18","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":18,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T08:53:27Z","merged":false,"comments":0,"body":"","title":"Pull request created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/18.diff","updated_at":"2012-03-04T08:53:27Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/18"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/18/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/18","id":924848,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/18.patch","mergeable":null,"closed_at":null,"merged_at":null,"commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/18","deletions":0,"review_comments":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":17,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185607"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:53:11Z","public":true,"payload":{"number":17,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/17","head":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:53:19Z","size":112,"has_wiki":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","watchers":1,"private":false,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","fork":true,"language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"mirror_url":null,"open_issues":0,"has_downloads":true,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","forks":0,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":17,"merged_by":null,"changed_files":1,"merged":false,"created_at":"2012-03-04T08:43:07Z","comments":0,"body":"","title":"Pull request created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/17.diff","updated_at":"2012-03-04T08:53:11Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/17"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17","id":924842,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/17.patch","mergeable":true,"closed_at":"2012-03-04T08:53:11Z","merged_at":null,"commits":5,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/17","deletions":0,"review_comments":0,"state":"closed","base":{"repo":{"master_branch":null,"name":"TestPyGithub","created_at":"2012-03-03T07:41:19Z","size":84,"has_wiki":true,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","updated_at":"2012-03-03T07:53:19Z","watchers":1,"private":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","fork":false,"language":null,"git_url":"git://github.com/jacquev6/TestPyGithub.git","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"mirror_url":null,"open_issues":16,"has_downloads":true,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","forks":2,"description":"Guinea-pig for PyGithub testing","html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"closed"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526185583"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"PullRequestEvent","created_at":"2012-03-04T08:43:08Z","public":true,"payload":{"number":17,"pull_request":{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/17","head":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T08:57:40Z","language":null,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T08:57:40Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"label":"BeaverSoftware:master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","ref":"master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}},"number":17,"merged_by":null,"changed_files":1,"created_at":"2012-03-04T08:43:07Z","merged":false,"comments":0,"body":"","title":"Pull request created by PyGithub","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/17.diff","updated_at":"2012-03-04T08:43:07Z","additions":1,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/17"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17/comments"}},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/17","id":924842,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/17.patch","mergeable":null,"closed_at":null,"merged_at":null,"commits":5,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/17","deletions":0,"review_comments":0,"state":"open","base":{"repo":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:41:19Z","size":84,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","fork":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","svn_url":"https://github.com/jacquev6/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609314,"has_downloads":true,"mirror_url":null,"open_issues":17,"has_issues":true,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":2,"html_url":"https://github.com/jacquev6/TestPyGithub","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}},"label":"jacquev6:master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","ref":"master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"}}},"action":"opened"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526184567"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:35:57Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:35:57Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:35:57Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039846","id":1039846,"path":"ReadMe.md","user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039846"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526184045"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:35:55Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:35:55Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:35:55Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","id":1039845,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526184043"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:34:50Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:34:50Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:34:50Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","id":1039843,"path":"ReadMe.md","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183983"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:34:49Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:34:49Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:34:49Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","id":1039842,"path":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183980"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:33:53Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:33:53Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:33:53Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","id":1039839,"path":"ReadMe.md","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183908"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:33:52Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:33:52Z","body":"Comment created by PyGithub","line":null,"updated_at":"2012-03-04T08:33:52Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039838","id":1039838,"path":null,"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039838"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183906"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CommitCommentEvent","created_at":"2012-03-04T08:32:17Z","public":true,"payload":{"comment":{"position":null,"created_at":"2012-03-04T08:32:17Z","body":"Comment also created by PyGithub","line":1,"updated_at":"2012-03-04T08:32:17Z","commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","id":1039835,"path":"ReadMe.md","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835"}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526183789"}] - -GET /networks/jacquev6/TestPyGithub/events?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4758'), ('content-length', '39045'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"75f91e49f474ab8afa98019d92812137"'), ('date', 'Mon, 12 Mar 2012 20:41:00 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"type":"CommitCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-04T08:32:17Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-04T08:32:17Z","path":null,"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","position":null,"id":1039834,"updated_at":"2012-03-04T08:32:17Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039834","html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039834","line":null}},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526183787"},{"type":"CommitCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-04T08:31:38Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-04T08:31:38Z","path":null,"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","position":null,"id":1039833,"updated_at":"2012-03-04T08:31:38Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039833","html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039833","line":null}},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526183746"},{"type":"CommitCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-04T08:30:50Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-04T08:30:50Z","path":null,"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","position":null,"id":1039832,"updated_at":"2012-03-04T08:30:50Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039832","html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039832","line":null}},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526183704"},{"type":"MemberEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-04T08:21:39Z","public":true,"payload":{"action":"added","member":{"avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"Lyloa","id":1131432,"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","url":"https://api.github.com/users/Lyloa"}},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526182903"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:09:17Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T11:09:17Z","id":4300027,"updated_at":"2012-03-03T11:09:17Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300027"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:09:14Z","comments":1,"labels":[],"milestone":null,"id":3489023,"state":"open","number":16,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:09:17Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/16"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526021343"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:09:16Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:09:14Z","comments":0,"labels":[],"milestone":null,"id":3489023,"state":"open","number":16,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:09:16Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/16"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526021337"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:08:03Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T11:08:02Z","id":4300021,"updated_at":"2012-03-03T11:08:02Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300021"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:07:59Z","comments":1,"labels":[],"milestone":null,"id":3489016,"state":"open","number":15,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:08:02Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/15"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526021244"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:08:00Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:07:59Z","comments":0,"labels":[],"milestone":null,"id":3489016,"state":"open","number":15,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:07:59Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/15"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526021242"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:05:44Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T11:05:43Z","id":4300011,"updated_at":"2012-03-03T11:05:43Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300011"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:05:41Z","comments":1,"labels":[],"milestone":null,"id":3489009,"state":"open","number":14,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:05:43Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/14"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526021060"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:05:42Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:05:41Z","comments":0,"labels":[],"milestone":null,"id":3489009,"state":"open","number":14,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:05:41Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/14"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526021058"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:04:24Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T11:04:24Z","id":4300005,"updated_at":"2012-03-03T11:04:24Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4300005"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:04:22Z","comments":1,"labels":[],"milestone":null,"id":3489005,"state":"open","number":13,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:04:24Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/13"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020964"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T11:04:22Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T11:04:22Z","comments":0,"labels":[],"milestone":null,"id":3489005,"state":"open","number":13,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T11:04:22Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/13"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020960"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:59:01Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T10:59:00Z","id":4299977,"updated_at":"2012-03-03T10:59:00Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4299977"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:58:52Z","comments":1,"labels":[],"milestone":{"created_at":"2012-03-03T10:58:55Z","description":null,"open_issues":1,"state":"open","due_on":null,"number":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","title":"Milestone edited by PyGithub","closed_issues":0,"creator":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"}},"id":3488992,"state":"open","number":12,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:59:00Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/12"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020508"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:58:52Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:58:52Z","comments":0,"labels":[],"milestone":null,"id":3488992,"state":"open","number":12,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:58:52Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/12"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020500"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:58:16Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T10:58:15Z","id":4299970,"updated_at":"2012-03-03T10:58:15Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4299970"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:58:08Z","comments":1,"labels":[],"milestone":{"created_at":"2012-03-03T10:58:10Z","description":null,"open_issues":1,"state":"open","due_on":null,"number":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","title":"Milestone edited by PyGithub","closed_issues":0,"creator":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"}},"id":3488985,"state":"open","number":11,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:58:15Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/11"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020440"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:58:08Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:58:08Z","comments":0,"labels":[],"milestone":null,"id":3488985,"state":"open","number":11,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:58:08Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/11"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020428"},{"type":"IssueCommentEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:57:34Z","public":true,"payload":{"comment":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"created_at":"2012-03-03T10:57:32Z","id":4299964,"updated_at":"2012-03-03T10:57:32Z","body":"Comment created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4299964"},"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:57:24Z","comments":1,"labels":[],"milestone":{"created_at":"2012-03-03T10:57:27Z","description":null,"open_issues":1,"state":"open","due_on":null,"number":1,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","title":"Milestone edited by PyGithub","closed_issues":0,"creator":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"}},"id":3488983,"state":"open","number":10,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:57:32Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/10"},"action":"created"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020376"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:57:24Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:57:24Z","comments":0,"labels":[],"milestone":null,"id":3488983,"state":"open","number":10,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:57:24Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/10"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526020366"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:52:33Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:52:32Z","comments":0,"labels":[],"milestone":null,"id":3488962,"state":"open","number":9,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:52:33Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/9","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/9"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526019924"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:49:16Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:49:14Z","comments":0,"labels":[],"milestone":null,"id":3488955,"state":"open","number":8,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:49:16Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/8","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/8"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526019638"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:46:56Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:46:56Z","comments":0,"labels":[],"milestone":null,"id":3488943,"state":"open","number":7,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:46:56Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/7","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/7"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526019456"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:44:30Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:44:30Z","comments":0,"labels":[],"milestone":null,"id":3488933,"state":"open","number":6,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:44:30Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/6","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/6"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526019276"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:43:39Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:43:37Z","comments":0,"labels":[],"milestone":null,"id":3488930,"state":"open","number":5,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:43:37Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/5","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/5"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526019207"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:38:44Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:38:43Z","comments":0,"labels":[],"milestone":null,"id":3488906,"state":"open","number":4,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:38:43Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/4","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/4"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526018698"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:36:44Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:36:41Z","comments":0,"labels":[],"milestone":null,"id":3488891,"state":"open","number":3,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:36:42Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/3","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/3"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526018510"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:36:17Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:36:15Z","comments":0,"labels":[],"milestone":null,"id":3488887,"state":"open","number":2,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:36:16Z","body":"Issue edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/2","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/2"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526018472"},{"type":"IssuesEvent","org":{"url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T10:33:50Z","public":true,"payload":{"issue":{"user":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"closed_at":null,"created_at":"2012-03-03T10:33:50Z","comments":0,"labels":[],"milestone":null,"id":3488878,"state":"open","number":1,"assignee":null,"pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"updated_at":"2012-03-03T10:33:50Z","body":null,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/1","title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/1"},"action":"opened"},"repo":{"id":3609314,"name":"jacquev6/TestPyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526018266"},{"type":"PushEvent","org":{"login":"BeaverSoftware","id":1424031,"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T08:57:40Z","public":true,"payload":{"head":"390bcc2b855d419e9fd6727049aa9217db56a06a","size":1,"commits":[{"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","distinct":true,"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware"}}],"ref":"refs/heads/master","push_id":65381113},"repo":{"id":3609352,"name":"BeaverSoftware/TestPyGithub","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub"},"actor":{"login":"BeaverSoftware","id":1424031,"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware"},"id":"1526010140"},{"type":"PushEvent","org":{"login":"BeaverSoftware","id":1424031,"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T08:57:39Z","public":true,"payload":{"head":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","size":2,"commits":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":false,"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware"}},{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","distinct":false,"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware"}}],"ref":"refs/heads/previous_master","push_id":65381112},"repo":{"id":3609352,"name":"BeaverSoftware/TestPyGithub","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub"},"actor":{"login":"BeaverSoftware","id":1424031,"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware"},"id":"1526010139"},{"type":"DeleteEvent","org":{"login":"BeaverSoftware","id":1424031,"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/orgs/"},"created_at":"2012-03-03T08:56:56Z","public":true,"payload":{"ref":"previous_master","ref_type":"branch"},"repo":{"id":3609352,"name":"BeaverSoftware/TestPyGithub","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub"},"actor":{"login":"jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6"},"id":"1526010100"}] - -GET /networks/jacquev6/TestPyGithub/events?page=3 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4757'), ('content-length', '9133'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"309cf3c5b6dbd995982d6c4b73bbd1d7"'), ('date', 'Mon, 12 Mar 2012 20:41:01 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:54:25Z","public":true,"payload":{"ref_type":"tag","ref":"tagCreatedByPyGithub"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009934"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:52:06Z","public":true,"payload":{"head":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","size":1,"push_id":65380919,"commits":[{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009779"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:52:04Z","public":true,"payload":{"head":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","size":2,"push_id":65380918,"ref":"refs/heads/previous_master","commits":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","distinct":false,"message":"This commit was created by PyGithub"},{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":false,"message":"This commit was created by PyGithub"}]},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009777"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:47:21Z","public":true,"payload":{"ref_type":"tag","ref":"tag_1330764175"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009425"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"DeleteEvent","created_at":"2012-03-03T08:47:15Z","public":true,"payload":{"ref_type":"tag","ref":"a_tag"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009414"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:42:55Z","public":true,"payload":{"head":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","size":1,"push_id":65380594,"commits":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526009059"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:11:55Z","public":true,"payload":{"head":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","size":1,"push_id":65379432,"commits":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526006647"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"PushEvent","created_at":"2012-03-03T08:11:13Z","public":true,"payload":{"head":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","size":1,"push_id":65379410,"commits":[{"sha":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","author":{"name":"BeaverSoftware","email":"BeaverSoftware@vincent-jacques.net"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/commits/e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","distinct":true,"message":"This commit was created by PyGithub"}],"ref":"refs/heads/master"},"org":{"url":"https://api.github.com/orgs/","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"repo":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","id":3609352,"name":"BeaverSoftware/TestPyGithub"},"id":"1526006609"},{"actor":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031,"login":"BeaverSoftware"},"type":"ForkEvent","created_at":"2012-03-03T07:53:19Z","public":true,"payload":{"forkee":{"master_branch":null,"name":"TestPyGithub","has_wiki":true,"created_at":"2012-03-03T07:53:19Z","size":84,"public":true,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"private":false,"updated_at":"2012-03-03T07:53:19Z","language":null,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","fork":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","pushed_at":"2012-03-03T07:43:16Z","id":3609352,"has_downloads":true,"mirror_url":null,"open_issues":0,"has_issues":false,"homepage":"http://vincent-jacques.net/PyGithub","description":"Guinea-pig for PyGithub testing","forks":0,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","owner":{"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","url":"https://api.github.com/users/BeaverSoftware","id":1424031,"login":"BeaverSoftware"}}},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526005234"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CreateEvent","created_at":"2012-03-03T07:43:16Z","public":true,"payload":{"master_branch":"master","ref_type":"branch","description":"Guinea-pig for PyGithub testing","ref":"master"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526004485"},{"actor":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146,"login":"jacquev6"},"type":"CreateEvent","created_at":"2012-03-03T07:41:20Z","public":true,"payload":{"master_branch":"master","ref_type":"repository","ref":null,"description":"Guinea-pig for PyGithub testing"},"org":{"url":"https://api.github.com/orgs/"},"repo":{"url":"https://api.github.com/repos/jacquev6/TestPyGithub","id":3609314,"name":"jacquev6/TestPyGithub"},"id":"1526004228"}] - -GET /networks/jacquev6/TestPyGithub/events?page=4 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4756'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="prev"'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 20:41:02 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4755'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2160fe52ad823d2dc70324c7cda74cf9"'), ('date', 'Mon, 12 Mar 2012 20:41:02 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"owned_private_repos":5,"html_url":"https://github.com/jacquev6","type":"User","url":"https://api.github.com/users/jacquev6","disk_usage":17576,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","public_repos":16,"public_gists":1,"following":24,"hireable":false,"login":"jacquev6","private_gists":2,"bio":"","followers":12,"name":"Vincent Jacques","total_private_repos":5,"collaborators":0,"plan":{"space":614400,"private_repos":5,"name":"micro","collaborators":1},"location":"Paris, France","id":327146,"company":"Criteo","blog":"http://vincent-jacques.net"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4754'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e292ced91f5bb1bc45ea6ffd7211d206"'), ('date', 'Mon, 12 Mar 2012 20:41:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"git_url":"git://github.com/jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","updated_at":"2012-03-04T09:21:39Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"open_issues":16,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","homepage":"http://vincent-jacques.net/PyGithub","watchers":1,"mirror_url":null,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","language":null,"fork":false,"size":84,"has_downloads":true,"has_issues":true,"master_branch":null,"name":"TestPyGithub","private":false,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","forks":2,"id":3609314,"url":"https://api.github.com/repos/jacquev6/TestPyGithub"} - -GET /repos/jacquev6/TestPyGithub/issues/23 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4753'), ('content-length', '1227'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e05e5cb1478bf7ffce918cf08a83fd55"'), ('date', 'Mon, 12 Mar 2012 20:41:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/23","created_at":"2012-03-04T09:00:46Z","assignee":null,"milestone":null,"labels":[],"number":23,"body":"","closed_at":"2012-03-04T09:03:32Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/23","closed_by":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"updated_at":"2012-03-04T09:03:32Z","comments":0,"state":"closed","pull_request":{"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/23.patch","html_url":"https://github.com/jacquev6/TestPyGithub/pull/23","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/23.diff"},"id":3495116,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues/23/events {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4752'), ('content-length', '1899'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"000d8c73048c7b645eb2678026ef4bbf"'), ('date', 'Mon, 12 Mar 2012 20:41:04 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693286","created_at":"2012-03-04T09:00:46Z","commit_id":null,"event":"subscribed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10693286},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693287","created_at":"2012-03-04T09:00:54Z","commit_id":null,"event":"closed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10693287},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693326","created_at":"2012-03-04T09:03:29Z","commit_id":null,"event":"reopened","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10693326},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/events/10693330","created_at":"2012-03-04T09:03:32Z","commit_id":null,"event":"closed","actor":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"id":10693330}] - diff --git a/test/ReplayDataForIntegrationTest/Follow.txt b/test/ReplayDataForIntegrationTest/Follow.txt deleted file mode 100644 index 193f10c7..00000000 --- a/test/ReplayDataForIntegrationTest/Follow.txt +++ /dev/null @@ -1,35 +0,0 @@ -GET /users/Lyloa {} null -200 -[('status', '200 OK'), ('content-length', '554'), ('x-ratelimit-limit', '5000'), ('x-ratelimit-remaining', '4877'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('etag', '"98a746507bb0e6bb71534a6949c4581d"'), ('date', 'Thu, 01 Mar 2012 20:37:22 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"User","created_at":"2011-10-16T14:36:46Z","location":"Paris","hireable":false,"html_url":"https://github.com/Lyloa","bio":null,"public_gists":0,"company":null,"public_repos":0,"followers":1,"email":"nyu@lyloa.net","url":"https://api.github.com/users/Lyloa","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","following":0,"name":"Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","id":1131432,"blog":null,"login":"Lyloa"} - -DELETE /user/following/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4876'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:37:22 GMT')] - - -GET /user/following/Lyloa {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4875'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Thu, 01 Mar 2012 20:37:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -PUT /user/following/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4874'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:37:23 GMT')] - - -GET /user/following/Lyloa {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4873'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:37:24 GMT')] - - -GET /user/following {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4872'), ('content-length', '7072'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3bf23c8504f901af22597f735f34f63e"'), ('date', 'Thu, 01 Mar 2012 20:37:25 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"c5a7f21b46df698f3db31c37ed0cf55a","login":"nvie","avatar_url":"https://secure.gravatar.com/avatar/c5a7f21b46df698f3db31c37ed0cf55a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/nvie","id":83844},{"gravatar_id":"9375a9529679f1b42b567a640d775e7d","login":"schacon","avatar_url":"https://secure.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/schacon","id":70},{"gravatar_id":"992fe8c19bbbc27f2b562a9f96efc03d","login":"jamis","avatar_url":"https://secure.gravatar.com/avatar/992fe8c19bbbc27f2b562a9f96efc03d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jamis","id":1627},{"gravatar_id":"77f306388bb6ae00ac0b0401e27cdc99","login":"chad","avatar_url":"https://secure.gravatar.com/avatar/77f306388bb6ae00ac0b0401e27cdc99?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/chad","id":237},{"gravatar_id":"e47a3e81d72676bd497b1cb67f66da97","login":"unclebob","avatar_url":"https://secure.gravatar.com/avatar/e47a3e81d72676bd497b1cb67f66da97?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/unclebob","id":36901},{"gravatar_id":"5b45540ae377ec54a071f313b7193a27","login":"dabrahams","avatar_url":"https://secure.gravatar.com/avatar/5b45540ae377ec54a071f313b7193a27?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/dabrahams","id":44065},{"gravatar_id":"29222a2dca6dd4cd33790d72ff3f5346","login":"jnorthrup","avatar_url":"https://secure.gravatar.com/avatar/29222a2dca6dd4cd33790d72ff3f5346?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jnorthrup","id":73514},{"gravatar_id":"43485eeefd3da3c96a7ea0c7e6b839dc","login":"brugidou","avatar_url":"https://secure.gravatar.com/avatar/43485eeefd3da3c96a7ea0c7e6b839dc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/brugidou","id":167633},{"gravatar_id":"74a2fabe5139527148c41cfb5dcc4b08","login":"regisb","avatar_url":"https://secure.gravatar.com/avatar/74a2fabe5139527148c41cfb5dcc4b08?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/regisb","id":44319},{"gravatar_id":"e251d20766937949a109603ca37bb3be","login":"walidk","avatar_url":"https://secure.gravatar.com/avatar/e251d20766937949a109603ca37bb3be?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/walidk","id":734669},{"gravatar_id":"5d533d287dda8809a5369b65063ef725","login":"tanzilli","avatar_url":"https://secure.gravatar.com/avatar/5d533d287dda8809a5369b65063ef725?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/tanzilli","id":434112},{"gravatar_id":"cb044bd9a9f6548b9a9bae44617c97c7","login":"fjardon","avatar_url":"https://secure.gravatar.com/avatar/cb044bd9a9f6548b9a9bae44617c97c7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/fjardon","id":121402},{"gravatar_id":"9240b01ceef60b45be83aee8637e7043","login":"r3c","avatar_url":"https://secure.gravatar.com/avatar/9240b01ceef60b45be83aee8637e7043?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/r3c","id":979446},{"gravatar_id":"4a1e187f4f22547534a56966f6d8f942","login":"sdanzan","avatar_url":"https://secure.gravatar.com/avatar/4a1e187f4f22547534a56966f6d8f942?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/sdanzan","id":1094967},{"gravatar_id":"2d0c93649b7572036335aed380e351e5","login":"vineus","avatar_url":"https://secure.gravatar.com/avatar/2d0c93649b7572036335aed380e351e5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/vineus","id":467126},{"gravatar_id":"197eed5292fd11c0277335c3524ccfd5","login":"cjuniet","avatar_url":"https://secure.gravatar.com/avatar/197eed5292fd11c0277335c3524ccfd5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/cjuniet","id":1233553},{"gravatar_id":"ba064e32f068e12bfc87d178179878a5","login":"gturri","avatar_url":"https://secure.gravatar.com/avatar/ba064e32f068e12bfc87d178179878a5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/gturri","id":308601},{"gravatar_id":"05c5d147f5decac1213f47007f6e97ed","login":"ant9000","avatar_url":"https://secure.gravatar.com/avatar/05c5d147f5decac1213f47007f6e97ed?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/ant9000","id":803884},{"gravatar_id":"ffc7ee9137c7c6859958bd21b724dde1","login":"asquini","avatar_url":"https://secure.gravatar.com/avatar/ffc7ee9137c7c6859958bd21b724dde1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/asquini","id":1159877},{"gravatar_id":"694d276cdabd74c2538838f55d289143","login":"claudyus","avatar_url":"https://secure.gravatar.com/avatar/694d276cdabd74c2538838f55d289143?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/claudyus","id":509291},{"gravatar_id":"1b4be24fa7e62eb508ca448da99e43d4","login":"jardon-u","avatar_url":"https://secure.gravatar.com/avatar/1b4be24fa7e62eb508ca448da99e43d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jardon-u","id":994192},{"gravatar_id":"046dc82526c7cb4c60d8e70c6f4d4615","login":"s-bernard","avatar_url":"https://secure.gravatar.com/avatar/046dc82526c7cb4c60d8e70c6f4d4615?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/s-bernard","id":1468889},{"gravatar_id":"0c43eba4a99f65e071e66e684cea8177","login":"kamaradclimber","avatar_url":"https://secure.gravatar.com/avatar/0c43eba4a99f65e071e66e684cea8177?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/kamaradclimber","id":503537},{"gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","login":"Lyloa","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/Lyloa","id":1131432}] - -GET /user/followers {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4871'), ('content-length', '3560'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7f0cf94dcd08c0845a575fc9cb75801c"'), ('date', 'Thu, 01 Mar 2012 20:37:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"login":"jnorthrup","url":"https://api.github.com/users/jnorthrup","gravatar_id":"29222a2dca6dd4cd33790d72ff3f5346","avatar_url":"https://secure.gravatar.com/avatar/29222a2dca6dd4cd33790d72ff3f5346?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":73514},{"login":"brugidou","url":"https://api.github.com/users/brugidou","gravatar_id":"43485eeefd3da3c96a7ea0c7e6b839dc","avatar_url":"https://secure.gravatar.com/avatar/43485eeefd3da3c96a7ea0c7e6b839dc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":167633},{"login":"regisb","url":"https://api.github.com/users/regisb","gravatar_id":"74a2fabe5139527148c41cfb5dcc4b08","avatar_url":"https://secure.gravatar.com/avatar/74a2fabe5139527148c41cfb5dcc4b08?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":44319},{"login":"walidk","url":"https://api.github.com/users/walidk","gravatar_id":"e251d20766937949a109603ca37bb3be","avatar_url":"https://secure.gravatar.com/avatar/e251d20766937949a109603ca37bb3be?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":734669},{"login":"afzalkhan","url":"https://api.github.com/users/afzalkhan","gravatar_id":"8e85398b116be75d4baeeddfc9c3cce1","avatar_url":"https://secure.gravatar.com/avatar/8e85398b116be75d4baeeddfc9c3cce1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1003845},{"login":"sdanzan","url":"https://api.github.com/users/sdanzan","gravatar_id":"4a1e187f4f22547534a56966f6d8f942","avatar_url":"https://secure.gravatar.com/avatar/4a1e187f4f22547534a56966f6d8f942?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1094967},{"login":"vineus","url":"https://api.github.com/users/vineus","gravatar_id":"2d0c93649b7572036335aed380e351e5","avatar_url":"https://secure.gravatar.com/avatar/2d0c93649b7572036335aed380e351e5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":467126},{"login":"gturri","url":"https://api.github.com/users/gturri","gravatar_id":"ba064e32f068e12bfc87d178179878a5","avatar_url":"https://secure.gravatar.com/avatar/ba064e32f068e12bfc87d178179878a5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":308601},{"login":"fjardon","url":"https://api.github.com/users/fjardon","gravatar_id":"cb044bd9a9f6548b9a9bae44617c97c7","avatar_url":"https://secure.gravatar.com/avatar/cb044bd9a9f6548b9a9bae44617c97c7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":121402},{"login":"cjuniet","url":"https://api.github.com/users/cjuniet","gravatar_id":"197eed5292fd11c0277335c3524ccfd5","avatar_url":"https://secure.gravatar.com/avatar/197eed5292fd11c0277335c3524ccfd5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1233553},{"login":"jardon-u","url":"https://api.github.com/users/jardon-u","gravatar_id":"1b4be24fa7e62eb508ca448da99e43d4","avatar_url":"https://secure.gravatar.com/avatar/1b4be24fa7e62eb508ca448da99e43d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":994192},{"login":"kamaradclimber","url":"https://api.github.com/users/kamaradclimber","gravatar_id":"0c43eba4a99f65e071e66e684cea8177","avatar_url":"https://secure.gravatar.com/avatar/0c43eba4a99f65e071e66e684cea8177?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":503537}] - diff --git a/test/ReplayDataForIntegrationTest/Gists.txt b/test/ReplayDataForIntegrationTest/Gists.txt deleted file mode 100644 index 355cfac1..00000000 --- a/test/ReplayDataForIntegrationTest/Gists.txt +++ /dev/null @@ -1,130 +0,0 @@ -GET /gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4841'), ('content-length', '1871'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"c8780dad88525da2c5b64403f5439d62"'), ('date', 'Sat, 03 Mar 2012 11:52:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"git_pull_url":"git://gist.github.com/1942384.git","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","git_push_url":"git@gist.github.com:1942384.git","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","html_url":"https://gist.github.com/1942384","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","html_url":"https://gist.github.com/dcb7de17e8a52b74541d","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - -POST /gists {} {"files": {"foo.bar": {"content": "This gist was created by PyGithub"}}, "public": true, "description": "Gist created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4840'), ('content-length', '1444'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"363ccd2b4f7a0111b78eb26caa6a8088"'), ('date', 'Sat, 03 Mar 2012 11:52:03 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/gists/1965711')] -{"files":{"foo.bar":{"content":"This gist was created by PyGithub","type":"text/plain","raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar","language":null,"size":33,"filename":"foo.bar"}},"git_pull_url":"git://gist.github.com/1965711.git","history":[{"committed_at":"2012-03-03T11:52:03Z","change_status":{"additions":1,"deletions":0,"total":1},"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1965711/fe3fb9ce9dde8631317879c933375d7256f3b41b","version":"fe3fb9ce9dde8631317879c933375d7256f3b41b"}],"public":true,"comments":0,"updated_at":"2012-03-03T11:52:03Z","git_push_url":"git@gist.github.com:1965711.git","forks":[],"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","html_url":"https://gist.github.com/1965711","id":"1965711","description":"Gist created by PyGithub"} - -GET /gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4839'), ('content-length', '2708'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0067ac7b54d82dea371c18ac891fb493"'), ('date', 'Sat, 03 Mar 2012 11:52:04 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"files":{"foo.bar":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar","language":null,"size":33,"filename":"foo.bar"}},"html_url":"https://gist.github.com/1965711","public":true,"comments":0,"updated_at":"2012-03-03T11:52:03Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","git_pull_url":"git://gist.github.com/1965711.git","id":"1965711","description":"Gist created by PyGithub","git_push_url":"git@gist.github.com:1965711.git"},{"files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"html_url":"https://gist.github.com/1942384","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","git_pull_url":"git://gist.github.com/1942384.git","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)","git_push_url":"git@gist.github.com:1942384.git"},{"files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"html_url":"https://gist.github.com/dcb7de17e8a52b74541d","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition","git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git"}] - -PATCH /gists/1965711 {} {"description": "Gist edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4838'), ('content-length', '1443'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e41da3fbcd8df5574a236ff0a037b2f4"'), ('date', 'Sat, 03 Mar 2012 11:52:05 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"files":{"foo.bar":{"content":"This gist was created by PyGithub","type":"text/plain","language":null,"size":33,"filename":"foo.bar","raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar"}},"history":[{"committed_at":"2012-03-03T11:52:03Z","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"url":"https://api.github.com/gists/1965711/fe3fb9ce9dde8631317879c933375d7256f3b41b","version":"fe3fb9ce9dde8631317879c933375d7256f3b41b","change_status":{"deletions":0,"additions":1,"total":1}}],"public":true,"forks":[],"comments":0,"updated_at":"2012-03-03T11:52:05Z","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"html_url":"https://gist.github.com/1965711","url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","git_pull_url":"git://gist.github.com/1965711.git","id":"1965711","description":"Gist edited by PyGithub","git_push_url":"git@gist.github.com:1965711.git"} - -GET /gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4837'), ('content-length', '2707'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"4461e3cbb8fdab75dba90f70aa2d8191"'), ('date', 'Sat, 03 Mar 2012 11:52:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"files":{"foo.bar":{"type":"text/plain","language":null,"size":33,"filename":"foo.bar","raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar"}},"public":true,"comments":0,"updated_at":"2012-03-03T11:52:05Z","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"html_url":"https://gist.github.com/1965711","url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","git_pull_url":"git://gist.github.com/1965711.git","id":"1965711","description":"Gist edited by PyGithub","git_push_url":"git@gist.github.com:1965711.git"},{"files":{"fail_github.py":{"type":"application/python","language":"Python","size":1636,"filename":"fail_github.py","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py"}},"public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"html_url":"https://gist.github.com/1942384","url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","git_pull_url":"git://gist.github.com/1942384.git","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)","git_push_url":"git@gist.github.com:1942384.git"},{"files":{"cadfael.txt":{"type":"text/plain","language":"Text","size":585,"filename":"cadfael.txt","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt"}},"public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"html_url":"https://gist.github.com/dcb7de17e8a52b74541d","url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition","git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git"}] - -GET /gists/starred {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4836'), ('content-length', '1871'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"85fd7e5f00bf578e50d9b0f619b04ecc"'), ('date', 'Sat, 03 Mar 2012 11:52:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_push_url":"git@gist.github.com:1942384.git","files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"html_url":"https://gist.github.com/1942384","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","git_pull_url":"git://gist.github.com/1942384.git","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"html_url":"https://gist.github.com/dcb7de17e8a52b74541d","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - -PUT /gists/1965711/star {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4835'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 11:52:07 GMT')] - - -GET /gists/1965711/star {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4834'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 11:52:08 GMT')] - - -GET /gists/starred {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4833'), ('content-length', '2707'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7f12bdc27a3b951c145a72da9548f1e9"'), ('date', 'Sat, 03 Mar 2012 11:52:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_push_url":"git@gist.github.com:1965711.git","files":{"foo.bar":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar","language":null,"size":33,"filename":"foo.bar"}},"html_url":"https://gist.github.com/1965711","public":true,"comments":0,"updated_at":"2012-03-03T11:52:05Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","git_pull_url":"git://gist.github.com/1965711.git","id":"1965711","description":"Gist edited by PyGithub"},{"git_push_url":"git@gist.github.com:1942384.git","files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"html_url":"https://gist.github.com/1942384","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","git_pull_url":"git://gist.github.com/1942384.git","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"html_url":"https://gist.github.com/dcb7de17e8a52b74541d","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - -DELETE /gists/1965711/star {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4832'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 11:52:09 GMT')] - - -GET /gists/starred {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4831'), ('content-length', '1871'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"863ddbe67cf7a9db1e8e07d8fa94b339"'), ('date', 'Sat, 03 Mar 2012 11:52:10 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_pull_url":"git://gist.github.com/1942384.git","files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"git_push_url":"git@gist.github.com:1942384.git","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","html_url":"https://gist.github.com/1942384","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","html_url":"https://gist.github.com/dcb7de17e8a52b74541d","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - -GET /gists/1965711/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4830'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sat, 03 Mar 2012 11:52:10 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /gists/1965711/comments {} {"body": "Comment created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4829'), ('content-length', '477'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0075ab7675d07aa2c59444fa7ead98a0"'), ('date', 'Sat, 03 Mar 2012 11:52:11 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/gists/comments/88062')] -{"updated_at":"2012-03-03T11:52:11Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/comments/88062","created_at":"2012-03-03T11:52:11Z","id":88062,"body":"Comment created by PyGithub"} - -GET /gists/1965711/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4828'), ('content-length', '479'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a8fa42d43abd1251df55c740e9d56002"'), ('date', 'Sat, 03 Mar 2012 11:52:11 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-03T11:52:11Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/comments/88062","created_at":"2012-03-03T11:52:11Z","id":88062,"body":"Comment created by PyGithub"}] - -PATCH /gists/comments/88062 {} {"body": "Comment edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4827'), ('content-length', '476'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3ac81323f34390323c8221eaf9518df5"'), ('date', 'Sat, 03 Mar 2012 11:52:12 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"updated_at":"2012-03-03T11:52:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/comments/88062","created_at":"2012-03-03T11:52:11Z","id":88062,"body":"Comment edited by PyGithub"} - -GET /gists/1965711/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4826'), ('content-length', '478'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"76021dca009a49a52287737f036c8bb9"'), ('date', 'Sat, 03 Mar 2012 11:52:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-03T11:52:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/comments/88062","created_at":"2012-03-03T11:52:11Z","id":88062,"body":"Comment edited by PyGithub"}] - -GET /gists/comments/88062 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4825'), ('content-length', '476'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3ac81323f34390323c8221eaf9518df5"'), ('date', 'Sat, 03 Mar 2012 11:52:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"updated_at":"2012-03-03T11:52:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/comments/88062","created_at":"2012-03-03T11:52:11Z","id":88062,"body":"Comment edited by PyGithub"} - -DELETE /gists/comments/88062 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4824'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 11:52:14 GMT')] - - -GET /gists/1965711/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4823'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sat, 03 Mar 2012 11:52:14 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /gists/1965703 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4822'), ('content-length', '2193'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"53f10d360a69b06c7d09a14c91eaeaba"'), ('date', 'Sat, 03 Mar 2012 11:52:15 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"files":{"Class3.java":{"content":"import java.util.Random;\n\nclass Class3 {\n public static void main(String[] args) {\n\tint[] data = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};\n\tRandom random = new Random();\n\t\n\tfor (int loop = 0; loop < data.length; loop ++) {\n\t int left = random.nextInt(data.length);\n\t int right = random.nextInt(data.length);\n\t \n\t int swap = data[left];\n\t data[left] = data[right];\n\t data[right] = swap;\n\t}\n\n\tboolean sorted = false;\n\twhile (!sorted){\n\t sorted = true;\n\t for (int i = 0; i < data.length-1; i++){\n\t\tif (data[i] < data[i+1]){\n\t\t int n = data[i];\n\t\t data[i] = data[i+1];\n\t\t data[i+1] = n;\n\t\t sorted = false;\n\t\t}\n\t }\n\t}\n\tfor (int i = 0; i < data.length; i++) System.out.println(data[i]);\n }\n}","type":"text/plain","raw_url":"https://gist.github.com/raw/1965703/cffeaae044d18e1c9159bcd795b6739782f51b11/Class3.java","language":"Java","size":721,"filename":"Class3.java"}},"git_pull_url":"git://gist.github.com/1965703.git","history":[{"committed_at":"2012-03-03T11:47:39Z","change_status":{"additions":31,"deletions":0,"total":31},"user":{"gravatar_id":"c0620c73883bd45beafab71ba524d5c5","login":"delihiros","avatar_url":"https://secure.gravatar.com/avatar/c0620c73883bd45beafab71ba524d5c5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/delihiros","id":1169739},"url":"https://api.github.com/gists/1965703/1f29561e2fcf0613b4b9d6f86872e10a873a64f3","version":"1f29561e2fcf0613b4b9d6f86872e10a873a64f3"}],"public":true,"comments":0,"updated_at":"2012-03-03T11:47:39Z","git_push_url":"git@gist.github.com:1965703.git","forks":[],"user":{"gravatar_id":"c0620c73883bd45beafab71ba524d5c5","login":"delihiros","avatar_url":"https://secure.gravatar.com/avatar/c0620c73883bd45beafab71ba524d5c5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/delihiros","id":1169739},"url":"https://api.github.com/gists/1965703","created_at":"2012-03-03T11:47:39Z","html_url":"https://gist.github.com/1965703","id":"1965703","description":null} - -POST /gists/1965703/fork {} null -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4821'), ('content-length', '829'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"c8a397a7dc4d01bf5391efe3a3b6d2a8"'), ('date', 'Sat, 03 Mar 2012 11:52:16 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/gists/1965713')] -{"git_push_url":"git@gist.github.com:1965713.git","files":{"Class3.java":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1965713/cffeaae044d18e1c9159bcd795b6739782f51b11/Class3.java","language":"Java","size":721,"filename":"Class3.java"}},"html_url":"https://gist.github.com/1965713","public":true,"comments":0,"updated_at":"2012-03-03T11:52:16Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1965713","created_at":"2012-03-03T11:52:16Z","git_pull_url":"git://gist.github.com/1965713.git","id":"1965713","description":null} - -GET /gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4820'), ('content-length', '3537'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"10271af65b97e1403052fd2f6ea65181"'), ('date', 'Sat, 03 Mar 2012 11:52:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_pull_url":"git://gist.github.com/1965713.git","files":{"Class3.java":{"type":"text/plain","language":"Java","size":721,"raw_url":"https://gist.github.com/raw/1965713/cffeaae044d18e1c9159bcd795b6739782f51b11/Class3.java","filename":"Class3.java"}},"git_push_url":"git@gist.github.com:1965713.git","public":true,"comments":0,"updated_at":"2012-03-03T11:52:16Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/1965713","created_at":"2012-03-03T11:52:16Z","html_url":"https://gist.github.com/1965713","id":"1965713","description":null},{"git_pull_url":"git://gist.github.com/1965711.git","files":{"foo.bar":{"type":"text/plain","language":null,"size":33,"raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar","filename":"foo.bar"}},"git_push_url":"git@gist.github.com:1965711.git","public":true,"comments":0,"updated_at":"2012-03-03T11:52:05Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","html_url":"https://gist.github.com/1965711","id":"1965711","description":"Gist edited by PyGithub"},{"git_pull_url":"git://gist.github.com/1942384.git","files":{"fail_github.py":{"type":"application/python","language":"Python","size":1636,"raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","filename":"fail_github.py"}},"git_push_url":"git@gist.github.com:1942384.git","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","html_url":"https://gist.github.com/1942384","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","files":{"cadfael.txt":{"type":"text/plain","language":"Text","size":585,"raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","filename":"cadfael.txt"}},"git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","html_url":"https://gist.github.com/dcb7de17e8a52b74541d","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - -DELETE /gists/1965713 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4819'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 11:52:17 GMT')] - - -GET /gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4818'), ('content-length', '2707'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7340a0a704441ba48efecac0890d6a4a"'), ('date', 'Sat, 03 Mar 2012 11:52:18 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"files":{"foo.bar":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1965711/112d2a475502a6ef977c724a9a7383d21728be06/foo.bar","language":null,"size":33,"filename":"foo.bar"}},"git_pull_url":"git://gist.github.com/1965711.git","public":true,"comments":0,"updated_at":"2012-03-03T11:52:05Z","git_push_url":"git@gist.github.com:1965711.git","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1965711","created_at":"2012-03-03T11:52:03Z","html_url":"https://gist.github.com/1965711","id":"1965711","description":"Gist edited by PyGithub"},{"files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"git_pull_url":"git://gist.github.com/1942384.git","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","git_push_url":"git@gist.github.com:1942384.git","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","html_url":"https://gist.github.com/1942384","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","html_url":"https://gist.github.com/dcb7de17e8a52b74541d","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - -DELETE /gists/1965711 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4817'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 11:52:19 GMT')] - - -GET /gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4816'), ('content-length', '1871'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"541407a94f5506a57765abcbf3888917"'), ('date', 'Sat, 03 Mar 2012 11:52:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_pull_url":"git://gist.github.com/1942384.git","files":{"fail_github.py":{"type":"application/python","language":"Python","size":1636,"raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","filename":"fail_github.py"}},"git_push_url":"git@gist.github.com:1942384.git","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","html_url":"https://gist.github.com/1942384","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","files":{"cadfael.txt":{"type":"text/plain","language":"Text","size":585,"raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","filename":"cadfael.txt"}},"git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","html_url":"https://gist.github.com/dcb7de17e8a52b74541d","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - diff --git a/test/ReplayDataForIntegrationTest/GistsAll.txt b/test/ReplayDataForIntegrationTest/GistsAll.txt deleted file mode 100644 index b18abe6b..00000000 --- a/test/ReplayDataForIntegrationTest/GistsAll.txt +++ /dev/null @@ -1,50 +0,0 @@ -GET /gists/public {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4919'), ('content-length', '26926'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last"'), ('etag', '"d63b574b9bafbb0d9139dabba25d148b"'), ('date', 'Mon, 19 Mar 2012 18:59:12 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_pull_url":"git://gist.github.com/2123987.git","url":"https://api.github.com/gists/2123987","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123987/af9799d89cc272e319a90b4c658059246cce029f/gistfile1.txt","language":"Text","size":152,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123987.git","public":true,"comments":0,"updated_at":"2012-03-19T18:59:10Z","html_url":"https://gist.github.com/2123987","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:59:10Z","id":"2123987","description":"Download Sean Loeffler vs Buddy Roberts Rapidshare"},{"git_pull_url":"git://gist.github.com/2123986.git","url":"https://api.github.com/gists/2123986","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123986/c601d6dc1c964ae226b17d62426e7a70e54260fa/gistfile1.txt","language":"Text","size":318,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123986.git","public":true,"comments":0,"updated_at":"2012-03-19T18:59:08Z","html_url":"https://gist.github.com/2123986","user":{"url":"https://api.github.com/users/sportsvine","login":"sportsvine","gravatar_id":"a688f98b2da508dce9cbedcb9377847f","avatar_url":"https://secure.gravatar.com/avatar/a688f98b2da508dce9cbedcb9377847f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1549957},"created_at":"2012-03-19T18:59:08Z","id":"2123986","description":"(((NHL))) New York Rangers vs New Jersey Devils Live Stream Online tv on pc"},{"git_pull_url":"git://gist.github.com/2123985.git","url":"https://api.github.com/gists/2123985","files":{"Koge vs Aalborg Live stream , Koge vs Aalborg online free 19 March 2012":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123985/dcec2b694b585067176d2b851612286fd8dab4bc/Koge vs Aalborg Live stream , Koge vs Aalborg online free 19 March 2012","language":null,"size":72,"filename":"Koge vs Aalborg Live stream , Koge vs Aalborg online free 19 March 2012"}},"git_push_url":"git@gist.github.com:2123985.git","public":true,"comments":0,"updated_at":"2012-03-19T18:59:07Z","html_url":"https://gist.github.com/2123985","user":{"url":"https://api.github.com/users/kalajaku123","login":"kalajaku123","gravatar_id":"7599e943e95e5cfe5756d23db75eaeb4","avatar_url":"https://secure.gravatar.com/avatar/7599e943e95e5cfe5756d23db75eaeb4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1547014},"created_at":"2012-03-19T18:59:07Z","id":"2123985","description":"Koge vs Aalborg Live stream , Koge vs Aalborg online free 19 March 2012"},{"git_pull_url":"git://gist.github.com/2123984.git","url":"https://api.github.com/gists/2123984","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123984/447781a48e055e5feae15e2f976c5ae6eec13731/gistfile1.txt","language":"Text","size":152,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123984.git","public":true,"comments":1,"updated_at":"2012-03-19T18:59:02Z","html_url":"https://gist.github.com/2123984","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:59:02Z","id":"2123984","description":"Download Sean Loeffler vs Buddy Roberts full fight"},{"git_pull_url":"git://gist.github.com/2123983.git","url":"https://api.github.com/gists/2123983","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123983/c3c032928a09bd0bb54c4dfc7b8b9387c1beab8e/gistfile1.txt","language":"Text","size":137,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123983.git","public":true,"comments":1,"updated_at":"2012-03-19T18:58:54Z","html_url":"https://gist.github.com/2123983","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:58:54Z","id":"2123983","description":"Watch Sean Loeffler vs Buddy Roberts For Free"},{"git_pull_url":"git://gist.github.com/2123980.git","url":"https://api.github.com/gists/2123980","files":{"fb":{"type":"application/vnd.framemaker","raw_url":"https://gist.github.com/raw/2123980/7adfa89a85aba44f709f54eee496d7e78c709492/fb","language":null,"size":26,"filename":"fb"}},"git_push_url":"git@gist.github.com:2123980.git","public":true,"comments":0,"updated_at":"2012-03-19T18:58:49Z","html_url":"https://gist.github.com/2123980","user":{"url":"https://api.github.com/users/rwldrn","login":"rwldrn","gravatar_id":"36c697d974542aadaee06a0f39cb1437","avatar_url":"https://secure.gravatar.com/avatar/36c697d974542aadaee06a0f39cb1437?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":27985},"created_at":"2012-03-19T18:58:49Z","id":"2123980","description":""},{"git_pull_url":"git://gist.github.com/2123979.git","url":"https://api.github.com/gists/2123979","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123979/b14a95663fc363ee5a67ef9cf1a5ac27da088e10/gistfile1.txt","language":"Text","size":146,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123979.git","public":true,"comments":1,"updated_at":"2012-03-19T18:58:46Z","html_url":"https://gist.github.com/2123979","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:58:46Z","id":"2123979","description":"Watch Sean Loeffler vs Buddy Roberts Online Free"},{"git_pull_url":"git://gist.github.com/2123978.git","url":"https://api.github.com/gists/2123978","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123978/2f648ef35737f710a4796a26fb0c3a6047ac8a77/gistfile1.txt","language":"Text","size":125,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123978.git","public":true,"comments":1,"updated_at":"2012-03-19T18:58:38Z","html_url":"https://gist.github.com/2123978","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:58:38Z","id":"2123978","description":"Sean Loeffler vs Buddy Roberts Start Time"},{"git_pull_url":"git://gist.github.com/2123977.git","url":"https://api.github.com/gists/2123977","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123977/6390b8f8a7b452964f8e9cc16b8b309a116d705a/gistfile1.txt","language":"Text","size":116,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123977.git","public":true,"comments":1,"updated_at":"2012-03-19T18:58:29Z","html_url":"https://gist.github.com/2123977","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:58:29Z","id":"2123977","description":"Sean Loeffler vs Buddy Roberts Torrent"},{"git_pull_url":"git://gist.github.com/2123974.git","url":"https://api.github.com/gists/2123974","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123974/2768937243dbf7149615b0044c9dec8f0f8f5409/gistfile1.txt","language":"Text","size":119,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123974.git","public":true,"comments":1,"updated_at":"2012-03-19T18:58:21Z","html_url":"https://gist.github.com/2123974","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:58:21Z","id":"2123974","description":"Sean Loeffler vs Buddy Roberts Download"},{"git_pull_url":"git://gist.github.com/2123972.git","url":"https://api.github.com/gists/2123972","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123972/a07c5f2ba255c01c3371c88d7982c0dc3ff9743d/gistfile1.txt","language":"Text","size":143,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123972.git","public":true,"comments":1,"updated_at":"2012-03-19T18:58:08Z","html_url":"https://gist.github.com/2123972","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:58:08Z","id":"2123972","description":"Sean Loeffler vs Buddy Roberts Weigh In Results"},{"git_pull_url":"git://gist.github.com/2123971.git","url":"https://api.github.com/gists/2123971","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123971/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123971.git","public":true,"comments":0,"updated_at":"2012-03-19T18:58:01Z","html_url":"https://gist.github.com/2123971","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:58:01Z","id":"2123971","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123970.git","url":"https://api.github.com/gists/2123970","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123970/605a39f9d0911e116c94986767f8c503a61cd1e2/gistfile1.txt","language":"Text","size":318,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123970.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:59Z","html_url":"https://gist.github.com/2123970","user":{"url":"https://api.github.com/users/sportsvine","login":"sportsvine","gravatar_id":"a688f98b2da508dce9cbedcb9377847f","avatar_url":"https://secure.gravatar.com/avatar/a688f98b2da508dce9cbedcb9377847f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1549957},"created_at":"2012-03-19T18:57:59Z","id":"2123970","description":"((NHL)))Tampa Bay Lightning vs Buffalo Sabres Live Stream Online tv on pc"},{"git_pull_url":"git://gist.github.com/2123969.git","url":"https://api.github.com/gists/2123969","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123969/126496f25e59403ae2f97ef02565b22ac649fc0f/gistfile1.txt","language":"Text","size":119,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123969.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:59Z","html_url":"https://gist.github.com/2123969","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:59Z","id":"2123969","description":"Sean Loeffler vs Buddy Roberts Weigh In"},{"git_pull_url":"git://gist.github.com/2123968.git","url":"https://api.github.com/gists/2123968","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123968/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123968.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:55Z","html_url":"https://gist.github.com/2123968","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:57:55Z","id":"2123968","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123967.git","url":"https://api.github.com/gists/2123967","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123967/c9f611e8f4b015086f5b509d5ac8d950c5995b62/gistfile1.txt","language":"Text","size":131,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123967.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:51Z","html_url":"https://gist.github.com/2123967","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:51Z","id":"2123967","description":"Sean Loeffler vs Buddy Roberts Best Moments"},{"git_pull_url":"git://gist.github.com/2123966.git","url":"https://api.github.com/gists/2123966","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123966/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123966.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:50Z","html_url":"https://gist.github.com/2123966","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:57:50Z","id":"2123966","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123965.git","url":"https://api.github.com/gists/2123965","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123965/a7cfc1f710df62e30924f476c9df5f54619cc1c3/gistfile1.txt","language":"Text","size":305,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123965.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:46Z","html_url":"https://gist.github.com/2123965","user":{"url":"https://api.github.com/users/theoneandonly22","login":"theoneandonly22","gravatar_id":"88f22222440ad3e335283aab2d068508","avatar_url":"https://secure.gravatar.com/avatar/88f22222440ad3e335283aab2d068508?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1547451},"created_at":"2012-03-19T18:57:46Z","id":"2123965","description":"Catch How I Met Your Mother Season 7 Episode 19 \"The Broath\" Free Video | Watch How I Met Your Mother Season 7 Episode 19 Online Free Streaming"},{"git_pull_url":"git://gist.github.com/2123964.git","url":"https://api.github.com/gists/2123964","files":{"sqldeveloper.desktop":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123964/f95705d2b7622e4b711814774c03ea94c8354571/sqldeveloper.desktop","language":null,"size":324,"filename":"sqldeveloper.desktop"}},"git_push_url":"git@gist.github.com:2123964.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:44Z","html_url":"https://gist.github.com/2123964","user":{"url":"https://api.github.com/users/americodls","login":"americodls","gravatar_id":"b4090444d21c914ff6f8dc232b55d536","avatar_url":"https://secure.gravatar.com/avatar/b4090444d21c914ff6f8dc232b55d536?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1478616},"created_at":"2012-03-19T18:57:44Z","id":"2123964","description":"SqlDeveloper Desktop Application"},{"git_pull_url":"git://gist.github.com/2123963.git","url":"https://api.github.com/gists/2123963","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123963/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123963.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:43Z","html_url":"https://gist.github.com/2123963","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:57:43Z","id":"2123963","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123962.git","url":"https://api.github.com/gists/2123962","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123962/cf041fe66d8a48a26884266542ab48e8f398c85c/gistfile1.txt","language":"Text","size":125,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123962.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:43Z","html_url":"https://gist.github.com/2123962","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:43Z","id":"2123962","description":"Sean Loeffler vs Buddy Roberts Highlights"},{"git_pull_url":"git://gist.github.com/2123961.git","url":"https://api.github.com/gists/2123961","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123961/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123961.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:38Z","html_url":"https://gist.github.com/2123961","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:57:38Z","id":"2123961","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123960.git","url":"https://api.github.com/gists/2123960","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123960/f59d32734255638e752e74b246a735300efcc993/gistfile1.txt","language":"Text","size":107,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123960.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:35Z","html_url":"https://gist.github.com/2123960","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:35Z","id":"2123960","description":"Sean Loeffler vs Buddy Roberts Live"},{"git_pull_url":"git://gist.github.com/2123959.git","url":"https://api.github.com/gists/2123959","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123959/68c0c9a0bebcf201a4d0f95b8540e11a44a4ad61/gistfile1.txt","language":"Text","size":149,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123959.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:27Z","html_url":"https://gist.github.com/2123959","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:27Z","id":"2123959","description":"Download Sean Loeffler vs Buddy Roberts Megavideo"},{"git_pull_url":"git://gist.github.com/2123958.git","url":"https://api.github.com/gists/2123958","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123958/ac11d1c1c59fa4d3a0d2e059e22682b885fb7e2a/gistfile1.txt","language":"Text","size":128,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123958.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:18Z","html_url":"https://gist.github.com/2123958","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:18Z","id":"2123958","description":"Watch Sean Loeffler vs Buddy Roberts Fight"},{"git_pull_url":"git://gist.github.com/2123957.git","url":"https://api.github.com/gists/2123957","files":{"nGramr":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123957/ba8661e16d5923b2c5c99fa87b0424892954467b/nGramr","language":null,"size":686,"filename":"nGramr"}},"git_push_url":"git@gist.github.com:2123957.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:13Z","html_url":"https://gist.github.com/2123957","user":{"url":"https://api.github.com/users/beezee","login":"beezee","gravatar_id":"52a4e4e17495ed8f4344f364ef0f5254","avatar_url":"https://secure.gravatar.com/avatar/52a4e4e17495ed8f4344f364ef0f5254?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":682587},"created_at":"2012-03-19T18:57:13Z","id":"2123957","description":"caclulate every possible combination of n words up to x from a string"},{"git_pull_url":"git://gist.github.com/2123956.git","url":"https://api.github.com/gists/2123956","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123956/d4c22ab69a272f600e9c78ddbe1d466d7c61ffa6/gistfile1.txt","language":"Text","size":125,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123956.git","public":true,"comments":1,"updated_at":"2012-03-19T18:57:05Z","html_url":"https://gist.github.com/2123956","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:57:05Z","id":"2123956","description":"Sean Loeffler vs Buddy Roberts Prediction"},{"git_pull_url":"git://gist.github.com/2123955.git","url":"https://api.github.com/gists/2123955","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123955/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123955.git","public":true,"comments":0,"updated_at":"2012-03-19T18:57:00Z","html_url":"https://gist.github.com/2123955","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:57:00Z","id":"2123955","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123954.git","url":"https://api.github.com/gists/2123954","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123954/7aa2680dffea3fa557500edffa262b38a5e50cb4/gistfile1.txt","language":"Text","size":131,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123954.git","public":true,"comments":1,"updated_at":"2012-03-19T18:56:57Z","html_url":"https://gist.github.com/2123954","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:57Z","id":"2123954","description":"Sean Loeffler vs Buddy Roberts online video"},{"git_pull_url":"git://gist.github.com/2123952.git","url":"https://api.github.com/gists/2123952","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123952/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123952.git","public":true,"comments":0,"updated_at":"2012-03-19T18:56:49Z","html_url":"https://gist.github.com/2123952","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:49Z","id":"2123952","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"}] - -GET /gists/public?page=2 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4918'), ('content-length', '26753'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"fcbfda16611b700ba8dc77c9144c494f"'), ('date', 'Mon, 19 Mar 2012 18:59:14 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/gists/2123951","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123951/9603f315c621318c603d5369d0bc60bc77e7680d/gistfile1.txt","type":"text/plain","language":"Text","size":116,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123951.git","public":true,"html_url":"https://gist.github.com/2123951","git_push_url":"git@gist.github.com:2123951.git","comments":1,"updated_at":"2012-03-19T18:56:48Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:48Z","id":"2123951","description":"Sean Loeffler vs Buddy Roberts Preview"},{"url":"https://api.github.com/gists/2123950","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123950/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123950.git","public":true,"html_url":"https://gist.github.com/2123950","git_push_url":"git@gist.github.com:2123950.git","comments":0,"updated_at":"2012-03-19T18:56:45Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:45Z","id":"2123950","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123949","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123949/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123949.git","public":true,"html_url":"https://gist.github.com/2123949","git_push_url":"git@gist.github.com:2123949.git","comments":0,"updated_at":"2012-03-19T18:56:42Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:42Z","id":"2123949","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123948","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123948/741ada2b6380339222afb2b369379e6c50d9c5f5/gistfile1.txt","type":"text/plain","language":"Text","size":110,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123948.git","public":true,"html_url":"https://gist.github.com/2123948","git_push_url":"git@gist.github.com:2123948.git","comments":1,"updated_at":"2012-03-19T18:56:39Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:39Z","id":"2123948","description":"Sean Loeffler vs Buddy Roberts round"},{"url":"https://api.github.com/gists/2123947","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123947/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123947.git","public":true,"html_url":"https://gist.github.com/2123947","git_push_url":"git@gist.github.com:2123947.git","comments":0,"updated_at":"2012-03-19T18:56:34Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:34Z","id":"2123947","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123946","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123946/f5e163621b19fdae63e0460894f66c36d8755e3b/gistfile1.txt","type":"text/plain","language":"Text","size":110,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123946.git","public":true,"html_url":"https://gist.github.com/2123946","git_push_url":"git@gist.github.com:2123946.git","comments":1,"updated_at":"2012-03-19T18:56:31Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:31Z","id":"2123946","description":"Sean Loeffler vs Buddy Roberts Video"},{"url":"https://api.github.com/gists/2123945","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123945/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123945.git","public":true,"html_url":"https://gist.github.com/2123945","git_push_url":"git@gist.github.com:2123945.git","comments":0,"updated_at":"2012-03-19T18:56:30Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:30Z","id":"2123945","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123943","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123943/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123943.git","public":true,"html_url":"https://gist.github.com/2123943","git_push_url":"git@gist.github.com:2123943.git","comments":0,"updated_at":"2012-03-19T18:56:27Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:27Z","id":"2123943","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123941","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123941/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123941.git","public":true,"html_url":"https://gist.github.com/2123941","git_push_url":"git@gist.github.com:2123941.git","comments":0,"updated_at":"2012-03-19T18:56:25Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:25Z","id":"2123941","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123940","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123940/38f3eb90def0b594e1f38cf761a408a4affb1df0/gistfile1.txt","type":"text/plain","language":"Text","size":110,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123940.git","public":true,"html_url":"https://gist.github.com/2123940","git_push_url":"git@gist.github.com:2123940.git","comments":1,"updated_at":"2012-03-19T18:56:22Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:22Z","id":"2123940","description":"Watch Sean Loeffler vs Buddy Roberts"},{"url":"https://api.github.com/gists/2123939","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123939/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123939.git","public":true,"html_url":"https://gist.github.com/2123939","git_push_url":"git@gist.github.com:2123939.git","comments":0,"updated_at":"2012-03-19T18:56:22Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:22Z","id":"2123939","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123938","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123938/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123938.git","public":true,"html_url":"https://gist.github.com/2123938","git_push_url":"git@gist.github.com:2123938.git","comments":0,"updated_at":"2012-03-19T18:56:21Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:21Z","id":"2123938","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123937","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123937/f6ca0d63639d93ce38a5fd7bb14ee5984a0663db/gistfile1.txt","type":"text/plain","language":"Text","size":312,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123937.git","public":true,"html_url":"https://gist.github.com/2123937","git_push_url":"git@gist.github.com:2123937.git","comments":1,"updated_at":"2012-03-19T18:56:18Z","user":{"url":"https://api.github.com/users/sportsvine","gravatar_id":"a688f98b2da508dce9cbedcb9377847f","login":"sportsvine","avatar_url":"https://secure.gravatar.com/avatar/a688f98b2da508dce9cbedcb9377847f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1549957},"created_at":"2012-03-19T18:56:18Z","id":"2123937","description":"NHL)))Watch Minnesota Wild vs Vancouver Canucks Live Stream Online"},{"url":"https://api.github.com/gists/2123936","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123936/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123936.git","public":true,"html_url":"https://gist.github.com/2123936","git_push_url":"git@gist.github.com:2123936.git","comments":0,"updated_at":"2012-03-19T18:56:17Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:17Z","id":"2123936","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123935","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123935/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123935.git","public":true,"html_url":"https://gist.github.com/2123935","git_push_url":"git@gist.github.com:2123935.git","comments":0,"updated_at":"2012-03-19T18:56:17Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:17Z","id":"2123935","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123934","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123934/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123934.git","public":true,"html_url":"https://gist.github.com/2123934","git_push_url":"git@gist.github.com:2123934.git","comments":0,"updated_at":"2012-03-19T18:56:17Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:17Z","id":"2123934","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123933","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123933/6fc839c7ecd6d9f4e16631c3ddbff948aaf3fc23/gistfile1.txt","type":"text/plain","language":"Text","size":1647,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123933.git","public":true,"html_url":"https://gist.github.com/2123933","git_push_url":"git@gist.github.com:2123933.git","comments":1,"updated_at":"2012-03-19T18:56:16Z","user":{"url":"https://api.github.com/users/shaplarani4444","gravatar_id":"48110af83c287272e242b41ed95b346a","login":"shaplarani4444","avatar_url":"https://secure.gravatar.com/avatar/48110af83c287272e242b41ed95b346a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1545751},"created_at":"2012-03-19T18:56:16Z","id":"2123933","description":"%%%%% live TV LING %%%%% Illinois State vs Stanford Live NCAA Basketball Stream Online TV On PC "},{"url":"https://api.github.com/gists/2123932","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123932/607034f8d6522cb5d537ca89449ff41e1134ae2d/gistfile1.txt","type":"text/plain","language":"Text","size":140,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123932.git","public":true,"html_url":"https://gist.github.com/2123932","git_push_url":"git@gist.github.com:2123932.git","comments":1,"updated_at":"2012-03-19T18:56:13Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:13Z","id":"2123932","description":"Watch Sean Loeffler vs Buddy Roberts Live Free"},{"url":"https://api.github.com/gists/2123931","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123931/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123931.git","public":true,"html_url":"https://gist.github.com/2123931","git_push_url":"git@gist.github.com:2123931.git","comments":0,"updated_at":"2012-03-19T18:56:12Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:12Z","id":"2123931","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123930","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123930/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123930.git","public":true,"html_url":"https://gist.github.com/2123930","git_push_url":"git@gist.github.com:2123930.git","comments":0,"updated_at":"2012-03-19T18:56:12Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:12Z","id":"2123930","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123929","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123929/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123929.git","public":true,"html_url":"https://gist.github.com/2123929","git_push_url":"git@gist.github.com:2123929.git","comments":0,"updated_at":"2012-03-19T18:56:09Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:09Z","id":"2123929","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123928","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123928/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123928.git","public":true,"html_url":"https://gist.github.com/2123928","git_push_url":"git@gist.github.com:2123928.git","comments":0,"updated_at":"2012-03-19T18:56:08Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:08Z","id":"2123928","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123926","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123926/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123926.git","public":true,"html_url":"https://gist.github.com/2123926","git_push_url":"git@gist.github.com:2123926.git","comments":0,"updated_at":"2012-03-19T18:56:04Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:04Z","id":"2123926","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123925","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123925/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123925.git","public":true,"html_url":"https://gist.github.com/2123925","git_push_url":"git@gist.github.com:2123925.git","comments":0,"updated_at":"2012-03-19T18:56:03Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:56:03Z","id":"2123925","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123923","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123923/74f527d536f64e5056b1a04eac3823d83ce2f76e/gistfile1.txt","type":"text/plain","language":"Text","size":119,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123923.git","public":true,"html_url":"https://gist.github.com/2123923","git_push_url":"git@gist.github.com:2123923.git","comments":1,"updated_at":"2012-03-19T18:56:01Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:56:01Z","id":"2123923","description":"HQ Sean Loeffler vs Buddy Roberts video"},{"url":"https://api.github.com/gists/2123922","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123922/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123922.git","public":true,"html_url":"https://gist.github.com/2123922","git_push_url":"git@gist.github.com:2123922.git","comments":0,"updated_at":"2012-03-19T18:56:00Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:56:00Z","id":"2123922","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123921","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123921/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123921.git","public":true,"html_url":"https://gist.github.com/2123921","git_push_url":"git@gist.github.com:2123921.git","comments":0,"updated_at":"2012-03-19T18:55:59Z","user":{"url":"https://api.github.com/users/das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","login":"das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:55:59Z","id":"2123921","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123919","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123919/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123919.git","public":true,"html_url":"https://gist.github.com/2123919","git_push_url":"git@gist.github.com:2123919.git","comments":0,"updated_at":"2012-03-19T18:55:56Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:55:56Z","id":"2123919","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123918","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123918/a5d77d255493d2ab5e3b23d46ba79446bd677c64/gistfile1.txt","type":"text/plain","language":"Text","size":125,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123918.git","public":true,"html_url":"https://gist.github.com/2123918","git_push_url":"git@gist.github.com:2123918.git","comments":1,"updated_at":"2012-03-19T18:55:52Z","user":{"url":"https://api.github.com/users/juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","login":"juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:55:52Z","id":"2123918","description":"Sean Loeffler vs Buddy Roberts full fight"},{"url":"https://api.github.com/gists/2123917","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123917/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123917.git","public":true,"html_url":"https://gist.github.com/2123917","git_push_url":"git@gist.github.com:2123917.git","comments":0,"updated_at":"2012-03-19T18:55:51Z","user":{"url":"https://api.github.com/users/papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","login":"papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:55:51Z","id":"2123917","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"}] - -GET /gists/public?page=3 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4917'), ('content-length', '26960'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"f89632db744df016bef0854d05c2b8df"'), ('date', 'Mon, 19 Mar 2012 18:59:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/gists/2123916","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123916/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123916.git","public":true,"git_push_url":"git@gist.github.com:2123916.git","comments":0,"updated_at":"2012-03-19T18:55:47Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:47Z","html_url":"https://gist.github.com/2123916","id":"2123916","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123915","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123915/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123915.git","public":true,"git_push_url":"git@gist.github.com:2123915.git","comments":0,"updated_at":"2012-03-19T18:55:44Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:44Z","html_url":"https://gist.github.com/2123915","id":"2123915","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123914","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123914/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123914.git","public":true,"git_push_url":"git@gist.github.com:2123914.git","comments":0,"updated_at":"2012-03-19T18:55:42Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:42Z","html_url":"https://gist.github.com/2123914","id":"2123914","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123913","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":522,"raw_url":"https://gist.github.com/raw/2123913/c0b7e45588c909905c8a427b23f91af502621319/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123913.git","public":true,"git_push_url":"git@gist.github.com:2123913.git","comments":1,"updated_at":"2012-03-19T18:55:42Z","user":{"url":"https://api.github.com/users/jhgvjhvgjvh","avatar_url":"https://secure.gravatar.com/avatar/3afb59a746e0c03f6779fcec740e9ee2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jhgvjhvgjvh","gravatar_id":"3afb59a746e0c03f6779fcec740e9ee2","id":1548402},"created_at":"2012-03-19T18:55:42Z","html_url":"https://gist.github.com/2123913","id":"2123913","description":"@@@W@@@Espanyol vs Racing live streaming Spanish La Liga soccer on pc"},{"url":"https://api.github.com/gists/2123912","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":107,"raw_url":"https://gist.github.com/raw/2123912/00e0cbee49d1190ab0c07dd15d37320eafb77cbd/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123912.git","public":true,"git_push_url":"git@gist.github.com:2123912.git","comments":1,"updated_at":"2012-03-19T18:55:41Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:55:41Z","html_url":"https://gist.github.com/2123912","id":"2123912","description":"Sean Loeffler vs Buddy Roberts Free"},{"url":"https://api.github.com/gists/2123910","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123910/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123910.git","public":true,"git_push_url":"git@gist.github.com:2123910.git","comments":0,"updated_at":"2012-03-19T18:55:36Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:36Z","html_url":"https://gist.github.com/2123910","id":"2123910","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123909","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123909/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123909.git","public":true,"git_push_url":"git@gist.github.com:2123909.git","comments":0,"updated_at":"2012-03-19T18:55:35Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:35Z","html_url":"https://gist.github.com/2123909","id":"2123909","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123908","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123908/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123908.git","public":true,"git_push_url":"git@gist.github.com:2123908.git","comments":0,"updated_at":"2012-03-19T18:55:31Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:31Z","html_url":"https://gist.github.com/2123908","id":"2123908","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123907","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123907/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123907.git","public":true,"git_push_url":"git@gist.github.com:2123907.git","comments":0,"updated_at":"2012-03-19T18:55:29Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:29Z","html_url":"https://gist.github.com/2123907","id":"2123907","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123906","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123906/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123906.git","public":true,"git_push_url":"git@gist.github.com:2123906.git","comments":0,"updated_at":"2012-03-19T18:55:27Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:27Z","html_url":"https://gist.github.com/2123906","id":"2123906","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123905","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123905/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123905.git","public":true,"git_push_url":"git@gist.github.com:2123905.git","comments":0,"updated_at":"2012-03-19T18:55:25Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:25Z","html_url":"https://gist.github.com/2123905","id":"2123905","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123904","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123904/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123904.git","public":true,"git_push_url":"git@gist.github.com:2123904.git","comments":0,"updated_at":"2012-03-19T18:55:25Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:25Z","html_url":"https://gist.github.com/2123904","id":"2123904","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123903","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123903/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123903.git","public":true,"git_push_url":"git@gist.github.com:2123903.git","comments":0,"updated_at":"2012-03-19T18:55:23Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:23Z","html_url":"https://gist.github.com/2123903","id":"2123903","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123902","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123902/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123902.git","public":true,"git_push_url":"git@gist.github.com:2123902.git","comments":0,"updated_at":"2012-03-19T18:55:20Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:20Z","html_url":"https://gist.github.com/2123902","id":"2123902","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123901","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123901/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123901.git","public":true,"git_push_url":"git@gist.github.com:2123901.git","comments":0,"updated_at":"2012-03-19T18:55:19Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:19Z","html_url":"https://gist.github.com/2123901","id":"2123901","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123900","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123900/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123900.git","public":true,"git_push_url":"git@gist.github.com:2123900.git","comments":0,"updated_at":"2012-03-19T18:55:17Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:17Z","html_url":"https://gist.github.com/2123900","id":"2123900","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123899","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123899/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123899.git","public":true,"git_push_url":"git@gist.github.com:2123899.git","comments":0,"updated_at":"2012-03-19T18:55:16Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:16Z","html_url":"https://gist.github.com/2123899","id":"2123899","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123898","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":113,"raw_url":"https://gist.github.com/raw/2123898/dc611000e97e57143dace375f14a8f36cefc2022/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123898.git","public":true,"git_push_url":"git@gist.github.com:2123898.git","comments":1,"updated_at":"2012-03-19T18:55:16Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:55:16Z","html_url":"https://gist.github.com/2123898","id":"2123898","description":"Sean Loeffler vs Buddy Roberts Result"},{"url":"https://api.github.com/gists/2123897","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123897/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123897.git","public":true,"git_push_url":"git@gist.github.com:2123897.git","comments":0,"updated_at":"2012-03-19T18:55:14Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:14Z","html_url":"https://gist.github.com/2123897","id":"2123897","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123896","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123896/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123896.git","public":true,"git_push_url":"git@gist.github.com:2123896.git","comments":0,"updated_at":"2012-03-19T18:55:13Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:13Z","html_url":"https://gist.github.com/2123896","id":"2123896","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123895","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123895/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123895.git","public":true,"git_push_url":"git@gist.github.com:2123895.git","comments":0,"updated_at":"2012-03-19T18:55:10Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:10Z","html_url":"https://gist.github.com/2123895","id":"2123895","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123894","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123894/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123894.git","public":true,"git_push_url":"git@gist.github.com:2123894.git","comments":0,"updated_at":"2012-03-19T18:55:09Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:09Z","html_url":"https://gist.github.com/2123894","id":"2123894","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123892","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123892/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123892.git","public":true,"git_push_url":"git@gist.github.com:2123892.git","comments":0,"updated_at":"2012-03-19T18:55:08Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:08Z","html_url":"https://gist.github.com/2123892","id":"2123892","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123891","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":522,"raw_url":"https://gist.github.com/raw/2123891/2a26d5362ffb207af2539e1f0e3359a6a8d77411/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123891.git","public":true,"git_push_url":"git@gist.github.com:2123891.git","comments":1,"updated_at":"2012-03-19T18:55:07Z","user":{"url":"https://api.github.com/users/jhgvjhvgjvh","avatar_url":"https://secure.gravatar.com/avatar/3afb59a746e0c03f6779fcec740e9ee2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jhgvjhvgjvh","gravatar_id":"3afb59a746e0c03f6779fcec740e9ee2","id":1548402},"created_at":"2012-03-19T18:55:07Z","html_url":"https://gist.github.com/2123891","id":"2123891","description":"Racing vs Espanyol live streaming Spanish La Liga soccer on pc"},{"url":"https://api.github.com/gists/2123890","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123890/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123890.git","public":true,"git_push_url":"git@gist.github.com:2123890.git","comments":0,"updated_at":"2012-03-19T18:55:07Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:07Z","html_url":"https://gist.github.com/2123890","id":"2123890","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123889","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123889/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123889.git","public":true,"git_push_url":"git@gist.github.com:2123889.git","comments":0,"updated_at":"2012-03-19T18:55:06Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:55:06Z","html_url":"https://gist.github.com/2123889","id":"2123889","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123888","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":107,"raw_url":"https://gist.github.com/raw/2123888/f59d32734255638e752e74b246a735300efcc993/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123888.git","public":true,"git_push_url":"git@gist.github.com:2123888.git","comments":1,"updated_at":"2012-03-19T18:55:04Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:55:04Z","html_url":"https://gist.github.com/2123888","id":"2123888","description":"Sean Loeffler vs Buddy Roberts Live"},{"url":"https://api.github.com/gists/2123887","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123887/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123887.git","public":true,"git_push_url":"git@gist.github.com:2123887.git","comments":0,"updated_at":"2012-03-19T18:55:03Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:03Z","html_url":"https://gist.github.com/2123887","id":"2123887","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123886","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123886/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123886.git","public":true,"git_push_url":"git@gist.github.com:2123886.git","comments":0,"updated_at":"2012-03-19T18:55:03Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:55:03Z","html_url":"https://gist.github.com/2123886","id":"2123886","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123885","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2528,"raw_url":"https://gist.github.com/raw/2123885/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123885.git","public":true,"git_push_url":"git@gist.github.com:2123885.git","comments":0,"updated_at":"2012-03-19T18:55:02Z","user":{"url":"https://api.github.com/users/ananda145","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","id":1553051},"created_at":"2012-03-19T18:55:02Z","html_url":"https://gist.github.com/2123885","id":"2123885","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"}] - -GET /gists/public?page=4 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4916'), ('content-length', '26832'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"7b6ebca908d584b71d87c0a15e4551c7"'), ('date', 'Mon, 19 Mar 2012 18:59:18 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_pull_url":"git://gist.github.com/2123884.git","url":"https://api.github.com/gists/2123884","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123884/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123884.git","public":true,"comments":0,"updated_at":"2012-03-19T18:55:01Z","html_url":"https://gist.github.com/2123884","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:55:01Z","id":"2123884","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123883.git","url":"https://api.github.com/gists/2123883","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123883/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123883.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:59Z","html_url":"https://gist.github.com/2123883","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:54:59Z","id":"2123883","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123882.git","url":"https://api.github.com/gists/2123882","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123882/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123882.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:57Z","html_url":"https://gist.github.com/2123882","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:54:57Z","id":"2123882","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123881.git","url":"https://api.github.com/gists/2123881","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123881/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123881.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:57Z","html_url":"https://gist.github.com/2123881","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:57Z","id":"2123881","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123880.git","url":"https://api.github.com/gists/2123880","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123880/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123880.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:56Z","html_url":"https://gist.github.com/2123880","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:54:56Z","id":"2123880","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123879.git","url":"https://api.github.com/gists/2123879","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123879/aace1b6431a35ed1bfdc05105e4973309828fb81/gistfile1.txt","language":"Text","size":128,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123879.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:54Z","html_url":"https://gist.github.com/2123879","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:54Z","id":"2123879","description":"Sean Loeffler vs Buddy Roberts fight video"},{"git_pull_url":"git://gist.github.com/2123878.git","url":"https://api.github.com/gists/2123878","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123878/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123878.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:54Z","html_url":"https://gist.github.com/2123878","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:54:54Z","id":"2123878","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123877.git","url":"https://api.github.com/gists/2123877","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123877/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123877.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:52Z","html_url":"https://gist.github.com/2123877","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:52Z","id":"2123877","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123876.git","url":"https://api.github.com/gists/2123876","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123876/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123876.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:50Z","html_url":"https://gist.github.com/2123876","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:50Z","id":"2123876","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123875.git","url":"https://api.github.com/gists/2123875","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123875/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123875.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:48Z","html_url":"https://gist.github.com/2123875","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:54:48Z","id":"2123875","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123874.git","url":"https://api.github.com/gists/2123874","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123874/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123874.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:46Z","html_url":"https://gist.github.com/2123874","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:46Z","id":"2123874","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123873.git","url":"https://api.github.com/gists/2123873","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123873/d59c8c28ee5bdf4d8dc15f882056ea15e0598ce9/gistfile1.txt","language":"Text","size":143,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123873.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:46Z","html_url":"https://gist.github.com/2123873","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:46Z","id":"2123873","description":"Download Vagner Rocha vs Jonathan Brookins Free"},{"git_pull_url":"git://gist.github.com/2123872.git","url":"https://api.github.com/gists/2123872","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123872/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123872.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:45Z","html_url":"https://gist.github.com/2123872","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:54:45Z","id":"2123872","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123871.git","url":"https://api.github.com/gists/2123871","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123871/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123871.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:43Z","html_url":"https://gist.github.com/2123871","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:43Z","id":"2123871","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123870.git","url":"https://api.github.com/gists/2123870","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123870/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123870.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:43Z","html_url":"https://gist.github.com/2123870","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:43Z","id":"2123870","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123868.git","url":"https://api.github.com/gists/2123868","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123868/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123868.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:42Z","html_url":"https://gist.github.com/2123868","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:54:42Z","id":"2123868","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123867.git","url":"https://api.github.com/gists/2123867","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123867/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123867.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:42Z","html_url":"https://gist.github.com/2123867","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:54:42Z","id":"2123867","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123866.git","url":"https://api.github.com/gists/2123866","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123866/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123866.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:39Z","html_url":"https://gist.github.com/2123866","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:54:39Z","id":"2123866","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123865.git","url":"https://api.github.com/gists/2123865","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123865/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123865.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:39Z","html_url":"https://gist.github.com/2123865","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:39Z","id":"2123865","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123864.git","url":"https://api.github.com/gists/2123864","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123864/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123864.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:39Z","html_url":"https://gist.github.com/2123864","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:39Z","id":"2123864","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123863.git","url":"https://api.github.com/gists/2123863","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123863/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123863.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:38Z","html_url":"https://gist.github.com/2123863","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:38Z","id":"2123863","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123862.git","url":"https://api.github.com/gists/2123862","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123862/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123862.git","public":true,"comments":0,"updated_at":"2012-03-19T18:54:37Z","html_url":"https://gist.github.com/2123862","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:54:37Z","id":"2123862","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123861.git","url":"https://api.github.com/gists/2123861","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123861/3537c31175a7fb65ce4541771f6b8aa053aaaadd/gistfile1.txt","language":"Text","size":128,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123861.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:36Z","html_url":"https://gist.github.com/2123861","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:36Z","id":"2123861","description":"Download Vagner Rocha vs Jonathan Brookins"},{"git_pull_url":"git://gist.github.com/2123860.git","url":"https://api.github.com/gists/2123860","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123860/87c49a4fd181403390521cc41d9dcbc6a18d03c3/gistfile1.txt","language":"Text","size":146,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123860.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:26Z","html_url":"https://gist.github.com/2123860","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:26Z","id":"2123860","description":"Download Vagner Rocha vs Jonathan Brookins Video"},{"git_pull_url":"git://gist.github.com/2123859.git","url":"https://api.github.com/gists/2123859","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123859/a0eecabe0302579f0862ec0ac12e6c925f000f97/gistfile1.txt","language":"Text","size":161,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123859.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:19Z","html_url":"https://gist.github.com/2123859","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:19Z","id":"2123859","description":"Download Vagner Rocha vs Jonathan Brookins Rapidshare"},{"git_pull_url":"git://gist.github.com/2123858.git","url":"https://api.github.com/gists/2123858","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123858/7bc6fa33972affbed49e11a5bd4694aeb9aa2e6d/gistfile1.txt","language":"Text","size":491,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123858.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:13Z","html_url":"https://gist.github.com/2123858","user":{"url":"https://api.github.com/users/jhgvjhvgjvh","login":"jhgvjhvgjvh","gravatar_id":"3afb59a746e0c03f6779fcec740e9ee2","avatar_url":"https://secure.gravatar.com/avatar/3afb59a746e0c03f6779fcec740e9ee2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1548402},"created_at":"2012-03-19T18:54:13Z","id":"2123858","description":"Enjoy Genoa vs Roma live Stream Serie A soccer on your pc."},{"git_pull_url":"git://gist.github.com/2123857.git","url":"https://api.github.com/gists/2123857","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123857/684da8d39554a1d2ece9948c0e7a728582dd8f7c/gistfile1.txt","language":"Text","size":161,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123857.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:11Z","html_url":"https://gist.github.com/2123857","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:11Z","id":"2123857","description":"Download Vagner Rocha vs Jonathan Brookins full fight"},{"git_pull_url":"git://gist.github.com/2123855.git","url":"https://api.github.com/gists/2123855","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123855/6afe3e30a8e686aa6eafddd0f0b958e0514de6b5/gistfile1.txt","language":"Text","size":146,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123855.git","public":true,"comments":1,"updated_at":"2012-03-19T18:54:04Z","html_url":"https://gist.github.com/2123855","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:54:04Z","id":"2123855","description":"Watch Vagner Rocha vs Jonathan Brookins For Free"},{"git_pull_url":"git://gist.github.com/2123854.git","url":"https://api.github.com/gists/2123854","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123854/11d6ca3317d1027c072f11ce84fa74090aca6613/gistfile1.txt","language":"Text","size":155,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123854.git","public":true,"comments":1,"updated_at":"2012-03-19T18:53:56Z","html_url":"https://gist.github.com/2123854","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:53:56Z","id":"2123854","description":"Watch Vagner Rocha vs Jonathan Brookins Online Free"},{"git_pull_url":"git://gist.github.com/2123853.git","url":"https://api.github.com/gists/2123853","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123853/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123853.git","public":true,"comments":0,"updated_at":"2012-03-19T18:53:52Z","html_url":"https://gist.github.com/2123853","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:53:52Z","id":"2123853","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"}] - -GET /gists/public?page=5 {} null -200 -[('status', '200 OK'), ('content-length', '26787'), ('x-ratelimit-remaining', '4915'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"18493abc51d90ab1ec13ea849a036340"'), ('date', 'Mon, 19 Mar 2012 18:59:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"created_at":"2012-03-19T18:53:56Z","git_push_url":"git@gist.github.com:2123854.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123854","description":"Watch Vagner Rocha vs Jonathan Brookins Online Free","updated_at":"2012-03-19T18:53:56Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123854/11d6ca3317d1027c072f11ce84fa74090aca6613/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":155}},"id":"2123854","url":"https://api.github.com/gists/2123854","git_pull_url":"git://gist.github.com/2123854.git"},{"created_at":"2012-03-19T18:53:52Z","git_push_url":"git@gist.github.com:2123853.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123853","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:52Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123853/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123853","url":"https://api.github.com/gists/2123853","git_pull_url":"git://gist.github.com/2123853.git"},{"created_at":"2012-03-19T18:53:47Z","git_push_url":"git@gist.github.com:2123852.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123852","description":"Vagner Rocha vs Jonathan Brookins Start Time","updated_at":"2012-03-19T18:53:47Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123852/f3300e8850d8134597a5bccf0ca1891a00192962/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":134}},"id":"2123852","url":"https://api.github.com/gists/2123852","git_pull_url":"git://gist.github.com/2123852.git"},{"created_at":"2012-03-19T18:53:45Z","git_push_url":"git@gist.github.com:2123851.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123851","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:45Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123851/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123851","url":"https://api.github.com/gists/2123851","git_pull_url":"git://gist.github.com/2123851.git"},{"created_at":"2012-03-19T18:53:41Z","git_push_url":"git@gist.github.com:2123850.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123850","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:41Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123850/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123850","url":"https://api.github.com/gists/2123850","git_pull_url":"git://gist.github.com/2123850.git"},{"created_at":"2012-03-19T18:53:40Z","git_push_url":"git@gist.github.com:2123849.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123849","description":"Vagner Rocha vs Jonathan Brookins Torrent","updated_at":"2012-03-19T18:53:40Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123849/2ebbe5639ece605a76773047a90172aac28fc5f3/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":125}},"id":"2123849","url":"https://api.github.com/gists/2123849","git_pull_url":"git://gist.github.com/2123849.git"},{"created_at":"2012-03-19T18:53:36Z","git_push_url":"git@gist.github.com:2123848.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123848","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:36Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123848/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123848","url":"https://api.github.com/gists/2123848","git_pull_url":"git://gist.github.com/2123848.git"},{"created_at":"2012-03-19T18:53:33Z","git_push_url":"git@gist.github.com:2123847.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123847","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:33Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123847/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123847","url":"https://api.github.com/gists/2123847","git_pull_url":"git://gist.github.com/2123847.git"},{"created_at":"2012-03-19T18:53:32Z","git_push_url":"git@gist.github.com:2123846.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123846","description":"Vagner Rocha vs Jonathan Brookins Download","updated_at":"2012-03-19T18:53:32Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123846/32e61b71448d277cff317da9c7d5074888b24500/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":128}},"id":"2123846","url":"https://api.github.com/gists/2123846","git_pull_url":"git://gist.github.com/2123846.git"},{"created_at":"2012-03-19T18:53:29Z","git_push_url":"git@gist.github.com:2123845.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","url":"https://api.github.com/users/ananda145","id":1553051,"login":"ananda145"},"public":true,"html_url":"https://gist.github.com/2123845","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:29Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123845/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2528}},"id":"2123845","url":"https://api.github.com/gists/2123845","git_pull_url":"git://gist.github.com/2123845.git"},{"created_at":"2012-03-19T18:53:26Z","git_push_url":"git@gist.github.com:2123844.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/3afb59a746e0c03f6779fcec740e9ee2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3afb59a746e0c03f6779fcec740e9ee2","url":"https://api.github.com/users/jhgvjhvgjvh","id":1548402,"login":"jhgvjhvgjvh"},"public":true,"html_url":"https://gist.github.com/2123844","description":"Watch Roma vs Genoa live Stream Serie A soccer on your pc.","updated_at":"2012-03-19T18:53:26Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123844/cdd72bca8413ebffa98078796232516e249bfd9e/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":491}},"id":"2123844","url":"https://api.github.com/gists/2123844","git_pull_url":"git://gist.github.com/2123844.git"},{"created_at":"2012-03-19T18:53:25Z","git_push_url":"git@gist.github.com:2123843.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123843","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:25Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123843/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123843","url":"https://api.github.com/gists/2123843","git_pull_url":"git://gist.github.com/2123843.git"},{"created_at":"2012-03-19T18:53:25Z","git_push_url":"git@gist.github.com:2123842.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123842","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:25Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123842/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123842","url":"https://api.github.com/gists/2123842","git_pull_url":"git://gist.github.com/2123842.git"},{"created_at":"2012-03-19T18:53:24Z","git_push_url":"git@gist.github.com:2123841.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/bb157723c3ad611d210d023a3554d056?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"bb157723c3ad611d210d023a3554d056","url":"https://api.github.com/users/juan-hawa-intellisys","id":1494097,"login":"juan-hawa-intellisys"},"public":true,"html_url":"https://gist.github.com/2123841","description":"Copy all files (including their permissions) that match a pattern","updated_at":"2012-03-19T18:53:24Z","comments":0,"files":{"cpio":{"raw_url":"https://gist.github.com/raw/2123841/dd054cf6c50d0b123056f9b2521a8bc9ed9fad4c/cpio","type":"application/cpio","filename":"cpio","language":null,"size":44}},"id":"2123841","url":"https://api.github.com/gists/2123841","git_pull_url":"git://gist.github.com/2123841.git"},{"created_at":"2012-03-19T18:53:23Z","git_push_url":"git@gist.github.com:2123840.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","url":"https://api.github.com/users/ananda145","id":1553051,"login":"ananda145"},"public":true,"html_url":"https://gist.github.com/2123840","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:23Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123840/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2528}},"id":"2123840","url":"https://api.github.com/gists/2123840","git_pull_url":"git://gist.github.com/2123840.git"},{"created_at":"2012-03-19T18:53:22Z","git_push_url":"git@gist.github.com:2123838.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123838","description":"Vagner Rocha vs Jonathan Brookins Weigh In Results","updated_at":"2012-03-19T18:53:22Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123838/361407ff79c9c15c4acfcbb59eb53fe1ba67c9a1/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":152}},"id":"2123838","url":"https://api.github.com/gists/2123838","git_pull_url":"git://gist.github.com/2123838.git"},{"created_at":"2012-03-19T18:53:20Z","git_push_url":"git@gist.github.com:2123837.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123837","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:20Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123837/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123837","url":"https://api.github.com/gists/2123837","git_pull_url":"git://gist.github.com/2123837.git"},{"created_at":"2012-03-19T18:53:20Z","git_push_url":"git@gist.github.com:2123836.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/5bac0727f05c3647f8b4c9e356c3c212?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"5bac0727f05c3647f8b4c9e356c3c212","url":"https://api.github.com/users/nathggns","id":719814,"login":"nathggns"},"public":true,"html_url":"https://gist.github.com/2123836","description":"","updated_at":"2012-03-19T18:53:20Z","comments":0,"files":{"index.php":{"raw_url":"https://gist.github.com/raw/2123836/99edae6f5f9d9e24fb45ca00bd09c2216e83a0c8/index.php","type":"application/httpd-php","filename":"index.php","language":"PHP","size":177}},"id":"2123836","url":"https://api.github.com/gists/2123836","git_pull_url":"git://gist.github.com/2123836.git"},{"created_at":"2012-03-19T18:53:20Z","git_push_url":"git@gist.github.com:2123835.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123835","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:20Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123835/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123835","url":"https://api.github.com/gists/2123835","git_pull_url":"git://gist.github.com/2123835.git"},{"created_at":"2012-03-19T18:53:18Z","git_push_url":"git@gist.github.com:2123834.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","url":"https://api.github.com/users/ananda145","id":1553051,"login":"ananda145"},"public":true,"html_url":"https://gist.github.com/2123834","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:18Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123834/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2528}},"id":"2123834","url":"https://api.github.com/gists/2123834","git_pull_url":"git://gist.github.com/2123834.git"},{"created_at":"2012-03-19T18:53:16Z","git_push_url":"git@gist.github.com:2123833.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123833","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:16Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123833/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123833","url":"https://api.github.com/gists/2123833","git_pull_url":"git://gist.github.com/2123833.git"},{"created_at":"2012-03-19T18:53:14Z","git_push_url":"git@gist.github.com:2123832.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123832","description":"Vagner Rocha vs Jonathan Brookins Weigh In","updated_at":"2012-03-19T18:53:14Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123832/6833befb02dcc53651d11c8c1b45008560abae2c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":128}},"id":"2123832","url":"https://api.github.com/gists/2123832","git_pull_url":"git://gist.github.com/2123832.git"},{"created_at":"2012-03-19T18:53:14Z","git_push_url":"git@gist.github.com:2123831.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123831","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:14Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123831/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123831","url":"https://api.github.com/gists/2123831","git_pull_url":"git://gist.github.com/2123831.git"},{"created_at":"2012-03-19T18:53:13Z","git_push_url":"git@gist.github.com:2123828.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123828","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:13Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123828/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123828","url":"https://api.github.com/gists/2123828","git_pull_url":"git://gist.github.com/2123828.git"},{"created_at":"2012-03-19T18:53:13Z","git_push_url":"git@gist.github.com:2123827.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","url":"https://api.github.com/users/ananda145","id":1553051,"login":"ananda145"},"public":true,"html_url":"https://gist.github.com/2123827","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:13Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123827/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2528}},"id":"2123827","url":"https://api.github.com/gists/2123827","git_pull_url":"git://gist.github.com/2123827.git"},{"created_at":"2012-03-19T18:53:10Z","git_push_url":"git@gist.github.com:2123826.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123826","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:10Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123826/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123826","url":"https://api.github.com/gists/2123826","git_pull_url":"git://gist.github.com/2123826.git"},{"created_at":"2012-03-19T18:53:09Z","git_push_url":"git@gist.github.com:2123825.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123825","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:09Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123825/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123825","url":"https://api.github.com/gists/2123825","git_pull_url":"git://gist.github.com/2123825.git"},{"created_at":"2012-03-19T18:53:06Z","git_push_url":"git@gist.github.com:2123824.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123824","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:06Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123824/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123824","url":"https://api.github.com/gists/2123824","git_pull_url":"git://gist.github.com/2123824.git"},{"created_at":"2012-03-19T18:53:05Z","git_push_url":"git@gist.github.com:2123823.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123823","description":"Vagner Rocha vs Jonathan Brookins Best Moments","updated_at":"2012-03-19T18:53:05Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123823/aaf8ce162c98cf72e4eab2c8a1e9c1b3e08e60d1/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":140}},"id":"2123823","url":"https://api.github.com/gists/2123823","git_pull_url":"git://gist.github.com/2123823.git"},{"created_at":"2012-03-19T18:53:05Z","git_push_url":"git@gist.github.com:2123822.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123822","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:53:05Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123822/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123822","url":"https://api.github.com/gists/2123822","git_pull_url":"git://gist.github.com/2123822.git"}] - -GET /gists/public?page=6 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4914'), ('content-length', '27258'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"901c20c1093fe71e7561793f462a1c90"'), ('date', 'Mon, 19 Mar 2012 18:59:22 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_pull_url":"git://gist.github.com/2123821.git","url":"https://api.github.com/gists/2123821","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123821/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123821.git","public":true,"comments":0,"updated_at":"2012-03-19T18:53:04Z","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:53:04Z","html_url":"https://gist.github.com/2123821","id":"2123821","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123819.git","url":"https://api.github.com/gists/2123819","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123819/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123819.git","public":true,"comments":0,"updated_at":"2012-03-19T18:53:00Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:53:00Z","html_url":"https://gist.github.com/2123819","id":"2123819","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123817.git","url":"https://api.github.com/gists/2123817","files":{"dabblet.css":{"raw_url":"https://gist.github.com/raw/2123817/a69c26b9e938e12fa399359f284a418dc97837f8/dabblet.css","type":"text/css","language":"CSS","size":4701,"filename":"dabblet.css"},"dabblet.html":{"raw_url":"https://gist.github.com/raw/2123817/a54f79b919d215bbc79b127fbcfb597b09036014/dabblet.html","type":"text/html","language":"HTML","size":1440,"filename":"dabblet.html"},"settings.json":{"raw_url":"https://gist.github.com/raw/2123817/93f90d3a16996184dd6d03a6a87a6606d74e7821/settings.json","type":"application/json","language":"JSON","size":71,"filename":"settings.json"}},"git_push_url":"git@gist.github.com:2123817.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:59Z","user":{"url":"https://api.github.com/users/Arcrueid","login":"Arcrueid","gravatar_id":"2b3724da6e0c765d24cd20c0a6b6c898","avatar_url":"https://secure.gravatar.com/avatar/2b3724da6e0c765d24cd20c0a6b6c898?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":999072},"created_at":"2012-03-19T18:52:59Z","html_url":"https://gist.github.com/2123817","id":"2123817","description":"CSS States "},{"git_pull_url":"git://gist.github.com/2123816.git","url":"https://api.github.com/gists/2123816","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123816/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123816.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:57Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:57Z","html_url":"https://gist.github.com/2123816","id":"2123816","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123814.git","url":"https://api.github.com/gists/2123814","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123814/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123814.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:56Z","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:52:56Z","html_url":"https://gist.github.com/2123814","id":"2123814","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123813.git","url":"https://api.github.com/gists/2123813","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123813/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123813.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:56Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:56Z","html_url":"https://gist.github.com/2123813","id":"2123813","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123812.git","url":"https://api.github.com/gists/2123812","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123812/57cb05eabbccd4742b49917f4c046fc267f8919d/gistfile1.txt","type":"text/plain","language":"Text","size":134,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123812.git","public":true,"comments":1,"updated_at":"2012-03-19T18:52:54Z","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:54Z","html_url":"https://gist.github.com/2123812","id":"2123812","description":"Vagner Rocha vs Jonathan Brookins Highlights"},{"git_pull_url":"git://gist.github.com/2123811.git","url":"https://api.github.com/gists/2123811","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123811/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123811.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:53Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:53Z","html_url":"https://gist.github.com/2123811","id":"2123811","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123810.git","url":"https://api.github.com/gists/2123810","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123810/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123810.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:51Z","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:52:51Z","html_url":"https://gist.github.com/2123810","id":"2123810","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123809.git","url":"https://api.github.com/gists/2123809","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123809/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123809.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:50Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:50Z","html_url":"https://gist.github.com/2123809","id":"2123809","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123808.git","url":"https://api.github.com/gists/2123808","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123808/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123808.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:49Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:49Z","html_url":"https://gist.github.com/2123808","id":"2123808","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123807.git","url":"https://api.github.com/gists/2123807","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123807/7f2d3b71a8e9fa70c730a82093a1efa8033c0b80/gistfile1.txt","type":"text/plain","language":"Text","size":116,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123807.git","public":true,"comments":1,"updated_at":"2012-03-19T18:52:45Z","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:45Z","html_url":"https://gist.github.com/2123807","id":"2123807","description":"Vagner Rocha vs Jonathan Brookins Live"},{"git_pull_url":"git://gist.github.com/2123806.git","url":"https://api.github.com/gists/2123806","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123806/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123806.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:45Z","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:52:45Z","html_url":"https://gist.github.com/2123806","id":"2123806","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123804.git","url":"https://api.github.com/gists/2123804","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123804/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123804.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:43Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:43Z","html_url":"https://gist.github.com/2123804","id":"2123804","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123803.git","url":"https://api.github.com/gists/2123803","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123803/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123803.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:42Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:42Z","html_url":"https://gist.github.com/2123803","id":"2123803","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123802.git","url":"https://api.github.com/gists/2123802","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123802/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","type":"text/plain","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123802.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:39Z","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:52:39Z","html_url":"https://gist.github.com/2123802","id":"2123802","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123801.git","url":"https://api.github.com/gists/2123801","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123801/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123801.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:39Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:39Z","html_url":"https://gist.github.com/2123801","id":"2123801","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123800.git","url":"https://api.github.com/gists/2123800","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123800/0a2b0fc95e1002ee01eaa863a995b2807df8640b/gistfile1.txt","type":"text/plain","language":"Text","size":1630,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123800.git","public":true,"comments":1,"updated_at":"2012-03-19T18:52:37Z","user":{"url":"https://api.github.com/users/shaplarani4444","login":"shaplarani4444","gravatar_id":"48110af83c287272e242b41ed95b346a","avatar_url":"https://secure.gravatar.com/avatar/48110af83c287272e242b41ed95b346a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1545751},"created_at":"2012-03-19T18:52:37Z","html_url":"https://gist.github.com/2123800","id":"2123800","description":"%%%%% live TV LING %%%%% Miami FL vs Minnesota Live NCAA Basketball Stream Online TV On PC "},{"git_pull_url":"git://gist.github.com/2123799.git","url":"https://api.github.com/gists/2123799","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123799/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123799.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:35Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:35Z","html_url":"https://gist.github.com/2123799","id":"2123799","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123798.git","url":"https://api.github.com/gists/2123798","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123798/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123798.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:34Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:34Z","html_url":"https://gist.github.com/2123798","id":"2123798","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123797.git","url":"https://api.github.com/gists/2123797","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123797/9b35b3daeb185622f527bbae6672067649b2d438/gistfile1.txt","type":"text/plain","language":"Text","size":158,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123797.git","public":true,"comments":1,"updated_at":"2012-03-19T18:52:34Z","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:34Z","html_url":"https://gist.github.com/2123797","id":"2123797","description":"Download Vagner Rocha vs Jonathan Brookins Megavideo"},{"git_pull_url":"git://gist.github.com/2123796.git","url":"https://api.github.com/gists/2123796","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123796/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123796.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:32Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:32Z","html_url":"https://gist.github.com/2123796","id":"2123796","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123795.git","url":"https://api.github.com/gists/2123795","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123795/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","language":"Text","size":2575,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123795.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:32Z","user":{"url":"https://api.github.com/users/das7878","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546234},"created_at":"2012-03-19T18:52:32Z","html_url":"https://gist.github.com/2123795","id":"2123795","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123794.git","url":"https://api.github.com/gists/2123794","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123794/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123794.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:31Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:31Z","html_url":"https://gist.github.com/2123794","id":"2123794","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123793.git","url":"https://api.github.com/gists/2123793","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123793/ca07a9799dec706b64f0ea3a746eba13ae4c4787/gistfile1.txt","type":"text/plain","language":"Text","size":137,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123793.git","public":true,"comments":1,"updated_at":"2012-03-19T18:52:23Z","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:23Z","html_url":"https://gist.github.com/2123793","id":"2123793","description":"Watch Vagner Rocha vs Jonathan Brookins Fight"},{"git_pull_url":"git://gist.github.com/2123792.git","url":"https://api.github.com/gists/2123792","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123792/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123792.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:23Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:23Z","html_url":"https://gist.github.com/2123792","id":"2123792","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123791.git","url":"https://api.github.com/gists/2123791","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123791/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123791.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:20Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:20Z","html_url":"https://gist.github.com/2123791","id":"2123791","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123790.git","url":"https://api.github.com/gists/2123790","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123790/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123790.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:19Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:19Z","html_url":"https://gist.github.com/2123790","id":"2123790","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123788.git","url":"https://api.github.com/gists/2123788","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123788/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123788.git","public":true,"comments":0,"updated_at":"2012-03-19T18:52:14Z","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:14Z","html_url":"https://gist.github.com/2123788","id":"2123788","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"git_pull_url":"git://gist.github.com/2123787.git","url":"https://api.github.com/gists/2123787","files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123787/c974b93cec2daf01c1a29cf8cef062754faaf1ec/gistfile1.txt","type":"text/plain","language":"Text","size":134,"filename":"gistfile1.txt"}},"git_push_url":"git@gist.github.com:2123787.git","public":true,"comments":1,"updated_at":"2012-03-19T18:52:12Z","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:12Z","html_url":"https://gist.github.com/2123787","id":"2123787","description":"Vagner Rocha vs Jonathan Brookins Prediction"}] - -GET /gists/public?page=7 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4913'), ('content-length', '26745'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"4c6c22a726845a93d003add9fc872303"'), ('date', 'Mon, 19 Mar 2012 18:59:24 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/gists/2123788","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123788/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123788.git","public":true,"git_push_url":"git@gist.github.com:2123788.git","comments":0,"updated_at":"2012-03-19T18:52:14Z","html_url":"https://gist.github.com/2123788","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:14Z","id":"2123788","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123787","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123787/c974b93cec2daf01c1a29cf8cef062754faaf1ec/gistfile1.txt","language":"Text","size":134,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123787.git","public":true,"git_push_url":"git@gist.github.com:2123787.git","comments":1,"updated_at":"2012-03-19T18:52:12Z","html_url":"https://gist.github.com/2123787","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:12Z","id":"2123787","description":"Vagner Rocha vs Jonathan Brookins Prediction"},{"url":"https://api.github.com/gists/2123786","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123786/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123786.git","public":true,"git_push_url":"git@gist.github.com:2123786.git","comments":0,"updated_at":"2012-03-19T18:52:10Z","html_url":"https://gist.github.com/2123786","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:10Z","id":"2123786","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123785","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123785/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123785.git","public":true,"git_push_url":"git@gist.github.com:2123785.git","comments":0,"updated_at":"2012-03-19T18:52:05Z","html_url":"https://gist.github.com/2123785","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:52:05Z","id":"2123785","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123784","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123784/1e022079a3f1117faa8a5aa59534be3f9020e0c0/gistfile1.txt","language":"Text","size":140,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123784.git","public":true,"git_push_url":"git@gist.github.com:2123784.git","comments":1,"updated_at":"2012-03-19T18:52:04Z","html_url":"https://gist.github.com/2123784","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:52:04Z","id":"2123784","description":"Vagner Rocha vs Jonathan Brookins online video"},{"url":"https://api.github.com/gists/2123783","files":{"index.js.coffee":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123783/e04a427d044e683b9d052279591176b72c2d3fb5/index.js.coffee","language":"CoffeeScript","size":1766,"filename":"index.js.coffee"}},"git_pull_url":"git://gist.github.com/2123783.git","public":true,"git_push_url":"git@gist.github.com:2123783.git","comments":0,"updated_at":"2012-03-19T18:52:01Z","html_url":"https://gist.github.com/2123783","user":{"url":"https://api.github.com/users/fholgado","login":"fholgado","gravatar_id":"2a70fd3a9ca3cc5b5fc362ec29fee19c","avatar_url":"https://secure.gravatar.com/avatar/2a70fd3a9ca3cc5b5fc362ec29fee19c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":213658},"created_at":"2012-03-19T18:52:01Z","id":"2123783","description":"Load all models before instantiating app"},{"url":"https://api.github.com/gists/2123782","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123782/a48f40943bcd8a8c0e8bf47541ba3931ba55b787/gistfile1.txt","language":"Text","size":125,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123782.git","public":true,"git_push_url":"git@gist.github.com:2123782.git","comments":1,"updated_at":"2012-03-19T18:51:57Z","html_url":"https://gist.github.com/2123782","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:57Z","id":"2123782","description":"Vagner Rocha vs Jonathan Brookins Preview"},{"url":"https://api.github.com/gists/2123781","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123781/377bc45293f4a661ae2c600e6652450b99a030f7/gistfile1.txt","language":"Text","size":119,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123781.git","public":true,"git_push_url":"git@gist.github.com:2123781.git","comments":1,"updated_at":"2012-03-19T18:51:49Z","html_url":"https://gist.github.com/2123781","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:49Z","id":"2123781","description":"Vagner Rocha vs Jonathan Brookins round"},{"url":"https://api.github.com/gists/2123780","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123780/bf77675e0443d707fb37ef0c21e16c64f5690023/gistfile1.txt","language":"Text","size":119,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123780.git","public":true,"git_push_url":"git@gist.github.com:2123780.git","comments":1,"updated_at":"2012-03-19T18:51:41Z","html_url":"https://gist.github.com/2123780","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:41Z","id":"2123780","description":"Vagner Rocha vs Jonathan Brookins Video"},{"url":"https://api.github.com/gists/2123779","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123779/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123779.git","public":true,"git_push_url":"git@gist.github.com:2123779.git","comments":0,"updated_at":"2012-03-19T18:51:38Z","html_url":"https://gist.github.com/2123779","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:38Z","id":"2123779","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123778","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123778/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123778.git","public":true,"git_push_url":"git@gist.github.com:2123778.git","comments":0,"updated_at":"2012-03-19T18:51:35Z","html_url":"https://gist.github.com/2123778","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:35Z","id":"2123778","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123777","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123777/abd33d2528983e1afc4260c733e7217f3332939f/gistfile1.txt","language":"Text","size":119,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123777.git","public":true,"git_push_url":"git@gist.github.com:2123777.git","comments":1,"updated_at":"2012-03-19T18:51:33Z","html_url":"https://gist.github.com/2123777","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:33Z","id":"2123777","description":"Watch Vagner Rocha vs Jonathan Brookins"},{"url":"https://api.github.com/gists/2123775","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123775/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123775.git","public":true,"git_push_url":"git@gist.github.com:2123775.git","comments":0,"updated_at":"2012-03-19T18:51:31Z","html_url":"https://gist.github.com/2123775","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:31Z","id":"2123775","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123774","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123774/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123774.git","public":true,"git_push_url":"git@gist.github.com:2123774.git","comments":0,"updated_at":"2012-03-19T18:51:27Z","html_url":"https://gist.github.com/2123774","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:27Z","id":"2123774","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123773","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123773/ed1f555e506994a9640bff9abc8c8dc505cd5ccb/gistfile1.txt","language":"Text","size":149,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123773.git","public":true,"git_push_url":"git@gist.github.com:2123773.git","comments":1,"updated_at":"2012-03-19T18:51:24Z","html_url":"https://gist.github.com/2123773","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:24Z","id":"2123773","description":"Watch Vagner Rocha vs Jonathan Brookins Live Free"},{"url":"https://api.github.com/gists/2123772","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123772/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123772.git","public":true,"git_push_url":"git@gist.github.com:2123772.git","comments":0,"updated_at":"2012-03-19T18:51:22Z","html_url":"https://gist.github.com/2123772","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:22Z","id":"2123772","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123771","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123771/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123771.git","public":true,"git_push_url":"git@gist.github.com:2123771.git","comments":0,"updated_at":"2012-03-19T18:51:18Z","html_url":"https://gist.github.com/2123771","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:18Z","id":"2123771","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123770","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123770/6febbbccc686338e44dcbf3ce22dcaa601212772/gistfile1.txt","language":"Text","size":128,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123770.git","public":true,"git_push_url":"git@gist.github.com:2123770.git","comments":1,"updated_at":"2012-03-19T18:51:14Z","html_url":"https://gist.github.com/2123770","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:14Z","id":"2123770","description":"HQ Vagner Rocha vs Jonathan Brookins video"},{"url":"https://api.github.com/gists/2123769","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123769/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123769.git","public":true,"git_push_url":"git@gist.github.com:2123769.git","comments":0,"updated_at":"2012-03-19T18:51:09Z","html_url":"https://gist.github.com/2123769","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:09Z","id":"2123769","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123768","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123768/e28738cf7a22ebcd9e45c14c357f5e387a26d3d5/gistfile1.txt","language":"Text","size":134,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123768.git","public":true,"git_push_url":"git@gist.github.com:2123768.git","comments":1,"updated_at":"2012-03-19T18:51:07Z","html_url":"https://gist.github.com/2123768","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:51:07Z","id":"2123768","description":"Vagner Rocha vs Jonathan Brookins full fight"},{"url":"https://api.github.com/gists/2123767","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123767/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123767.git","public":true,"git_push_url":"git@gist.github.com:2123767.git","comments":0,"updated_at":"2012-03-19T18:51:01Z","html_url":"https://gist.github.com/2123767","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:51:01Z","id":"2123767","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123766","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123766/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123766.git","public":true,"git_push_url":"git@gist.github.com:2123766.git","comments":0,"updated_at":"2012-03-19T18:50:56Z","html_url":"https://gist.github.com/2123766","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:56Z","id":"2123766","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123765","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123765/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123765.git","public":true,"git_push_url":"git@gist.github.com:2123765.git","comments":0,"updated_at":"2012-03-19T18:50:50Z","html_url":"https://gist.github.com/2123765","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:50Z","id":"2123765","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123764","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123764/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123764.git","public":true,"git_push_url":"git@gist.github.com:2123764.git","comments":0,"updated_at":"2012-03-19T18:50:47Z","html_url":"https://gist.github.com/2123764","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:47Z","id":"2123764","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123763","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123763/8de97d1825c73c8b1c575238a3fa3b9fe6c2e320/gistfile1.txt","language":"Text","size":116,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123763.git","public":true,"git_push_url":"git@gist.github.com:2123763.git","comments":1,"updated_at":"2012-03-19T18:50:42Z","html_url":"https://gist.github.com/2123763","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:50:42Z","id":"2123763","description":"Vagner Rocha vs Jonathan Brookins Free"},{"url":"https://api.github.com/gists/2123762","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123762/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123762.git","public":true,"git_push_url":"git@gist.github.com:2123762.git","comments":0,"updated_at":"2012-03-19T18:50:42Z","html_url":"https://gist.github.com/2123762","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:42Z","id":"2123762","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123761","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123761/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123761.git","public":true,"git_push_url":"git@gist.github.com:2123761.git","comments":0,"updated_at":"2012-03-19T18:50:39Z","html_url":"https://gist.github.com/2123761","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:39Z","id":"2123761","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123760","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123760/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123760.git","public":true,"git_push_url":"git@gist.github.com:2123760.git","comments":0,"updated_at":"2012-03-19T18:50:37Z","html_url":"https://gist.github.com/2123760","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:37Z","id":"2123760","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123759","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123759/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123759.git","public":true,"git_push_url":"git@gist.github.com:2123759.git","comments":0,"updated_at":"2012-03-19T18:50:35Z","html_url":"https://gist.github.com/2123759","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:35Z","id":"2123759","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123758","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123758/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123758.git","public":true,"git_push_url":"git@gist.github.com:2123758.git","comments":0,"updated_at":"2012-03-19T18:50:33Z","html_url":"https://gist.github.com/2123758","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:33Z","id":"2123758","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"}] - -GET /gists/public?page=8 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4912'), ('content-length', '26816'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"71404f1c7264eaed9775d567e6fa191b"'), ('date', 'Mon, 19 Mar 2012 18:59:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/gists/2123758","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123758/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123758.git","comments":0,"updated_at":"2012-03-19T18:50:33Z","html_url":"https://gist.github.com/2123758","git_push_url":"git@gist.github.com:2123758.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:33Z","id":"2123758","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123757","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123757/25015fe882cf4b0a2514944b978da2d168046dc3/gistfile1.txt","language":"Text","size":122,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123757.git","comments":1,"updated_at":"2012-03-19T18:50:30Z","html_url":"https://gist.github.com/2123757","git_push_url":"git@gist.github.com:2123757.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:50:30Z","id":"2123757","description":"Vagner Rocha vs Jonathan Brookins Result"},{"url":"https://api.github.com/gists/2123756","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123756/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123756.git","comments":0,"updated_at":"2012-03-19T18:50:27Z","html_url":"https://gist.github.com/2123756","git_push_url":"git@gist.github.com:2123756.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:27Z","id":"2123756","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123755","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123755/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123755.git","comments":0,"updated_at":"2012-03-19T18:50:26Z","html_url":"https://gist.github.com/2123755","git_push_url":"git@gist.github.com:2123755.git","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:26Z","id":"2123755","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123754","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123754/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123754.git","comments":0,"updated_at":"2012-03-19T18:50:23Z","html_url":"https://gist.github.com/2123754","git_push_url":"git@gist.github.com:2123754.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:23Z","id":"2123754","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123753","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123753/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123753.git","comments":0,"updated_at":"2012-03-19T18:50:22Z","html_url":"https://gist.github.com/2123753","git_push_url":"git@gist.github.com:2123753.git","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:22Z","id":"2123753","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123752","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123752/7f2d3b71a8e9fa70c730a82093a1efa8033c0b80/gistfile1.txt","language":"Text","size":116,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123752.git","comments":1,"updated_at":"2012-03-19T18:50:22Z","html_url":"https://gist.github.com/2123752","git_push_url":"git@gist.github.com:2123752.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:50:22Z","id":"2123752","description":"Vagner Rocha vs Jonathan Brookins Live"},{"url":"https://api.github.com/gists/2123751","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123751/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123751.git","comments":0,"updated_at":"2012-03-19T18:50:20Z","html_url":"https://gist.github.com/2123751","git_push_url":"git@gist.github.com:2123751.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:20Z","id":"2123751","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123749","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123749/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123749.git","comments":0,"updated_at":"2012-03-19T18:50:19Z","html_url":"https://gist.github.com/2123749","git_push_url":"git@gist.github.com:2123749.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:19Z","id":"2123749","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123748","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123748/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123748.git","comments":0,"updated_at":"2012-03-19T18:50:19Z","html_url":"https://gist.github.com/2123748","git_push_url":"git@gist.github.com:2123748.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:19Z","id":"2123748","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123747","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123747/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123747.git","comments":0,"updated_at":"2012-03-19T18:50:19Z","html_url":"https://gist.github.com/2123747","git_push_url":"git@gist.github.com:2123747.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:19Z","id":"2123747","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123746","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123746/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123746.git","comments":0,"updated_at":"2012-03-19T18:50:18Z","html_url":"https://gist.github.com/2123746","git_push_url":"git@gist.github.com:2123746.git","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:18Z","id":"2123746","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123745","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123745/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123745.git","comments":0,"updated_at":"2012-03-19T18:50:18Z","html_url":"https://gist.github.com/2123745","git_push_url":"git@gist.github.com:2123745.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:18Z","id":"2123745","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123744","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123744/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123744.git","comments":0,"updated_at":"2012-03-19T18:50:18Z","html_url":"https://gist.github.com/2123744","git_push_url":"git@gist.github.com:2123744.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:50:18Z","id":"2123744","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123743","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123743/3b012aeca0c6a2dd58ff1374f6718e9e3552cbda/gistfile1.txt","language":"Text","size":303,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123743.git","comments":1,"updated_at":"2012-03-19T18:50:17Z","html_url":"https://gist.github.com/2123743","git_push_url":"git@gist.github.com:2123743.git","user":{"url":"https://api.github.com/users/sportsvine","login":"sportsvine","gravatar_id":"a688f98b2da508dce9cbedcb9377847f","avatar_url":"https://secure.gravatar.com/avatar/a688f98b2da508dce9cbedcb9377847f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1549957},"created_at":"2012-03-19T18:50:17Z","id":"2123743","description":"NHL||San Jose Sharks vs Anaheim Ducks Live Stream Online tv on pc"},{"url":"https://api.github.com/gists/2123741","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123741/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123741.git","comments":0,"updated_at":"2012-03-19T18:50:16Z","html_url":"https://gist.github.com/2123741","git_push_url":"git@gist.github.com:2123741.git","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:16Z","id":"2123741","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123740","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123740/58c39ad0742f82b59d88dbf2f5134952fd97679f/gistfile1.txt","language":"Text","size":2528,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123740.git","comments":0,"updated_at":"2012-03-19T18:50:15Z","html_url":"https://gist.github.com/2123740","git_push_url":"git@gist.github.com:2123740.git","user":{"url":"https://api.github.com/users/ananda145","login":"ananda145","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1553051},"created_at":"2012-03-19T18:50:15Z","id":"2123740","description":"Watch and Enjoy Bristol City vs Watford Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123739","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123739/b053f39d8f0a6347d9413a6cc0a759bfb4f5a3c9/gistfile1.txt","language":"Text","size":137,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123739.git","comments":1,"updated_at":"2012-03-19T18:50:13Z","html_url":"https://gist.github.com/2123739","git_push_url":"git@gist.github.com:2123739.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:50:13Z","id":"2123739","description":"Vagner Rocha vs Jonathan Brookins fight video"},{"url":"https://api.github.com/gists/2123737","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123737/7d76af3f060c43f9a58f359c2b2d157338cde7f5/gistfile1.txt","language":"Text","size":95,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123737.git","comments":1,"updated_at":"2012-03-19T18:50:04Z","html_url":"https://gist.github.com/2123737","git_push_url":"git@gist.github.com:2123737.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:50:04Z","id":"2123737","description":"Download Rocha vs Brookins Free"},{"url":"https://api.github.com/gists/2123735","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123735/7ec4b1ffd29a61dfa7bf7eadf0000ac5cec0054d/gistfile1.txt","language":"Text","size":80,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123735.git","comments":1,"updated_at":"2012-03-19T18:49:53Z","html_url":"https://gist.github.com/2123735","git_push_url":"git@gist.github.com:2123735.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:49:53Z","id":"2123735","description":"Download Rocha vs Brookins"},{"url":"https://api.github.com/gists/2123734","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123734/c798655b6652927330a5a145164347a51c470944/gistfile1.txt","language":"Text","size":98,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123734.git","comments":1,"updated_at":"2012-03-19T18:49:44Z","html_url":"https://gist.github.com/2123734","git_push_url":"git@gist.github.com:2123734.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:49:44Z","id":"2123734","description":"Download Rocha vs Brookins Video"},{"url":"https://api.github.com/gists/2123732","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123732/eb58741f298496acda614c3e806b6ac347b53637/gistfile1.txt","language":"Text","size":113,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123732.git","comments":1,"updated_at":"2012-03-19T18:49:36Z","html_url":"https://gist.github.com/2123732","git_push_url":"git@gist.github.com:2123732.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:49:36Z","id":"2123732","description":"Download Rocha vs Brookins Rapidshare"},{"url":"https://api.github.com/gists/2123731","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123731/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123731.git","comments":0,"updated_at":"2012-03-19T18:49:31Z","html_url":"https://gist.github.com/2123731","git_push_url":"git@gist.github.com:2123731.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:49:31Z","id":"2123731","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123730","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123730/b8b2577caccdad0d9cd009e639866ac1fa71c852/gistfile1.txt","language":"Text","size":113,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123730.git","comments":1,"updated_at":"2012-03-19T18:49:27Z","html_url":"https://gist.github.com/2123730","git_push_url":"git@gist.github.com:2123730.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:49:27Z","id":"2123730","description":"Download Rocha vs Brookins full fight"},{"url":"https://api.github.com/gists/2123729","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123729/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123729.git","comments":0,"updated_at":"2012-03-19T18:49:27Z","html_url":"https://gist.github.com/2123729","git_push_url":"git@gist.github.com:2123729.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:49:27Z","id":"2123729","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123728","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123728/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123728.git","comments":0,"updated_at":"2012-03-19T18:49:23Z","html_url":"https://gist.github.com/2123728","git_push_url":"git@gist.github.com:2123728.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:49:23Z","id":"2123728","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123727","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123727/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123727.git","comments":0,"updated_at":"2012-03-19T18:49:19Z","html_url":"https://gist.github.com/2123727","git_push_url":"git@gist.github.com:2123727.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:49:19Z","id":"2123727","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123726","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123726/2ef35e6a9efad0f8aad70873b3ee695860ccc2e1/gistfile1.txt","language":"Text","size":98,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123726.git","comments":1,"updated_at":"2012-03-19T18:49:19Z","html_url":"https://gist.github.com/2123726","git_push_url":"git@gist.github.com:2123726.git","user":{"url":"https://api.github.com/users/juggalomc","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1550734},"created_at":"2012-03-19T18:49:19Z","id":"2123726","description":"Watch Rocha vs Brookins For Free"},{"url":"https://api.github.com/gists/2123725","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123725/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","language":"Text","size":2601,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123725.git","comments":0,"updated_at":"2012-03-19T18:49:15Z","html_url":"https://gist.github.com/2123725","git_push_url":"git@gist.github.com:2123725.git","user":{"url":"https://api.github.com/users/papti247","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1546201},"created_at":"2012-03-19T18:49:15Z","id":"2123725","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123724","files":{"gistfile1.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/2123724/d3675efceb7b7ad52115af06396da438d57fc66f/gistfile1.txt","language":"Text","size":1728,"filename":"gistfile1.txt"}},"public":true,"git_pull_url":"git://gist.github.com/2123724.git","comments":1,"updated_at":"2012-03-19T18:49:11Z","html_url":"https://gist.github.com/2123724","git_push_url":"git@gist.github.com:2123724.git","user":{"url":"https://api.github.com/users/shaplarani4444","login":"shaplarani4444","gravatar_id":"48110af83c287272e242b41ed95b346a","avatar_url":"https://secure.gravatar.com/avatar/48110af83c287272e242b41ed95b346a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1545751},"created_at":"2012-03-19T18:49:11Z","id":"2123724","description":"%%%%% live TV LING %%%%% Minnesota vs Miami FL Live NCAA Basketball Stream Online TV On PC "}] - -GET /gists/public?page=9 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4911'), ('content-length', '26629'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"8e872154372a0c77ff8a72dc5ada592e"'), ('date', 'Mon, 19 Mar 2012 18:59:28 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/gists/2123725","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123725/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123725.git","public":true,"git_push_url":"git@gist.github.com:2123725.git","comments":0,"updated_at":"2012-03-19T18:49:15Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:49:15Z","html_url":"https://gist.github.com/2123725","id":"2123725","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123724","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":1728,"raw_url":"https://gist.github.com/raw/2123724/d3675efceb7b7ad52115af06396da438d57fc66f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123724.git","public":true,"git_push_url":"git@gist.github.com:2123724.git","comments":1,"updated_at":"2012-03-19T18:49:11Z","user":{"url":"https://api.github.com/users/shaplarani4444","avatar_url":"https://secure.gravatar.com/avatar/48110af83c287272e242b41ed95b346a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"shaplarani4444","gravatar_id":"48110af83c287272e242b41ed95b346a","id":1545751},"created_at":"2012-03-19T18:49:11Z","html_url":"https://gist.github.com/2123724","id":"2123724","description":"%%%%% live TV LING %%%%% Minnesota vs Miami FL Live NCAA Basketball Stream Online TV On PC "},{"url":"https://api.github.com/gists/2123723","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123723/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123723.git","public":true,"git_push_url":"git@gist.github.com:2123723.git","comments":0,"updated_at":"2012-03-19T18:49:11Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:49:11Z","html_url":"https://gist.github.com/2123723","id":"2123723","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123722","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":107,"raw_url":"https://gist.github.com/raw/2123722/8e70eac58bfb48c68c554ae6c3f3b38da99867b8/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123722.git","public":true,"git_push_url":"git@gist.github.com:2123722.git","comments":1,"updated_at":"2012-03-19T18:49:10Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:49:10Z","html_url":"https://gist.github.com/2123722","id":"2123722","description":"Watch Rocha vs Brookins Online Free"},{"url":"https://api.github.com/gists/2123721","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123721/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123721.git","public":true,"git_push_url":"git@gist.github.com:2123721.git","comments":0,"updated_at":"2012-03-19T18:49:05Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:49:05Z","html_url":"https://gist.github.com/2123721","id":"2123721","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123720","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":86,"raw_url":"https://gist.github.com/raw/2123720/89aa8f1718bbaecbc1c5c66596be71563c35e74f/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123720.git","public":true,"git_push_url":"git@gist.github.com:2123720.git","comments":1,"updated_at":"2012-03-19T18:49:02Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:49:02Z","html_url":"https://gist.github.com/2123720","id":"2123720","description":"Rocha vs Brookins Start Time"},{"url":"https://api.github.com/gists/2123719","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123719/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123719.git","public":true,"git_push_url":"git@gist.github.com:2123719.git","comments":0,"updated_at":"2012-03-19T18:49:01Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:49:01Z","html_url":"https://gist.github.com/2123719","id":"2123719","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123718","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123718/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123718.git","public":true,"git_push_url":"git@gist.github.com:2123718.git","comments":0,"updated_at":"2012-03-19T18:48:57Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:57Z","html_url":"https://gist.github.com/2123718","id":"2123718","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123717","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":77,"raw_url":"https://gist.github.com/raw/2123717/63f837a46b2b1fa426fbb3aef418d36833274547/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123717.git","public":true,"git_push_url":"git@gist.github.com:2123717.git","comments":1,"updated_at":"2012-03-19T18:48:53Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:53Z","html_url":"https://gist.github.com/2123717","id":"2123717","description":"Rocha vs Brookins Torrent"},{"url":"https://api.github.com/gists/2123716","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123716/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123716.git","public":true,"git_push_url":"git@gist.github.com:2123716.git","comments":0,"updated_at":"2012-03-19T18:48:52Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:52Z","html_url":"https://gist.github.com/2123716","id":"2123716","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123715","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123715/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123715.git","public":true,"git_push_url":"git@gist.github.com:2123715.git","comments":0,"updated_at":"2012-03-19T18:48:48Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:48Z","html_url":"https://gist.github.com/2123715","id":"2123715","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123714","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":80,"raw_url":"https://gist.github.com/raw/2123714/8264c208cf819077c0411cf9dafbef5c56062805/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123714.git","public":true,"git_push_url":"git@gist.github.com:2123714.git","comments":1,"updated_at":"2012-03-19T18:48:44Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:44Z","html_url":"https://gist.github.com/2123714","id":"2123714","description":"Rocha vs Brookins Download"},{"url":"https://api.github.com/gists/2123713","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123713/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123713.git","public":true,"git_push_url":"git@gist.github.com:2123713.git","comments":0,"updated_at":"2012-03-19T18:48:43Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:43Z","html_url":"https://gist.github.com/2123713","id":"2123713","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123712","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":104,"raw_url":"https://gist.github.com/raw/2123712/2217a757dfa23ccf7714bbd9d02f42f5cd4ce654/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123712.git","public":true,"git_push_url":"git@gist.github.com:2123712.git","comments":1,"updated_at":"2012-03-19T18:48:36Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:36Z","html_url":"https://gist.github.com/2123712","id":"2123712","description":"Rocha vs Brookins Weigh In Results"},{"url":"https://api.github.com/gists/2123711","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123711/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123711.git","public":true,"git_push_url":"git@gist.github.com:2123711.git","comments":0,"updated_at":"2012-03-19T18:48:35Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:35Z","html_url":"https://gist.github.com/2123711","id":"2123711","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123708","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123708/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123708.git","public":true,"git_push_url":"git@gist.github.com:2123708.git","comments":0,"updated_at":"2012-03-19T18:48:30Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:30Z","html_url":"https://gist.github.com/2123708","id":"2123708","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123707","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":80,"raw_url":"https://gist.github.com/raw/2123707/9541aceb3fec4e6c5028bbdc2521721df973e6ad/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123707.git","public":true,"git_push_url":"git@gist.github.com:2123707.git","comments":1,"updated_at":"2012-03-19T18:48:27Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:27Z","html_url":"https://gist.github.com/2123707","id":"2123707","description":"Rocha vs Brookins Weigh In"},{"url":"https://api.github.com/gists/2123706","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123706/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123706.git","public":true,"git_push_url":"git@gist.github.com:2123706.git","comments":0,"updated_at":"2012-03-19T18:48:23Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:23Z","html_url":"https://gist.github.com/2123706","id":"2123706","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123703","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123703/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123703.git","public":true,"git_push_url":"git@gist.github.com:2123703.git","comments":0,"updated_at":"2012-03-19T18:48:19Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:19Z","html_url":"https://gist.github.com/2123703","id":"2123703","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123702","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123702/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123702.git","public":true,"git_push_url":"git@gist.github.com:2123702.git","comments":0,"updated_at":"2012-03-19T18:48:19Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:19Z","html_url":"https://gist.github.com/2123702","id":"2123702","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123701","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":92,"raw_url":"https://gist.github.com/raw/2123701/06cc3150dc08a973a159c8f69c1369503f69faa6/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123701.git","public":true,"git_push_url":"git@gist.github.com:2123701.git","comments":1,"updated_at":"2012-03-19T18:48:19Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:19Z","html_url":"https://gist.github.com/2123701","id":"2123701","description":"Rocha vs Brookins Best Moments"},{"url":"https://api.github.com/gists/2123700","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123700/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123700.git","public":true,"git_push_url":"git@gist.github.com:2123700.git","comments":0,"updated_at":"2012-03-19T18:48:14Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:14Z","html_url":"https://gist.github.com/2123700","id":"2123700","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123699","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123699/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123699.git","public":true,"git_push_url":"git@gist.github.com:2123699.git","comments":0,"updated_at":"2012-03-19T18:48:14Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:14Z","html_url":"https://gist.github.com/2123699","id":"2123699","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123697","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123697/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123697.git","public":true,"git_push_url":"git@gist.github.com:2123697.git","comments":0,"updated_at":"2012-03-19T18:48:11Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:48:11Z","html_url":"https://gist.github.com/2123697","id":"2123697","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123696","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":86,"raw_url":"https://gist.github.com/raw/2123696/8f6529937b5e8c694acc809e4c30e82fee5f7eae/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123696.git","public":true,"git_push_url":"git@gist.github.com:2123696.git","comments":1,"updated_at":"2012-03-19T18:48:11Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:11Z","html_url":"https://gist.github.com/2123696","id":"2123696","description":"Rocha vs Brookins Highlights"},{"url":"https://api.github.com/gists/2123694","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123694/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123694.git","public":true,"git_push_url":"git@gist.github.com:2123694.git","comments":0,"updated_at":"2012-03-19T18:48:06Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:48:06Z","html_url":"https://gist.github.com/2123694","id":"2123694","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123691","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123691/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123691.git","public":true,"git_push_url":"git@gist.github.com:2123691.git","comments":0,"updated_at":"2012-03-19T18:48:03Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:48:03Z","html_url":"https://gist.github.com/2123691","id":"2123691","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123690","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":68,"raw_url":"https://gist.github.com/raw/2123690/c8bdacabf11bbf840959ab8670d52d93d049db7d/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123690.git","public":true,"git_push_url":"git@gist.github.com:2123690.git","comments":1,"updated_at":"2012-03-19T18:48:02Z","user":{"url":"https://api.github.com/users/juggalomc","avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juggalomc","gravatar_id":"091dc8215054f92a8956abf38f899be0","id":1550734},"created_at":"2012-03-19T18:48:02Z","html_url":"https://gist.github.com/2123690","id":"2123690","description":"Rocha vs Brookins Live"},{"url":"https://api.github.com/gists/2123689","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2575,"raw_url":"https://gist.github.com/raw/2123689/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123689.git","public":true,"git_push_url":"git@gist.github.com:2123689.git","comments":0,"updated_at":"2012-03-19T18:48:02Z","user":{"url":"https://api.github.com/users/das7878","avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"das7878","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","id":1546234},"created_at":"2012-03-19T18:48:02Z","html_url":"https://gist.github.com/2123689","id":"2123689","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012"},{"url":"https://api.github.com/gists/2123688","files":{"gistfile1.txt":{"type":"text/plain","language":"Text","size":2601,"raw_url":"https://gist.github.com/raw/2123688/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","filename":"gistfile1.txt"}},"git_pull_url":"git://gist.github.com/2123688.git","public":true,"git_push_url":"git@gist.github.com:2123688.git","comments":0,"updated_at":"2012-03-19T18:47:59Z","user":{"url":"https://api.github.com/users/papti247","avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"papti247","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","id":1546201},"created_at":"2012-03-19T18:47:59Z","html_url":"https://gist.github.com/2123688","id":"2123688","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012"}] - -GET /gists/public?page=10 {} null -200 -[('status', '200 OK'), ('content-length', '26448'), ('x-ratelimit-remaining', '4910'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('link', '; rel="next", ; rel="last", ; rel="first", ; rel="prev"'), ('etag', '"872d681fae4cb78551fefc35ec8f3cd0"'), ('date', 'Mon, 19 Mar 2012 18:59:30 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"created_at":"2012-03-19T18:47:57Z","git_push_url":"git@gist.github.com:2123687.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/7b1296a82a9dc140ba92895daa8e32a9?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"7b1296a82a9dc140ba92895daa8e32a9","url":"https://api.github.com/users/papti247","id":1546201,"login":"papti247"},"public":true,"html_url":"https://gist.github.com/2123687","description":"Doncaster vs Millwall Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:57Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123687/07d26e28325258a07f28ed242acee5a9643d2a5c/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2601}},"id":"2123687","url":"https://api.github.com/gists/2123687","git_pull_url":"git://gist.github.com/2123687.git"},{"created_at":"2012-03-19T18:47:57Z","git_push_url":"git@gist.github.com:2123686.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123686","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:57Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123686/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123686","url":"https://api.github.com/gists/2123686","git_pull_url":"git://gist.github.com/2123686.git"},{"created_at":"2012-03-19T18:47:54Z","git_push_url":"git@gist.github.com:2123685.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123685","description":"Download Rocha vs Brookins Megavideo","updated_at":"2012-03-19T18:47:54Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123685/f2fcaf642b846d019e08fe62ed3d796616aa89e9/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":110}},"id":"2123685","url":"https://api.github.com/gists/2123685","git_pull_url":"git://gist.github.com/2123685.git"},{"created_at":"2012-03-19T18:47:51Z","git_push_url":"git@gist.github.com:2123683.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","url":"https://api.github.com/users/ananda145","id":1553051,"login":"ananda145"},"public":true,"html_url":"https://gist.github.com/2123683","description":"Watch and Enjoy Brighton vs Derby Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:51Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123683/f92dfdd22167c671ee681cd2d2e6df84cd224316/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2460}},"id":"2123683","url":"https://api.github.com/gists/2123683","git_pull_url":"git://gist.github.com/2123683.git"},{"created_at":"2012-03-19T18:47:50Z","git_push_url":"git@gist.github.com:2123682.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123682","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:50Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123682/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123682","url":"https://api.github.com/gists/2123682","git_pull_url":"git://gist.github.com/2123682.git"},{"created_at":"2012-03-19T18:47:45Z","git_push_url":"git@gist.github.com:2123679.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123679","description":"Watch Rocha vs Brookins Fight","updated_at":"2012-03-19T18:47:45Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123679/c85fedf0dd5185814cc3bfb71b249cc0703f0402/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":89}},"id":"2123679","url":"https://api.github.com/gists/2123679","git_pull_url":"git://gist.github.com/2123679.git"},{"created_at":"2012-03-19T18:47:43Z","git_push_url":"git@gist.github.com:2123678.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123678","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:43Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123678/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123678","url":"https://api.github.com/gists/2123678","git_pull_url":"git://gist.github.com/2123678.git"},{"created_at":"2012-03-19T18:47:39Z","git_push_url":"git@gist.github.com:2123677.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123677","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:39Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123677/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123677","url":"https://api.github.com/gists/2123677","git_pull_url":"git://gist.github.com/2123677.git"},{"created_at":"2012-03-19T18:47:35Z","git_push_url":"git@gist.github.com:2123676.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123676","description":"Rocha vs Brookins Prediction","updated_at":"2012-03-19T18:47:35Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123676/4e9e5a310a11026e73550b8c2e128738f8987799/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":86}},"id":"2123676","url":"https://api.github.com/gists/2123676","git_pull_url":"git://gist.github.com/2123676.git"},{"created_at":"2012-03-19T18:47:34Z","git_push_url":"git@gist.github.com:2123675.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123675","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:34Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123675/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123675","url":"https://api.github.com/gists/2123675","git_pull_url":"git://gist.github.com/2123675.git"},{"created_at":"2012-03-19T18:47:30Z","git_push_url":"git@gist.github.com:2123674.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123674","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:30Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123674/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123674","url":"https://api.github.com/gists/2123674","git_pull_url":"git://gist.github.com/2123674.git"},{"created_at":"2012-03-19T18:47:27Z","git_push_url":"git@gist.github.com:2123673.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123673","description":"Rocha vs Brookins online video","updated_at":"2012-03-19T18:47:27Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123673/cec58338d407d177f2b2a4f83cb90ed91ebb803e/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":92}},"id":"2123673","url":"https://api.github.com/gists/2123673","git_pull_url":"git://gist.github.com/2123673.git"},{"created_at":"2012-03-19T18:47:26Z","git_push_url":"git@gist.github.com:2123672.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123672","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:26Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123672/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123672","url":"https://api.github.com/gists/2123672","git_pull_url":"git://gist.github.com/2123672.git"},{"created_at":"2012-03-19T18:47:23Z","git_push_url":"git@gist.github.com:2123671.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/a4babe3716f5a5ca5be8efe606c17d5f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a4babe3716f5a5ca5be8efe606c17d5f","url":"https://api.github.com/users/ggalmazor","id":205913,"login":"ggalmazor"},"public":true,"html_url":"https://gist.github.com/2123671","description":"Jasmine enhanced spyOnEvent","updated_at":"2012-03-19T18:47:23Z","comments":1,"files":{"spyOnEventHelper.js":{"raw_url":"https://gist.github.com/raw/2123671/6c1395d7fe36558afebd3c2fc7026f8f4b438097/spyOnEventHelper.js","type":"application/javascript","filename":"spyOnEventHelper.js","language":"JavaScript","size":1614}},"id":"2123671","url":"https://api.github.com/gists/2123671","git_pull_url":"git://gist.github.com/2123671.git"},{"created_at":"2012-03-19T18:47:23Z","git_push_url":"git@gist.github.com:2123670.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123670","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:23Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123670/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123670","url":"https://api.github.com/gists/2123670","git_pull_url":"git://gist.github.com/2123670.git"},{"created_at":"2012-03-19T18:47:20Z","git_push_url":"git@gist.github.com:2123669.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/b1468cd66650d2789cefed3fe19edbf2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b1468cd66650d2789cefed3fe19edbf2","url":"https://api.github.com/users/abdullaamori","id":1162758,"login":"abdullaamori"},"public":true,"html_url":"https://gist.github.com/2123669","description":"","updated_at":"2012-03-19T18:47:20Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123669/fea921fd3e7907ebb3ce51c0ecb03547975e024f/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":533}},"id":"2123669","url":"https://api.github.com/gists/2123669","git_pull_url":"git://gist.github.com/2123669.git"},{"created_at":"2012-03-19T18:47:19Z","git_push_url":"git@gist.github.com:2123668.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/3ba359ebe830ae6e5add1c99822497cf?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"3ba359ebe830ae6e5add1c99822497cf","url":"https://api.github.com/users/jCrip","id":871257,"login":"jCrip"},"public":true,"html_url":"https://gist.github.com/2123668","description":"Create noise with canvas","updated_at":"2012-03-19T18:47:19Z","comments":0,"files":{"canvas-noise.js":{"raw_url":"https://gist.github.com/raw/2123668/92e6e6e8a0dcb32412405acbf75a6d80fdd5c1a7/canvas-noise.js","type":"application/javascript","filename":"canvas-noise.js","language":"JavaScript","size":673}},"id":"2123668","url":"https://api.github.com/gists/2123668","git_pull_url":"git://gist.github.com/2123668.git"},{"created_at":"2012-03-19T18:47:19Z","git_push_url":"git@gist.github.com:2123667.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123667","description":"Rocha vs Brookins Preview","updated_at":"2012-03-19T18:47:19Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123667/3f1e430f7180b53f990af00fe3eb409f699cdd75/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":77}},"id":"2123667","url":"https://api.github.com/gists/2123667","git_pull_url":"git://gist.github.com/2123667.git"},{"created_at":"2012-03-19T18:47:18Z","git_push_url":"git@gist.github.com:2123666.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123666","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:18Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123666/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123666","url":"https://api.github.com/gists/2123666","git_pull_url":"git://gist.github.com/2123666.git"},{"created_at":"2012-03-19T18:47:18Z","git_push_url":"git@gist.github.com:2123665.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/a688f98b2da508dce9cbedcb9377847f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"a688f98b2da508dce9cbedcb9377847f","url":"https://api.github.com/users/sportsvine","id":1549957,"login":"sportsvine"},"public":true,"html_url":"https://gist.github.com/2123665","description":"((LiVE))Atlanta Hawks vs Boston Celtics Live Stream Online tv on pc","updated_at":"2012-03-19T18:47:18Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123665/7c64ce9421db626775f442fd248ea75bb3224564/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":308}},"id":"2123665","url":"https://api.github.com/gists/2123665","git_pull_url":"git://gist.github.com/2123665.git"},{"created_at":"2012-03-19T18:47:14Z","git_push_url":"git@gist.github.com:2123663.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123663","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:47:14Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123663/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123663","url":"https://api.github.com/gists/2123663","git_pull_url":"git://gist.github.com/2123663.git"},{"created_at":"2012-03-19T18:47:11Z","git_push_url":"git@gist.github.com:2123662.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123662","description":"Rocha vs Brookins round","updated_at":"2012-03-19T18:47:11Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123662/739a39e76dda7760e85b8184d11457d5bcdafe79/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":71}},"id":"2123662","url":"https://api.github.com/gists/2123662","git_pull_url":"git://gist.github.com/2123662.git"},{"created_at":"2012-03-19T18:47:01Z","git_push_url":"git@gist.github.com:2123660.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123660","description":"Rocha vs Brookins Video","updated_at":"2012-03-19T18:47:01Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123660/534130c77b5dcc30cc4311c2899bffd1abd24789/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":71}},"id":"2123660","url":"https://api.github.com/gists/2123660","git_pull_url":"git://gist.github.com/2123660.git"},{"created_at":"2012-03-19T18:46:53Z","git_push_url":"git@gist.github.com:2123659.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123659","description":"Watch Rocha vs Brookins","updated_at":"2012-03-19T18:46:53Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123659/e3511eba8052fd1b5c4eabcfa4de809bd2adcfc6/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":71}},"id":"2123659","url":"https://api.github.com/gists/2123659","git_pull_url":"git://gist.github.com/2123659.git"},{"created_at":"2012-03-19T18:46:44Z","git_push_url":"git@gist.github.com:2123658.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123658","description":"Watch Rocha vs Brookins Live Free","updated_at":"2012-03-19T18:46:44Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123658/51e2bb14b2501f791211c454ac9c82b23c47aa57/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":101}},"id":"2123658","url":"https://api.github.com/gists/2123658","git_pull_url":"git://gist.github.com/2123658.git"},{"created_at":"2012-03-19T18:46:36Z","git_push_url":"git@gist.github.com:2123656.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123656","description":"HQ Rocha vs Brookins video","updated_at":"2012-03-19T18:46:36Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123656/57e529e80848ef01b99692f466bec8fab852fcb8/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":80}},"id":"2123656","url":"https://api.github.com/gists/2123656","git_pull_url":"git://gist.github.com/2123656.git"},{"created_at":"2012-03-19T18:46:35Z","git_push_url":"git@gist.github.com:2123655.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123655","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:46:35Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123655/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123655","url":"https://api.github.com/gists/2123655","git_pull_url":"git://gist.github.com/2123655.git"},{"created_at":"2012-03-19T18:46:33Z","git_push_url":"git@gist.github.com:2123654.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/adb90e926c6d6a3abdc59c9b7d40c5a6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"adb90e926c6d6a3abdc59c9b7d40c5a6","url":"https://api.github.com/users/ananda145","id":1553051,"login":"ananda145"},"public":true,"html_url":"https://gist.github.com/2123654","description":"Watch and Enjoy Brighton vs Derby Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:46:33Z","comments":0,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123654/f92dfdd22167c671ee681cd2d2e6df84cd224316/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2460}},"id":"2123654","url":"https://api.github.com/gists/2123654","git_pull_url":"git://gist.github.com/2123654.git"},{"created_at":"2012-03-19T18:46:27Z","git_push_url":"git@gist.github.com:2123653.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/091dc8215054f92a8956abf38f899be0?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"091dc8215054f92a8956abf38f899be0","url":"https://api.github.com/users/juggalomc","id":1550734,"login":"juggalomc"},"public":true,"html_url":"https://gist.github.com/2123653","description":"Rocha vs Brookins full fight","updated_at":"2012-03-19T18:46:27Z","comments":1,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123653/10f33332a97ec5ab4d85d4b06bf6409eeffd65b6/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":86}},"id":"2123653","url":"https://api.github.com/gists/2123653","git_pull_url":"git://gist.github.com/2123653.git"},{"created_at":"2012-03-19T18:46:25Z","git_push_url":"git@gist.github.com:2123652.git","user":{"avatar_url":"https://secure.gravatar.com/avatar/e7b7b6ae900b7cab60101bc11560b78c?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"e7b7b6ae900b7cab60101bc11560b78c","url":"https://api.github.com/users/das7878","id":1546234,"login":"das7878"},"public":true,"html_url":"https://gist.github.com/2123652","description":"Cardiff vs Coventry Live npower Championship PC to TV 2012","updated_at":"2012-03-19T18:46:25Z","comments":5,"files":{"gistfile1.txt":{"raw_url":"https://gist.github.com/raw/2123652/5556cdb3f3482a57d7576d203689464bccd4a101/gistfile1.txt","type":"text/plain","filename":"gistfile1.txt","language":"Text","size":2575}},"id":"2123652","url":"https://api.github.com/gists/2123652","git_pull_url":"git://gist.github.com/2123652.git"}] - diff --git a/test/ReplayDataForIntegrationTest/GitObjects.txt b/test/ReplayDataForIntegrationTest/GitObjects.txt deleted file mode 100644 index b8ff613a..00000000 --- a/test/ReplayDataForIntegrationTest/GitObjects.txt +++ /dev/null @@ -1,70 +0,0 @@ -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4967'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"214e87ac608a17403a4c5cf4649db6ab"'), ('date', 'Sat, 03 Mar 2012 08:57:32 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"collaborators":0,"public_gists":0,"type":"Organization","total_private_repos":0,"following":0,"login":"BeaverSoftware","private_gists":0,"blog":null,"owned_private_repos":0,"billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"private_repos":0,"name":"free","space":307200},"location":"Paris, France","public_repos":2,"company":null,"url":"https://api.github.com/orgs/BeaverSoftware","html_url":"https://github.com/BeaverSoftware","created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":1424031,"followers":0} - -GET /repos/BeaverSoftware/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4966'), ('content-length', '3595'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"cb3691660bb3ebae5d3e26a1e0407548"'), ('date', 'Sat, 03 Mar 2012 08:57:33 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T08:56:56Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","source":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"parent":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:56:56Z","organization":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0} - -GET /repos/BeaverSoftware/TestPyGithub/git/refs/heads/master {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4965'), ('content-length', '308'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a8fe26b2671fa11956f06f4ccdea66d1"'), ('date', 'Sat, 03 Mar 2012 08:57:34 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"ref":"refs/heads/master","object":{"type":"commit","sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/heads/master"} - -GET /repos/BeaverSoftware/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4964'), ('content-length', '804'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"4250532552739c9a80abc713e782d789"'), ('date', 'Sat, 03 Mar 2012 08:57:34 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:52:03-08:00"},"parents":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271"}],"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:52:03-08:00"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974"} - -GET /repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4963'), ('content-length', '625'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"5e826e7bca9b98dd4e847cfdea8a6d7e"'), ('date', 'Sat, 03 Mar 2012 08:57:35 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","tree":[{"type":"blob","sha":"7d442819c066fe47ec64d8f438d67c9e83a7278b","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/7d442819c066fe47ec64d8f438d67c9e83a7278b","size":69,"path":"ReadMe.md","mode":"100644"},{"type":"blob","sha":"5e36908015e357cedc7f70dece559cbb3d79cb2b","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/5e36908015e357cedc7f70dece559cbb3d79cb2b","size":33,"path":"foo.bar","mode":"100644"}],"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"} - -GET /repos/BeaverSoftware/TestPyGithub/git/blobs/7d442819c066fe47ec64d8f438d67c9e83a7278b {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4962'), ('content-length', '305'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"c521c398c03ce55e842919d6eddacdd2"'), ('date', 'Sat, 03 Mar 2012 08:57:36 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"content":"VGhpcyBpcyBvbmx5IGEgdGVzdCByZXBvc2l0b3J5IHVzZWQgaW4gaW50ZWdy\nYXRpb24gdGVzdHMgb2YgUHlHaXRodWIK\n","encoding":"base64","sha":"7d442819c066fe47ec64d8f438d67c9e83a7278b","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/7d442819c066fe47ec64d8f438d67c9e83a7278b","size":69} - -POST /repos/BeaverSoftware/TestPyGithub/git/blobs {} {"content": "This blob was created by PyGithub", "encoding": "latin1"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4961'), ('content-length', '166'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"afd901e7cdb6d6b73a4f4aded62524bc"'), ('date', 'Sat, 03 Mar 2012 08:57:36 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/5e36908015e357cedc7f70dece559cbb3d79cb2b')] -{"sha":"5e36908015e357cedc7f70dece559cbb3d79cb2b","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/5e36908015e357cedc7f70dece559cbb3d79cb2b"} - -POST /repos/BeaverSoftware/TestPyGithub/git/trees {} {"tree": [{"path": "foo.bar", "type": "blob", "mode": "100644", "sha": "5e36908015e357cedc7f70dece559cbb3d79cb2b"}, {"path": "ReadMe.md", "type": "blob", "mode": "100644", "sha": "7d442819c066fe47ec64d8f438d67c9e83a7278b"}]} -201 -[('status', '201 Created'), ('content-length', '625'), ('etag', '"75c0ba740f3441ff23c41b9b5a84fa58"'), ('x-ratelimit-remaining', '4960'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85'), ('date', 'Sat, 03 Mar 2012 08:57:37 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"tree":[{"type":"blob","path":"ReadMe.md","mode":"100644","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/7d442819c066fe47ec64d8f438d67c9e83a7278b","size":69,"sha":"7d442819c066fe47ec64d8f438d67c9e83a7278b"},{"type":"blob","path":"foo.bar","mode":"100644","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/5e36908015e357cedc7f70dece559cbb3d79cb2b","size":33,"sha":"5e36908015e357cedc7f70dece559cbb3d79cb2b"}],"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85","sha":"e40d3575e68128e127e7805b7b30452da0600b85"} - -POST /repos/BeaverSoftware/TestPyGithub/git/commits {} {"parents": ["1c29d761d3e929afcbf8c6cc44b8181068d2d974"], "message": "This commit was created by PyGithub", "tree": "e40d3575e68128e127e7805b7b30452da0600b85"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4959'), ('content-length', '804'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"90efae2520ab8d78d4a5c75d2e0acbac"'), ('date', 'Sat, 03 Mar 2012 08:57:38 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a')] -{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:38-08:00"},"parents":[{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974"}],"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:38-08:00"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a"} - -POST /repos/BeaverSoftware/TestPyGithub/git/refs {} {"sha": "1c29d761d3e929afcbf8c6cc44b8181068d2d974", "ref": "refs/heads/previous_master"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4958'), ('content-length', '326'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"24d076509d021122861620c5f20f0f16"'), ('date', 'Sat, 03 Mar 2012 08:57:38 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/heads/previous_master')] -{"ref":"refs/heads/previous_master","object":{"type":"commit","sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/heads/previous_master"} - -PATCH /repos/BeaverSoftware/TestPyGithub/git/refs/heads/master {} {"sha": "390bcc2b855d419e9fd6727049aa9217db56a06a"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4957'), ('content-length', '308'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1fccf1d861e70cf523c7c80639dba102"'), ('date', 'Sat, 03 Mar 2012 08:57:39 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"ref":"refs/heads/master","object":{"type":"commit","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/heads/master"} - -POST /repos/BeaverSoftware/TestPyGithub/git/tags {} {"message": "This tag was created by PyGithub", "tag": "tagCreatedByPyGithub", "type": "commit", "object": "390bcc2b855d419e9fd6727049aa9217db56a06a"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4956'), ('content-length', '548'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"83837daf6c9c1a7b95fdc77558ab5043"'), ('date', 'Sat, 03 Mar 2012 08:57:40 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/tags/027ac89ee13e1a280845cb601127363f663981a9')] -{"message":"This tag was created by PyGithub","object":{"type":"commit","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a"},"tagger":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:40-08:00"},"tag":"tagCreatedByPyGithub","sha":"027ac89ee13e1a280845cb601127363f663981a9","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/tags/027ac89ee13e1a280845cb601127363f663981a9"} - -POST /repos/BeaverSoftware/TestPyGithub/git/refs {} {"sha": "027ac89ee13e1a280845cb601127363f663981a9", "ref": "refs/tags/tagCreatedByPyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4955'), ('content-length', '328'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"bd4367da537873014488439b3f49306e"'), ('date', 'Sat, 03 Mar 2012 08:57:41 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/tags/tagCreatedByPyGithub')] -{"ref":"refs/tags/tagCreatedByPyGithub","object":{"type":"tag","sha":"027ac89ee13e1a280845cb601127363f663981a9","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/tags/027ac89ee13e1a280845cb601127363f663981a9"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/tags/tagCreatedByPyGithub"} - -GET /repos/BeaverSoftware/TestPyGithub/git/tags/027ac89ee13e1a280845cb601127363f663981a9 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4954'), ('content-length', '548'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"83837daf6c9c1a7b95fdc77558ab5043"'), ('date', 'Sat, 03 Mar 2012 08:57:41 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"This tag was created by PyGithub","object":{"type":"commit","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a"},"tagger":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:40-08:00"},"tag":"tagCreatedByPyGithub","sha":"027ac89ee13e1a280845cb601127363f663981a9","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/tags/027ac89ee13e1a280845cb601127363f663981a9"} - diff --git a/test/ReplayDataForIntegrationTest/GitObjectsAlternative.txt b/test/ReplayDataForIntegrationTest/GitObjectsAlternative.txt deleted file mode 100644 index be345cdb..00000000 --- a/test/ReplayDataForIntegrationTest/GitObjectsAlternative.txt +++ /dev/null @@ -1,35 +0,0 @@ -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4986'), ('content-length', '714'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"01491ce527efe4e0c1bdb6f6293bec40"'), ('date', 'Mon, 19 Mar 2012 18:48:05 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"Organization","url":"https://api.github.com/orgs/BeaverSoftware","collaborators":0,"following":0,"login":"BeaverSoftware","public_gists":0,"blog":null,"billing_email":"BeaverSoftware@vincent-jacques.net","private_gists":0,"disk_usage":0,"plan":{"name":"free","private_repos":0,"space":307200},"followers":0,"location":"Paris, France","total_private_repos":0,"html_url":"https://github.com/BeaverSoftware","company":null,"public_repos":2,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","owned_private_repos":0,"created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"id":1424031} - -GET /repos/BeaverSoftware/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4985'), ('content-length', '3599'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7bf7e882c239a159cff071fe57cb2f2e"'), ('date', 'Mon, 19 Mar 2012 18:48:05 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","forks":0,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","source":{"git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_wiki":true,"homepage":"http://vincent-jacques.net/PyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","updated_at":"2012-03-12T21:04:52Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"open_issues":17,"watchers":1,"language":null,"pushed_at":"2012-03-12T21:04:51Z","private":false,"size":132,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","mirror_url":null,"created_at":"2012-03-03T07:41:19Z","owner":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","has_downloads":true,"id":3609314,"html_url":"https://github.com/jacquev6/TestPyGithub","description":"Guinea-pig for PyGithub testing","has_issues":true,"master_branch":null},"has_wiki":true,"homepage":"http://vincent-jacques.net/PyGithub","parent":{"git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_wiki":true,"homepage":"http://vincent-jacques.net/PyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","updated_at":"2012-03-12T21:04:52Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"open_issues":17,"watchers":1,"language":null,"pushed_at":"2012-03-12T21:04:51Z","private":false,"size":132,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","mirror_url":null,"created_at":"2012-03-03T07:41:19Z","owner":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","has_downloads":true,"id":3609314,"html_url":"https://github.com/jacquev6/TestPyGithub","description":"Guinea-pig for PyGithub testing","has_issues":true,"master_branch":null},"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","updated_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","fork":true,"open_issues":0,"watchers":1,"language":null,"pushed_at":"2012-03-03T08:57:40Z","private":false,"size":112,"clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","mirror_url":null,"created_at":"2012-03-03T07:53:19Z","owner":{"url":"https://api.github.com/users/BeaverSoftware","login":"BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":1424031},"name":"TestPyGithub","has_downloads":true,"id":3609352,"organization":{"url":"https://api.github.com/users/BeaverSoftware","login":"BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":1424031},"html_url":"https://github.com/BeaverSoftware/TestPyGithub","description":"Guinea-pig for PyGithub testing","has_issues":false,"master_branch":null} - -GET /repos/BeaverSoftware/TestPyGithub/git/refs/heads/master {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4984'), ('content-length', '308'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"14e7f65675ce3a05bd2f4e299b1606b1"'), ('date', 'Mon, 19 Mar 2012 18:48:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/refs/heads/master","ref":"refs/heads/master","object":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","type":"commit","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a"}} - -GET /repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4983'), ('content-length', '804'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0fb68ae7867fa4bd3ee32394412536d3"'), ('date', 'Mon, 19 Mar 2012 18:48:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:38-08:00"},"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:38-08:00"},"parents":[{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974"}],"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","tree":{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85","sha":"e40d3575e68128e127e7805b7b30452da0600b85"}} - -GET /repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4982'), ('content-length', '625'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"dc6ae3c4dc6da5ca5a7b7d1f49b28145"'), ('date', 'Mon, 19 Mar 2012 18:48:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85","sha":"e40d3575e68128e127e7805b7b30452da0600b85","tree":[{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/7d442819c066fe47ec64d8f438d67c9e83a7278b","type":"blob","sha":"7d442819c066fe47ec64d8f438d67c9e83a7278b","size":69,"path":"ReadMe.md","mode":"100644"},{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/5e36908015e357cedc7f70dece559cbb3d79cb2b","type":"blob","sha":"5e36908015e357cedc7f70dece559cbb3d79cb2b","size":33,"path":"foo.bar","mode":"100644"}]} - -POST /repos/BeaverSoftware/TestPyGithub/git/blobs {} {"content": "This blob was also created by PyGithub", "encoding": "latin1"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4981'), ('content-length', '166'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d11ff383257b6827b4809cb303b7163e"'), ('date', 'Mon, 19 Mar 2012 18:48:08 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/f8f5425c8caf8d7c6790b96093cc4d5366473eb4')] -{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/f8f5425c8caf8d7c6790b96093cc4d5366473eb4","sha":"f8f5425c8caf8d7c6790b96093cc4d5366473eb4"} - -POST /repos/BeaverSoftware/TestPyGithub/git/trees {} {"tree": [{"path": "new.bar", "type": "blob", "mode": "100644", "sha": "f8f5425c8caf8d7c6790b96093cc4d5366473eb4"}], "base_tree": "e40d3575e68128e127e7805b7b30452da0600b85"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4980'), ('content-length', '849'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"01f8b37c2832d63b01aeaab7b6f18a85"'), ('date', 'Mon, 19 Mar 2012 18:48:09 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/87363a9c7b3f95477f71331751656a0b39ebbb26')] -{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/trees/87363a9c7b3f95477f71331751656a0b39ebbb26","sha":"87363a9c7b3f95477f71331751656a0b39ebbb26","tree":[{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/7d442819c066fe47ec64d8f438d67c9e83a7278b","type":"blob","sha":"7d442819c066fe47ec64d8f438d67c9e83a7278b","size":69,"path":"ReadMe.md","mode":"100644"},{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/5e36908015e357cedc7f70dece559cbb3d79cb2b","type":"blob","sha":"5e36908015e357cedc7f70dece559cbb3d79cb2b","size":33,"path":"foo.bar","mode":"100644"},{"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub/git/blobs/f8f5425c8caf8d7c6790b96093cc4d5366473eb4","type":"blob","sha":"f8f5425c8caf8d7c6790b96093cc4d5366473eb4","size":38,"path":"new.bar","mode":"100644"}]} - diff --git a/test/ReplayDataForIntegrationTest/Hooks.txt b/test/ReplayDataForIntegrationTest/Hooks.txt deleted file mode 100644 index bf047164..00000000 --- a/test/ReplayDataForIntegrationTest/Hooks.txt +++ /dev/null @@ -1,55 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4918'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b0ffce734bc188bc17bac1c4304c74bb"'), ('date', 'Sat, 03 Mar 2012 12:42:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17388,"type":"User","bio":"","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","total_private_repos":5,"following":24,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","public_gists":1,"owned_private_repos":5,"private_gists":2,"plan":{"private_repos":5,"name":"micro","collaborators":1,"space":614400},"location":"Paris, France","public_repos":16,"company":"Criteo","url":"https://api.github.com/users/jacquev6","html_url":"https://github.com/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","blog":"http://vincent-jacques.net","email":"vincent@vincent-jacques.net","collaborators":0,"hireable":false,"id":327146,"followers":12} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4917'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"097b8feb7f95f8cd6ae40675cc13b96d"'), ('date', 'Sat, 03 Mar 2012 12:42:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /repos/jacquev6/TestPyGithub/hooks {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4916'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sat, 03 Mar 2012 12:42:24 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/hooks {} {"config": {"url": "http://www.invalid.org"}, "name": "web"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4915'), ('content-length', '289'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2a89ca7883d74eb81c7988e928d633cd"'), ('date', 'Sat, 03 Mar 2012 12:42:25 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/hooks/185159')] -{"config":{"url":"http://www.invalid.org"},"active":true,"updated_at":"2012-03-03T12:42:24Z","last_response":{"message":null,"code":null},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/hooks/185159","created_at":"2012-03-03T12:42:24Z","name":"web","events":["push"],"id":185159} - -GET /repos/jacquev6/TestPyGithub/hooks {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4914'), ('content-length', '291'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ef5398635270382213075871ed53aecc"'), ('date', 'Sat, 03 Mar 2012 12:42:25 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"config":{"url":"http://www.invalid.org"},"active":true,"updated_at":"2012-03-03T12:42:24Z","last_response":{"message":null,"code":null},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/hooks/185159","created_at":"2012-03-03T12:42:24Z","name":"web","events":["push"],"id":185159}] - -PATCH /repos/jacquev6/TestPyGithub/hooks/185159 {} {"config": {"url": "http://www.postbin.org/w5cgjr"}, "name": "web"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4913'), ('content-length', '296'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"08c1920b16f2645d8496bb767c60b4f7"'), ('date', 'Sat, 03 Mar 2012 12:42:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"config":{"url":"http://www.postbin.org/w5cgjr"},"active":true,"updated_at":"2012-03-03T12:42:26Z","url":"https://api.github.com/repos/jacquev6/TestPyGithub/hooks/185159","created_at":"2012-03-03T12:42:24Z","name":"web","last_response":{"message":null,"code":null},"events":["push"],"id":185159} - -GET /repos/jacquev6/TestPyGithub/hooks {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4912'), ('content-length', '298'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e605358e9872260bb06a4f22da481045"'), ('date', 'Sat, 03 Mar 2012 12:42:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"config":{"url":"http://www.postbin.org/w5cgjr"},"active":true,"updated_at":"2012-03-03T12:42:26Z","last_response":{"message":null,"code":null},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/hooks/185159","created_at":"2012-03-03T12:42:24Z","name":"web","events":["push"],"id":185159}] - -GET /repos/jacquev6/TestPyGithub/hooks/185159 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4911'), ('content-length', '296'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2c963868aef4ccc27990bafd07c13d4e"'), ('date', 'Sat, 03 Mar 2012 12:42:27 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"config":{"url":"http://www.postbin.org/w5cgjr"},"active":true,"updated_at":"2012-03-03T12:42:26Z","last_response":{"message":null,"code":null},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/hooks/185159","created_at":"2012-03-03T12:42:24Z","name":"web","events":["push"],"id":185159} - -POST /repos/jacquev6/TestPyGithub/hooks/185159/test {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4910'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 12:42:28 GMT')] - - -DELETE /repos/jacquev6/TestPyGithub/hooks/185159 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4909'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sat, 03 Mar 2012 12:42:28 GMT')] - - -GET /repos/jacquev6/TestPyGithub/hooks {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4908'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sat, 03 Mar 2012 12:42:29 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - diff --git a/test/ReplayDataForIntegrationTest/IssuesAndMilestones.txt b/test/ReplayDataForIntegrationTest/IssuesAndMilestones.txt deleted file mode 100644 index 1631b782..00000000 --- a/test/ReplayDataForIntegrationTest/IssuesAndMilestones.txt +++ /dev/null @@ -1,225 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4975'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b32209ac83fa01b1b9d04bce9abdc844"'), ('date', 'Mon, 12 Mar 2012 21:29:35 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"total_private_repos":5,"type":"User","url":"https://api.github.com/users/jacquev6","public_repos":16,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","owned_private_repos":5,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","plan":{"private_repos":5,"space":614400,"collaborators":1,"name":"micro"},"following":24,"login":"jacquev6","html_url":"https://github.com/jacquev6","followers":12,"hireable":false,"collaborators":0,"public_gists":1,"name":"Vincent Jacques","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","location":"Paris, France","bio":"","id":327146,"private_gists":2,"disk_usage":17624,"company":"Criteo","blog":"http://vincent-jacques.net"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4974'), ('content-length', '1068'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b1a898ffcc692defcf0dcaf7dd34f43e"'), ('date', 'Mon, 12 Mar 2012 21:29:35 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"has_downloads":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","mirror_url":null,"has_issues":true,"master_branch":null,"created_at":"2012-03-03T07:41:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"description":"Guinea-pig for PyGithub testing","has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"html_url":"https://github.com/jacquev6/TestPyGithub","private":false,"homepage":"http://vincent-jacques.net/PyGithub","size":132,"open_issues":16,"clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-12T21:04:51Z","updated_at":"2012-03-12T21:04:52Z","owner":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","id":3609314,"language":null} - -GET /repos/jacquev6/TestPyGithub/issues {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4973'), ('content-length', '12835'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"18019329e5b4fac0819c679e06e54c6a"'), ('date', 'Mon, 12 Mar 2012 21:29:36 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-03T11:09:25Z","closed_at":null,"comments":0,"labels":[{"color":"cccccc","name":"duplicate","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate"},{"color":"e6e6e6","name":"invalid","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid"}],"number":16,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T11:09:14Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/16","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3489023,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16"},{"updated_at":"2012-03-03T11:08:10Z","closed_at":null,"comments":0,"labels":[],"number":15,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T11:07:59Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/15","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3489016,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15"},{"updated_at":"2012-03-03T11:05:51Z","closed_at":null,"comments":0,"labels":[],"number":14,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T11:05:41Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/14","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3489009,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14"},{"updated_at":"2012-03-03T11:04:24Z","closed_at":null,"comments":1,"labels":[],"number":13,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T11:04:22Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/13","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3489005,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13"},{"updated_at":"2012-03-03T10:59:00Z","closed_at":null,"comments":0,"labels":[{"color":"cccccc","name":"duplicate","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate"},{"color":"e6e6e6","name":"invalid","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid"}],"number":12,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:58:52Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/12","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488992,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12"},{"updated_at":"2012-03-03T10:58:15Z","closed_at":null,"comments":1,"labels":[],"number":11,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:58:08Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/11","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488985,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11"},{"updated_at":"2012-03-03T10:57:32Z","closed_at":null,"comments":1,"labels":[],"number":10,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:57:24Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/10","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488983,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10"},{"updated_at":"2012-03-03T10:52:38Z","closed_at":null,"comments":0,"labels":[{"color":"cccccc","name":"duplicate","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate"},{"color":"e6e6e6","name":"invalid","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid"}],"number":9,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:52:32Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/9","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488962,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/9"},{"updated_at":"2012-03-03T10:49:19Z","closed_at":null,"comments":0,"labels":[],"number":8,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:49:14Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/8","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488955,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/8"},{"updated_at":"2012-03-03T10:47:00Z","closed_at":null,"comments":0,"labels":[],"number":7,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:46:56Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/7","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488943,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/7"},{"updated_at":"2012-03-03T10:44:34Z","closed_at":null,"comments":0,"labels":[],"number":6,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:44:30Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/6","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488933,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/6"},{"updated_at":"2012-03-03T10:43:42Z","closed_at":null,"comments":0,"labels":[],"number":5,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:43:37Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/5","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488930,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/5"},{"updated_at":"2012-03-03T10:38:47Z","closed_at":null,"comments":0,"labels":[],"number":4,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:38:43Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/4","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488906,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/4"},{"updated_at":"2012-03-03T10:36:42Z","closed_at":null,"comments":0,"labels":[],"number":3,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:36:41Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/3","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488891,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/3"},{"updated_at":"2012-03-03T10:36:16Z","closed_at":null,"comments":0,"labels":[],"number":2,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:36:15Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/2","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488887,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/2"},{"updated_at":"2012-03-03T10:33:51Z","closed_at":null,"comments":0,"labels":[],"number":1,"title":"Issue created by PyGithub","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"created_at":"2012-03-03T10:33:50Z","html_url":"https://github.com/jacquev6/TestPyGithub/issues/1","assignee":null,"state":"open","body":"Issue edited by PyGithub","milestone":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146,"gravatar_id":"b68de5ae38616c296fa345d2b9df2225"},"id":3488878,"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/1"}] - -POST /repos/jacquev6/TestPyGithub/issues {} {"title": "Issue created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4972'), ('content-length', '756'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"73ea8b1b81ec58b65040afef93ebc909"'), ('date', 'Mon, 12 Mar 2012 21:29:37 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/issues/27')] -{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/27","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/27","closed_by":null,"created_at":"2012-03-12T21:29:37Z","assignee":null,"milestone":null,"labels":[],"number":27,"body":null,"updated_at":"2012-03-12T21:29:37Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3619507,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4971'), ('content-length', '13575'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"222e2695ac4f1cf6f9889b2b096c4012"'), ('date', 'Mon, 12 Mar 2012 21:29:38 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/27","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/27","created_at":"2012-03-12T21:29:37Z","assignee":null,"milestone":null,"labels":[],"number":27,"body":null,"updated_at":"2012-03-12T21:29:37Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3619507,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/16","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/16","created_at":"2012-03-03T11:09:14Z","assignee":null,"milestone":null,"labels":[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}],"number":16,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T11:09:25Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3489023,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/15","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/15","created_at":"2012-03-03T11:07:59Z","assignee":null,"milestone":null,"labels":[],"number":15,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T11:08:10Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3489016,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/14","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/14","created_at":"2012-03-03T11:05:41Z","assignee":null,"milestone":null,"labels":[],"number":14,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T11:05:51Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3489009,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/13","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/13","created_at":"2012-03-03T11:04:22Z","assignee":null,"milestone":null,"labels":[],"number":13,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T11:04:24Z","comments":1,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3489005,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/12","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/12","created_at":"2012-03-03T10:58:52Z","assignee":null,"milestone":null,"labels":[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}],"number":12,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:59:00Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488992,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/11","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/11","created_at":"2012-03-03T10:58:08Z","assignee":null,"milestone":null,"labels":[],"number":11,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:58:15Z","comments":1,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488985,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/10","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/10","created_at":"2012-03-03T10:57:24Z","assignee":null,"milestone":null,"labels":[],"number":10,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:57:32Z","comments":1,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488983,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/9","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/9","created_at":"2012-03-03T10:52:32Z","assignee":null,"milestone":null,"labels":[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}],"number":9,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:52:38Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488962,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/8","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/8","created_at":"2012-03-03T10:49:14Z","assignee":null,"milestone":null,"labels":[],"number":8,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:49:19Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488955,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/7","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/7","created_at":"2012-03-03T10:46:56Z","assignee":null,"milestone":null,"labels":[],"number":7,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:47:00Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488943,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/6","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/6","created_at":"2012-03-03T10:44:30Z","assignee":null,"milestone":null,"labels":[],"number":6,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:44:34Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488933,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/5","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/5","created_at":"2012-03-03T10:43:37Z","assignee":null,"milestone":null,"labels":[],"number":5,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:43:42Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488930,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/4","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/4","created_at":"2012-03-03T10:38:43Z","assignee":null,"milestone":null,"labels":[],"number":4,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:38:47Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488906,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/3","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/3","created_at":"2012-03-03T10:36:41Z","assignee":null,"milestone":null,"labels":[],"number":3,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:36:42Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488891,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/2","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/2","created_at":"2012-03-03T10:36:15Z","assignee":null,"milestone":null,"labels":[],"number":2,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:36:16Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488887,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}},{"title":"Issue created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/issues/1","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/1","created_at":"2012-03-03T10:33:50Z","assignee":null,"milestone":null,"labels":[],"number":1,"body":"Issue edited by PyGithub","updated_at":"2012-03-03T10:33:51Z","comments":0,"state":"open","pull_request":{"html_url":null,"patch_url":null,"diff_url":null},"id":3488878,"closed_at":null,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146}}] - -PATCH /repos/jacquev6/TestPyGithub/issues/27 {} {"body": "Issue edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4970'), ('content-length', '778'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"fe8c53ad7b720e130ddd80096a252ddb"'), ('date', 'Mon, 12 Mar 2012 21:29:38 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/27","created_at":"2012-03-12T21:29:37Z","assignee":null,"milestone":null,"labels":[],"number":27,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/27","closed_by":null,"updated_at":"2012-03-12T21:29:38Z","comments":0,"state":"open","pull_request":{"diff_url":null,"html_url":null,"patch_url":null},"id":3619507,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues/27/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4969'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:29:39 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/issues/27/comments {} {"body": "Comment created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4968'), ('content-length', '510'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f30894abc4f2e10ace8b30d668b588d6"'), ('date', 'Mon, 12 Mar 2012 21:29:40 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4462119')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4462119","created_at":"2012-03-12T21:29:40Z","body":"Comment created by PyGithub","updated_at":"2012-03-12T21:29:40Z","id":4462119,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues/27/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4967'), ('content-length', '512'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0c322a314e86cc8d8b0d15ec31731290"'), ('date', 'Mon, 12 Mar 2012 21:29:40 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4462119","created_at":"2012-03-12T21:29:40Z","body":"Comment created by PyGithub","updated_at":"2012-03-12T21:29:40Z","id":4462119,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}}] - -PATCH /repos/jacquev6/TestPyGithub/issues/comments/4462119 {} {"body": "Comment edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4966'), ('content-length', '509'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"99cd21497a34ec8f513302430b2957cb"'), ('date', 'Mon, 12 Mar 2012 21:29:41 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4462119","created_at":"2012-03-12T21:29:40Z","body":"Comment edited by PyGithub","updated_at":"2012-03-12T21:29:41Z","id":4462119,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues/comments/4462119 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4965'), ('content-length', '509'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"99cd21497a34ec8f513302430b2957cb"'), ('date', 'Mon, 12 Mar 2012 21:29:42 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4462119","created_at":"2012-03-12T21:29:40Z","body":"Comment edited by PyGithub","updated_at":"2012-03-12T21:29:41Z","id":4462119,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues/27/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4964'), ('content-length', '511'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"11d4977e6cd518e4a667e33242327c18"'), ('date', 'Mon, 12 Mar 2012 21:29:42 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/comments/4462119","created_at":"2012-03-12T21:29:40Z","body":"Comment edited by PyGithub","updated_at":"2012-03-12T21:29:41Z","id":4462119,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}}] - -DELETE /repos/jacquev6/TestPyGithub/issues/comments/4462119 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4963'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Mon, 12 Mar 2012 21:29:43 GMT')] - - -GET /repos/jacquev6/TestPyGithub/issues/27/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4962'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:29:43 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -GET /repos/jacquev6/TestPyGithub/milestones {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4961'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:29:44 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/milestones {} {"title": "Milestone created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4960'), ('content-length', '549'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1690f5a9bb1a586af389ba1367c0b6b5"'), ('date', 'Mon, 12 Mar 2012 21:29:45 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1')] -{"title":"Milestone created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","closed_issues":0,"number":1,"description":null,"creator":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"due_on":null,"state":"open","open_issues":0} - -GET /repos/jacquev6/TestPyGithub/milestones {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4959'), ('content-length', '551'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"26bae9a2277b746e20a731a4cedd0985"'), ('date', 'Mon, 12 Mar 2012 21:29:45 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"title":"Milestone created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","closed_issues":0,"number":1,"description":null,"creator":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"due_on":null,"state":"open","open_issues":0}] - -PATCH /repos/jacquev6/TestPyGithub/milestones/1 {} {"title": "Milestone edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4958'), ('content-length', '548'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0064e4384b1ca9556f22808b06a320dc"'), ('date', 'Mon, 12 Mar 2012 21:29:46 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"title":"Milestone edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","closed_issues":0,"number":1,"description":null,"creator":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"due_on":null,"state":"open","open_issues":0} - -GET /repos/jacquev6/TestPyGithub/milestones {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4957'), ('content-length', '550'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"eb1d497e79ae004d728b357f7dcb5ab6"'), ('date', 'Mon, 12 Mar 2012 21:29:47 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"title":"Milestone edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","number":1,"closed_issues":0,"description":null,"creator":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"due_on":null,"state":"open","open_issues":0}] - -GET /repos/jacquev6/TestPyGithub/issues?milestone=1 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4956'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:29:47 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -PATCH /repos/jacquev6/TestPyGithub/issues/27 {} {"milestone": 1} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4955'), ('content-length', '1322'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3ece1babc1f96e916d74eefa02437139"'), ('date', 'Mon, 12 Mar 2012 21:29:48 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/27","created_at":"2012-03-12T21:29:37Z","assignee":null,"milestone":{"title":"Milestone edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","number":1,"closed_issues":0,"description":null,"creator":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"due_on":null,"state":"open","open_issues":1},"labels":[],"number":27,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/27","closed_by":null,"updated_at":"2012-03-12T21:29:48Z","comments":0,"state":"open","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"id":3619507,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/issues?milestone=1 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4954'), ('content-length', '1307'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"24abbcda9c18ee4d8ec07c6a69b9adf5"'), ('date', 'Mon, 12 Mar 2012 21:29:48 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"assignee":null,"title":"Issue created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/27","created_at":"2012-03-12T21:29:37Z","milestone":{"title":"Milestone edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","closed_issues":0,"number":1,"creator":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"description":null,"due_on":null,"open_issues":1,"state":"open"},"labels":[],"number":27,"body":"Issue edited by PyGithub","closed_at":null,"html_url":"https://github.com/jacquev6/TestPyGithub/issues/27","pull_request":{"patch_url":null,"html_url":null,"diff_url":null},"updated_at":"2012-03-12T21:29:48Z","comments":0,"state":"open","id":3619507,"user":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146}}] - -GET /repos/jacquev6/TestPyGithub/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4953'), ('content-length', '667'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b78ca7167d9457a49304489dac8ae484"'), ('date', 'Mon, 12 Mar 2012 21:29:49 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/enhancement","color":"84b6eb","name":"enhancement"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/question","color":"cc317c","name":"question"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/wontfix","color":"ffffff","name":"wontfix"}] - -POST /repos/jacquev6/TestPyGithub/labels {} {"color": "FF0000", "name": "D"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4952'), ('content-length', '97'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"674c80d0cf1a13b2f4aa87a3f3e39641"'), ('date', 'Mon, 12 Mar 2012 21:29:50 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/labels/D')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/D","color":"FF0000","name":"D"} - -GET /repos/jacquev6/TestPyGithub/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4951'), ('content-length', '765'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"380d23e462457333b9913d4f8b3ed62f"'), ('date', 'Mon, 12 Mar 2012 21:29:50 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/enhancement","color":"84b6eb","name":"enhancement"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/question","color":"cc317c","name":"question"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/wontfix","color":"ffffff","name":"wontfix"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/D","color":"FF0000","name":"D"}] - -PATCH /repos/jacquev6/TestPyGithub/labels/D {} {"color": "00FF00", "name": "Dada"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4950'), ('content-length', '103'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"aac33bd2bb95161eb291b5f743b6be2e"'), ('date', 'Mon, 12 Mar 2012 21:29:51 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/Dada","color":"00FF00","name":"Dada"} - -GET /repos/jacquev6/TestPyGithub/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4949'), ('content-length', '771'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"dbb90f3f66724dee161f5e24c5806516"'), ('date', 'Mon, 12 Mar 2012 21:29:52 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/enhancement","color":"84b6eb","name":"enhancement"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/question","color":"cc317c","name":"question"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/wontfix","color":"ffffff","name":"wontfix"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/Dada","color":"00FF00","name":"Dada"}] - -DELETE /repos/jacquev6/TestPyGithub/labels/D {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4948'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Mon, 12 Mar 2012 21:29:52 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -GET /repos/jacquev6/TestPyGithub/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4947'), ('content-length', '771'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"dbb90f3f66724dee161f5e24c5806516"'), ('date', 'Mon, 12 Mar 2012 21:29:53 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/enhancement","color":"84b6eb","name":"enhancement"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/question","color":"cc317c","name":"question"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/wontfix","color":"ffffff","name":"wontfix"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/Dada","color":"00FF00","name":"Dada"}] - -GET /repos/jacquev6/TestPyGithub/labels/bug {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4946'), ('content-length', '101'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"ba9a55226a3d51c6310f0d790cce4e34"'), ('date', 'Mon, 12 Mar 2012 21:29:53 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"} - -GET /repos/jacquev6/TestPyGithub/labels/duplicate {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4945'), ('content-length', '113'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"212c1fdc877234eae5dcef4737d2e334"'), ('date', 'Mon, 12 Mar 2012 21:29:54 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"} - -GET /repos/jacquev6/TestPyGithub/labels/invalid {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4944'), ('content-length', '109'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"63e61aacf762561aaecc547402b28379"'), ('date', 'Mon, 12 Mar 2012 21:29:55 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"} - -GET /repos/jacquev6/TestPyGithub/issues/27/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4943'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:29:55 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -PUT /repos/jacquev6/TestPyGithub/issues/27/labels {} ["bug", "duplicate"] -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4942'), ('content-length', '217'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"14ac83e79ffa01a88070a8bc1e89018f"'), ('date', 'Mon, 12 Mar 2012 21:29:56 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"}] - -GET /repos/jacquev6/TestPyGithub/issues/27/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4941'), ('content-length', '217'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"14ac83e79ffa01a88070a8bc1e89018f"'), ('date', 'Mon, 12 Mar 2012 21:29:57 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug","color":"fc2929","name":"bug"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"}] - -DELETE /repos/jacquev6/TestPyGithub/issues/27/labels/duplicate {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4940'), ('content-length', '103'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"eafa835a132db176e64eb86109c1b5cf"'), ('date', 'Mon, 12 Mar 2012 21:29:57 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"color":"fc2929","name":"bug","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug"}] - -GET /repos/jacquev6/TestPyGithub/issues/27/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4939'), ('content-length', '103'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"eafa835a132db176e64eb86109c1b5cf"'), ('date', 'Mon, 12 Mar 2012 21:29:58 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"color":"fc2929","name":"bug","url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/bug"}] - -DELETE /repos/jacquev6/TestPyGithub/issues/27/labels {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4938'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Mon, 12 Mar 2012 21:29:58 GMT')] - - -GET /repos/jacquev6/TestPyGithub/issues/27/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4937'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:29:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/issues/27/labels {} ["duplicate", "invalid"] -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4936'), ('content-length', '225'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"386bf3d757584a31234013d976886969"'), ('date', 'Mon, 12 Mar 2012 21:30:00 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}] - -GET /repos/jacquev6/TestPyGithub/issues/27/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4935'), ('content-length', '225'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"386bf3d757584a31234013d976886969"'), ('date', 'Mon, 12 Mar 2012 21:30:00 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}] - -GET /repos/jacquev6/TestPyGithub/milestones/1 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4934'), ('content-length', '548'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0ba1e4d9d6dc2a7cc45875ba40d85310"'), ('date', 'Mon, 12 Mar 2012 21:30:01 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"title":"Milestone edited by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/milestones/1","created_at":"2012-03-12T21:29:45Z","number":1,"description":null,"closed_issues":0,"creator":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","id":327146},"due_on":null,"state":"open","open_issues":1} - -GET /repos/jacquev6/TestPyGithub/milestones/1/labels {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4933'), ('content-length', '225'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"386bf3d757584a31234013d976886969"'), ('date', 'Mon, 12 Mar 2012 21:30:02 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/duplicate","color":"cccccc","name":"duplicate"},{"url":"https://api.github.com/repos/jacquev6/TestPyGithub/labels/invalid","color":"e6e6e6","name":"invalid"}] - -DELETE /repos/jacquev6/TestPyGithub/milestones/1 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4932'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Mon, 12 Mar 2012 21:30:02 GMT')] - - -GET /repos/jacquev6/TestPyGithub/milestones {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4931'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Mon, 12 Mar 2012 21:30:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - diff --git a/test/ReplayDataForIntegrationTest/IssuesForAuthenticatedUser.txt b/test/ReplayDataForIntegrationTest/IssuesForAuthenticatedUser.txt deleted file mode 100644 index 40e23bcc..00000000 --- a/test/ReplayDataForIntegrationTest/IssuesForAuthenticatedUser.txt +++ /dev/null @@ -1,5 +0,0 @@ -GET /issues {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4999'), ('content-length', '23479'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2e738a6e0bb3c7c1d5427736a6b5cbc7"'), ('date', 'Mon, 19 Mar 2012 18:39:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/18","closed_at":null,"updated_at":"2012-03-14T06:49:31Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Take care of _identity","created_at":"2012-03-14T06:49:31Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Refactoring","color":"0b02e1","name":"Refactoring"}],"number":18,"id":3643837,"body":"","milestone":null,"html_url":"https://github.com/jacquev6/PyGithub/issues/18"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/17","closed_at":null,"updated_at":"2012-03-13T12:09:48Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Document issue reporting","created_at":"2012-03-13T12:09:48Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Project+management","color":"444444","name":"Project management"}],"number":17,"id":3628022,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/17"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/16","closed_at":null,"updated_at":"2012-03-13T07:04:42Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Add copyright and license notice","created_at":"2012-03-13T06:25:31Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Project+management","color":"444444","name":"Project management"}],"number":16,"id":3624595,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/16"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/15","closed_at":null,"updated_at":"2012-03-13T06:24:05Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Implement OAuth","created_at":"2012-03-13T06:24:05Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Missing+functionality","color":"e102d8","name":"Missing functionality"}],"number":15,"id":3624575,"body":"","milestone":null,"html_url":"https://github.com/jacquev6/PyGithub/issues/15"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/14","closed_at":null,"updated_at":"2012-03-13T06:23:35Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Rework BaseUrl to use tuples instead of string concatenation","created_at":"2012-03-13T06:23:35Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Refactoring","color":"0b02e1","name":"Refactoring"}],"number":14,"id":3624570,"body":"","milestone":null,"html_url":"https://github.com/jacquev6/PyGithub/issues/14"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/13","closed_at":null,"updated_at":"2012-03-13T06:22:27Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Remove the _repo hugly hack","created_at":"2012-03-13T06:22:27Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Refactoring","color":"0b02e1","name":"Refactoring"}],"number":13,"id":3624561,"body":"","milestone":null,"html_url":"https://github.com/jacquev6/PyGithub/issues/13"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/12","closed_at":null,"updated_at":"2012-03-13T06:21:57Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Structure some InternalSimpleAttributes","created_at":"2012-03-13T06:21:57Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Public+interface","color":"e10c02","name":"Public interface"}],"number":12,"id":3624556,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/12"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/11","closed_at":null,"updated_at":"2012-03-13T06:08:10Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Implement alternative inputs","created_at":"2012-03-13T06:08:10Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Missing+functionality","color":"e102d8","name":"Missing functionality"}],"number":11,"id":3624472,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/3","due_on":"2012-03-20T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":3,"title":"Version 0.5: full implementation","created_at":"2012-03-12T21:38:36Z","closed_issues":1,"number":3,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/11"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/9","closed_at":null,"updated_at":"2012-03-12T21:58:05Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Publish version 1.0","created_at":"2012-03-12T21:58:05Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Project+management","color":"444444","name":"Project management"}],"number":9,"id":3619973,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/9"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/8","closed_at":null,"updated_at":"2012-03-12T21:38:49Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Publish version 0.5","created_at":"2012-03-12T21:38:49Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Project+management","color":"444444","name":"Project management"}],"number":8,"id":3619658,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/3","due_on":"2012-03-20T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":3,"title":"Version 0.5: full implementation","created_at":"2012-03-12T21:38:36Z","closed_issues":1,"number":3,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/8"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/6","closed_at":null,"updated_at":"2012-03-12T19:45:51Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Review exceptions policy when receiving error HTTP status","created_at":"2012-03-12T19:45:51Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Public+interface","color":"e10c02","name":"Public interface"}],"number":6,"id":3617711,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/6"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/5","closed_at":null,"updated_at":"2012-03-12T21:39:05Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Implement full API","created_at":"2012-03-08T12:21:28Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Missing+functionality","color":"e102d8","name":"Missing functionality"}],"number":5,"id":3561926,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/3","due_on":"2012-03-20T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":3,"title":"Version 0.5: full implementation","created_at":"2012-03-12T21:38:36Z","closed_issues":1,"number":3,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/5"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/4","closed_at":null,"updated_at":"2012-03-08T12:23:29Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Review public interface homogeneity ","created_at":"2012-03-06T16:48:40Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Public+interface","color":"e10c02","name":"Public interface"}],"number":4,"id":3527266,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/4"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/3","closed_at":null,"updated_at":"2012-03-08T12:23:29Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Deduce mandatory parameters","created_at":"2012-03-06T16:47:49Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Public+interface","color":"e10c02","name":"Public interface"}],"number":3,"id":3527245,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/3"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/issues/2","closed_at":null,"updated_at":"2012-03-08T12:23:29Z","comments":0,"state":"open","pull_request":{"patch_url":null,"diff_url":null,"html_url":null},"user":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"title":"Use objects as parameters instead of shas, ids, etc.","created_at":"2012-03-06T16:46:49Z","assignee":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"labels":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/labels/Public+interface","color":"e10c02","name":"Public interface"}],"number":2,"id":3527231,"body":"","milestone":{"url":"https://api.github.com/repos/jacquev6/PyGithub/milestones/2","due_on":"2012-03-24T07:00:00Z","creator":{"url":"https://api.github.com/users/jacquev6","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"state":"open","open_issues":8,"title":"Version 1.0: coherent public interface","created_at":"2012-03-08T12:22:28Z","closed_issues":0,"number":2,"description":""},"html_url":"https://github.com/jacquev6/PyGithub/issues/2"}] - diff --git a/test/ReplayDataForIntegrationTest/Keys.txt b/test/ReplayDataForIntegrationTest/Keys.txt deleted file mode 100644 index 119acdad..00000000 --- a/test/ReplayDataForIntegrationTest/Keys.txt +++ /dev/null @@ -1,45 +0,0 @@ -GET /user/keys {} null -200 -[('status', '200 OK'), ('content-length', '1430'), ('x-ratelimit-limit', '5000'), ('x-ratelimit-remaining', '4832'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('etag', '"6438c058dc2b4e1151f0180941e7db97"'), ('date', 'Thu, 01 Mar 2012 20:55:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC262QAZ3rvJ7KySFEHUQYGfntylusL03x/ULKdVaSltc3Z2xvWm4zQSLHrWrdUbRN9z9kMpHWZZ2G+pvUPcY/qijbqtwg9FwBHNZoviq65LujKyQeegFXQKhGGaesDeKKC+jTXbg2NJY6+u5HLe4Je8q45VVHyAfltcuSE2QoCim50toyGUGWhcIDz/2mQYpy1wtkehQA6TeC55UE00TSU06E9glnqVi8hjDlsA7DABqyctG/sjP79OwUMBppiXYX2B0RJMtRHZ+5chsHx8oqavux1oG/tdTw9ZSAfKUHfDrN97x9PB38F3j8s60S2udRwLEYuErlF1JizTF4XOZhD","url":"https://api.github.com/user/keys/688586","id":688586,"title":"vincent@home"},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3CG7CI2EKMS6xeHgj1lC9tkjDJRotG9ZB7E/YbMy0l15I+ReiM5cQvYhivK2myJh7uiMBPa/VjowhZb7DvitZF8aUa99zHCygKDvN/XBl2nMEY8A01BmG6/JGlP1fgU1HdbULn1E6j0a+mYIFlpDzOFKTJqR25OzngOFC4VYiPVnoyH+uPZWWeOMPgdiJxAEWKs267OjXeikYfYE2xQN9M3a1EHitkwWOeVNKIqDTxoAU8f+Ifl4Cchq4mF56pWETSsj4hQ9YhXtzI8Grun0ZoYZM/cLPLo5rSi++FAJNU2T9yc/0G75DKEYH9UroLSQBua7KF+ixrIEtD6hI4gxDQ==","url":"https://api.github.com/user/keys/688598","id":688598,"title":"vincent@gandi"},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwMTPUYqezUk3PuUlqrvNYKrKZfMMs+xnXiBh1IDNKlypFZ1awxb88gO/gzzoDRQK30jf6v6Z0bcsipjiVfejK9gCBb1k+SrQQRSGPvfoO/LvdRFDhltXVPCJDf6wpQT6QncBGagYaLMorMtN2685yphs6hxfT0LTvUhiZGn6NEIPYXOz+L6+HUF4q0ovE8FZjCA0sooGTafpIKifaY4pJt2ppAtXqIQRgPQO1kEf6SOKxvGlr6TWgK6DvL75kbKc0eM3JgKN5l3CjEU6uuFZ2r/Qr00A8VRfqrq1I/LaaiyoyEKJc/KVMnZES+uF5FAsE+QFVG7C9XV9dX0XK5HSL","url":"https://api.github.com/user/keys/1664432","id":1664432,"title":"vincent@foxboard"}] - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4831'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"36c0c3ad8484a74605d5187ce85d8be7"'), ('date', 'Thu, 01 Mar 2012 20:55:04 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17252,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","owned_private_repos":5,"following":24,"login":"jacquev6","public_gists":4,"private_gists":2,"collaborators":0,"public_repos":15,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","plan":{"collaborators":1,"name":"micro","private_repos":5,"space":614400},"blog":"http://vincent-jacques.net","location":"Paris, France","company":"Criteo","hireable":false,"url":"https://api.github.com/users/jacquev6","html_url":"https://github.com/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","bio":"","id":327146,"total_private_repos":5,"followers":12} - -POST /user/keys {} {"key": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==", "title": "jacquev6@PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4830'), ('content-length', '480'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2e964dd9a6e29e26e55e9fe20eb99b24"'), ('date', 'Thu, 01 Mar 2012 20:55:05 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/user/keys/2092061')] -{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"jacquev6@PyGithub","url":"https://api.github.com/user/keys/2092061","id":2092061} - -GET /user/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4829'), ('content-length', '1911'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3298a7b88a38c7d6ffe2397d5d794aac"'), ('date', 'Thu, 01 Mar 2012 20:55:05 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC262QAZ3rvJ7KySFEHUQYGfntylusL03x/ULKdVaSltc3Z2xvWm4zQSLHrWrdUbRN9z9kMpHWZZ2G+pvUPcY/qijbqtwg9FwBHNZoviq65LujKyQeegFXQKhGGaesDeKKC+jTXbg2NJY6+u5HLe4Je8q45VVHyAfltcuSE2QoCim50toyGUGWhcIDz/2mQYpy1wtkehQA6TeC55UE00TSU06E9glnqVi8hjDlsA7DABqyctG/sjP79OwUMBppiXYX2B0RJMtRHZ+5chsHx8oqavux1oG/tdTw9ZSAfKUHfDrN97x9PB38F3j8s60S2udRwLEYuErlF1JizTF4XOZhD","title":"vincent@home","url":"https://api.github.com/user/keys/688586","id":688586},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3CG7CI2EKMS6xeHgj1lC9tkjDJRotG9ZB7E/YbMy0l15I+ReiM5cQvYhivK2myJh7uiMBPa/VjowhZb7DvitZF8aUa99zHCygKDvN/XBl2nMEY8A01BmG6/JGlP1fgU1HdbULn1E6j0a+mYIFlpDzOFKTJqR25OzngOFC4VYiPVnoyH+uPZWWeOMPgdiJxAEWKs267OjXeikYfYE2xQN9M3a1EHitkwWOeVNKIqDTxoAU8f+Ifl4Cchq4mF56pWETSsj4hQ9YhXtzI8Grun0ZoYZM/cLPLo5rSi++FAJNU2T9yc/0G75DKEYH9UroLSQBua7KF+ixrIEtD6hI4gxDQ==","title":"vincent@gandi","url":"https://api.github.com/user/keys/688598","id":688598},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwMTPUYqezUk3PuUlqrvNYKrKZfMMs+xnXiBh1IDNKlypFZ1awxb88gO/gzzoDRQK30jf6v6Z0bcsipjiVfejK9gCBb1k+SrQQRSGPvfoO/LvdRFDhltXVPCJDf6wpQT6QncBGagYaLMorMtN2685yphs6hxfT0LTvUhiZGn6NEIPYXOz+L6+HUF4q0ovE8FZjCA0sooGTafpIKifaY4pJt2ppAtXqIQRgPQO1kEf6SOKxvGlr6TWgK6DvL75kbKc0eM3JgKN5l3CjEU6uuFZ2r/Qr00A8VRfqrq1I/LaaiyoyEKJc/KVMnZES+uF5FAsE+QFVG7C9XV9dX0XK5HSL","title":"vincent@foxboard","url":"https://api.github.com/user/keys/1664432","id":1664432},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"jacquev6@PyGithub","url":"https://api.github.com/user/keys/2092061","id":2092061}] - -PATCH /user/keys/2092061 {} {"title": "jacquev6@PyGithub2"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4828'), ('content-length', '481'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3b4f39f5348a15a9e571b8d4390aecc3"'), ('date', 'Thu, 01 Mar 2012 20:55:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"jacquev6@PyGithub2","url":"https://api.github.com/user/keys/2092061","id":2092061} - -GET /user/keys/2092061 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4827'), ('content-length', '481'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3b4f39f5348a15a9e571b8d4390aecc3"'), ('date', 'Thu, 01 Mar 2012 20:55:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"jacquev6@PyGithub2","url":"https://api.github.com/user/keys/2092061","id":2092061} - -GET /user/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4826'), ('content-length', '1912'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"757c317ff573e06622b517a3535aa355"'), ('date', 'Thu, 01 Mar 2012 20:55:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC262QAZ3rvJ7KySFEHUQYGfntylusL03x/ULKdVaSltc3Z2xvWm4zQSLHrWrdUbRN9z9kMpHWZZ2G+pvUPcY/qijbqtwg9FwBHNZoviq65LujKyQeegFXQKhGGaesDeKKC+jTXbg2NJY6+u5HLe4Je8q45VVHyAfltcuSE2QoCim50toyGUGWhcIDz/2mQYpy1wtkehQA6TeC55UE00TSU06E9glnqVi8hjDlsA7DABqyctG/sjP79OwUMBppiXYX2B0RJMtRHZ+5chsHx8oqavux1oG/tdTw9ZSAfKUHfDrN97x9PB38F3j8s60S2udRwLEYuErlF1JizTF4XOZhD","title":"vincent@home","url":"https://api.github.com/user/keys/688586","id":688586},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3CG7CI2EKMS6xeHgj1lC9tkjDJRotG9ZB7E/YbMy0l15I+ReiM5cQvYhivK2myJh7uiMBPa/VjowhZb7DvitZF8aUa99zHCygKDvN/XBl2nMEY8A01BmG6/JGlP1fgU1HdbULn1E6j0a+mYIFlpDzOFKTJqR25OzngOFC4VYiPVnoyH+uPZWWeOMPgdiJxAEWKs267OjXeikYfYE2xQN9M3a1EHitkwWOeVNKIqDTxoAU8f+Ifl4Cchq4mF56pWETSsj4hQ9YhXtzI8Grun0ZoYZM/cLPLo5rSi++FAJNU2T9yc/0G75DKEYH9UroLSQBua7KF+ixrIEtD6hI4gxDQ==","title":"vincent@gandi","url":"https://api.github.com/user/keys/688598","id":688598},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwMTPUYqezUk3PuUlqrvNYKrKZfMMs+xnXiBh1IDNKlypFZ1awxb88gO/gzzoDRQK30jf6v6Z0bcsipjiVfejK9gCBb1k+SrQQRSGPvfoO/LvdRFDhltXVPCJDf6wpQT6QncBGagYaLMorMtN2685yphs6hxfT0LTvUhiZGn6NEIPYXOz+L6+HUF4q0ovE8FZjCA0sooGTafpIKifaY4pJt2ppAtXqIQRgPQO1kEf6SOKxvGlr6TWgK6DvL75kbKc0eM3JgKN5l3CjEU6uuFZ2r/Qr00A8VRfqrq1I/LaaiyoyEKJc/KVMnZES+uF5FAsE+QFVG7C9XV9dX0XK5HSL","title":"vincent@foxboard","url":"https://api.github.com/user/keys/1664432","id":1664432},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"jacquev6@PyGithub2","url":"https://api.github.com/user/keys/2092061","id":2092061}] - -DELETE /user/keys/2092061 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4825'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:55:08 GMT')] - - -GET /user/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4824'), ('content-length', '1430'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"687015696afbffa6532273b091dd0e53"'), ('date', 'Thu, 01 Mar 2012 20:55:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC262QAZ3rvJ7KySFEHUQYGfntylusL03x/ULKdVaSltc3Z2xvWm4zQSLHrWrdUbRN9z9kMpHWZZ2G+pvUPcY/qijbqtwg9FwBHNZoviq65LujKyQeegFXQKhGGaesDeKKC+jTXbg2NJY6+u5HLe4Je8q45VVHyAfltcuSE2QoCim50toyGUGWhcIDz/2mQYpy1wtkehQA6TeC55UE00TSU06E9glnqVi8hjDlsA7DABqyctG/sjP79OwUMBppiXYX2B0RJMtRHZ+5chsHx8oqavux1oG/tdTw9ZSAfKUHfDrN97x9PB38F3j8s60S2udRwLEYuErlF1JizTF4XOZhD","title":"vincent@home","url":"https://api.github.com/user/keys/688586","id":688586},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA3CG7CI2EKMS6xeHgj1lC9tkjDJRotG9ZB7E/YbMy0l15I+ReiM5cQvYhivK2myJh7uiMBPa/VjowhZb7DvitZF8aUa99zHCygKDvN/XBl2nMEY8A01BmG6/JGlP1fgU1HdbULn1E6j0a+mYIFlpDzOFKTJqR25OzngOFC4VYiPVnoyH+uPZWWeOMPgdiJxAEWKs267OjXeikYfYE2xQN9M3a1EHitkwWOeVNKIqDTxoAU8f+Ifl4Cchq4mF56pWETSsj4hQ9YhXtzI8Grun0ZoYZM/cLPLo5rSi++FAJNU2T9yc/0G75DKEYH9UroLSQBua7KF+ixrIEtD6hI4gxDQ==","title":"vincent@gandi","url":"https://api.github.com/user/keys/688598","id":688598},{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwMTPUYqezUk3PuUlqrvNYKrKZfMMs+xnXiBh1IDNKlypFZ1awxb88gO/gzzoDRQK30jf6v6Z0bcsipjiVfejK9gCBb1k+SrQQRSGPvfoO/LvdRFDhltXVPCJDf6wpQT6QncBGagYaLMorMtN2685yphs6hxfT0LTvUhiZGn6NEIPYXOz+L6+HUF4q0ovE8FZjCA0sooGTafpIKifaY4pJt2ppAtXqIQRgPQO1kEf6SOKxvGlr6TWgK6DvL75kbKc0eM3JgKN5l3CjEU6uuFZ2r/Qr00A8VRfqrq1I/LaaiyoyEKJc/KVMnZES+uF5FAsE+QFVG7C9XV9dX0XK5HSL","title":"vincent@foxboard","url":"https://api.github.com/user/keys/1664432","id":1664432}] - diff --git a/test/ReplayDataForIntegrationTest/MergePullRequest.txt b/test/ReplayDataForIntegrationTest/MergePullRequest.txt deleted file mode 100644 index b9daba4c..00000000 --- a/test/ReplayDataForIntegrationTest/MergePullRequest.txt +++ /dev/null @@ -1,30 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4981'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0806ed9cb560b7d7ac80e9ae3198d91d"'), ('date', 'Mon, 12 Mar 2012 21:04:48 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/jacquev6","type":"User","url":"https://api.github.com/users/jacquev6","disk_usage":17576,"created_at":"2010-07-09T06:10:06Z","email":"vincent@vincent-jacques.net","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","public_repos":16,"total_private_repos":5,"public_gists":1,"blog":"http://vincent-jacques.net","owned_private_repos":5,"private_gists":2,"following":24,"hireable":false,"login":"jacquev6","bio":"","followers":12,"name":"Vincent Jacques","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","plan":{"private_repos":5,"space":614400,"name":"micro","collaborators":1},"location":"Paris, France","id":327146,"collaborators":0,"company":"Criteo"} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4980'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3bbcb6cc516e4017433512a4a88c84d7"'), ('date', 'Mon, 12 Mar 2012 21:04:49 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/jacquev6/TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_downloads":true,"created_at":"2012-03-03T07:41:19Z","has_issues":true,"master_branch":null,"description":"Guinea-pig for PyGithub testing","forks":2,"git_url":"git://github.com/jacquev6/TestPyGithub.git","fork":false,"has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","private":false,"homepage":"http://vincent-jacques.net/PyGithub","size":84,"mirror_url":null,"open_issues":17,"updated_at":"2012-03-04T09:21:39Z","owner":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","id":3609314,"language":null} - -GET /repos/jacquev6/TestPyGithub/pulls/26 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4979'), ('content-length', '4346'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"9ad20f78af06aee1fae29fb454b88fa1"'), ('date', 'Mon, 12 Mar 2012 21:04:49 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/26","merged":false,"commits":5,"additions":1,"created_at":"2012-03-12T20:59:55Z","number":26,"deletions":0,"head":{"ref":"master","repo":{"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","has_downloads":true,"created_at":"2012-03-03T07:53:19Z","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","has_issues":false,"master_branch":null,"description":"Guinea-pig for PyGithub testing","forks":0,"fork":true,"mirror_url":null,"has_wiki":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","private":false,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","size":112,"open_issues":0,"updated_at":"2012-03-03T08:57:40Z","owner":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T08:57:40Z","id":3609352,"language":null},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","label":"BeaverSoftware:master","user":{"url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":1424031}},"body":"","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/26.diff","mergeable":true,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/26","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/26.patch","merged_by":null,"closed_at":null,"base":{"ref":"master","repo":{"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","url":"https://api.github.com/repos/jacquev6/TestPyGithub","has_downloads":true,"created_at":"2012-03-03T07:41:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","has_issues":true,"master_branch":null,"description":"Guinea-pig for PyGithub testing","forks":2,"fork":false,"mirror_url":null,"has_wiki":true,"svn_url":"https://github.com/jacquev6/TestPyGithub","private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","size":84,"open_issues":17,"updated_at":"2012-03-04T09:21:39Z","owner":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","id":3609314,"language":null},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","label":"jacquev6:master","user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}},"html_url":"https://github.com/jacquev6/TestPyGithub/pull/26","comments":0,"review_comments":0,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/26"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/26/comments"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/26/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/26"}},"updated_at":"2012-03-12T20:59:55Z","state":"open","changed_files":1,"merged_at":null,"id":970178,"user":{"url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146}} - -GET /repos/jacquev6/TestPyGithub/pulls/26/merge {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4978'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Mon, 12 Mar 2012 21:04:50 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -PUT /repos/jacquev6/TestPyGithub/pulls/26/merge {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4977'), ('content-length', '109'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"6a9d69e558b3ab1b3747a666517b02c5"'), ('date', 'Mon, 12 Mar 2012 21:04:51 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"merged":true,"message":"Pull Request successfully merged","sha":"5098a3636ee911fcc01391c7d8ae0afbc1966aee"} - -GET /repos/jacquev6/TestPyGithub/pulls/26/merge {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4976'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Mon, 12 Mar 2012 21:04:52 GMT')] - - diff --git a/test/ReplayDataForIntegrationTest/NamedUserDetails.txt b/test/ReplayDataForIntegrationTest/NamedUserDetails.txt deleted file mode 100644 index e2bb418a..00000000 --- a/test/ReplayDataForIntegrationTest/NamedUserDetails.txt +++ /dev/null @@ -1,35 +0,0 @@ -GET /users/jacquev6 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4979'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"888120c016dad07b704f0bc335d169e6"'), ('date', 'Sat, 03 Mar 2012 10:24:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"total_private_repos":5,"disk_usage":17368,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"html_url":"https://github.com/jacquev6","login":"jacquev6","owned_private_repos":5,"public_repos":17,"collaborators":0,"plan":{"private_repos":5,"collaborators":1,"name":"micro","space":614400},"blog":"http://vincent-jacques.net","location":"Paris, France","company":"Criteo","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","public_gists":4,"hireable":false,"url":"https://api.github.com/users/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","private_gists":2,"bio":"","id":327146,"followers":12} - -GET /users/jacquev6/repos {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4978'), ('content-length', '18052'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"abb240ee9c7f97fb0467b7b427948762"'), ('date', 'Sat, 03 Mar 2012 10:24:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_url":"git://github.com/jacquev6/ViDE.git","mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2012-01-03T16:13:39Z","svn_url":"https://github.com/jacquev6/ViDE","fork":false,"has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/ViDE","size":1452,"url":"https://api.github.com/repos/jacquev6/ViDE","ssh_url":"git@github.com:jacquev6/ViDE.git","clone_url":"https://github.com/jacquev6/ViDE.git","created_at":"2010-07-10T07:33:24Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"ViDE","open_issues":0,"id":767343,"description":"Vincent's Development Environment","watchers":0,"pushed_at":"2012-01-03T16:13:38Z"},{"git_url":"git://github.com/jacquev6/Boost.HierarchicalEnum.git","mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2012-02-20T12:43:24Z","svn_url":"https://github.com/jacquev6/Boost.HierarchicalEnum","fork":false,"has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/Boost.HierarchicalEnum","size":112,"url":"https://api.github.com/repos/jacquev6/Boost.HierarchicalEnum","ssh_url":"git@github.com:jacquev6/Boost.HierarchicalEnum.git","clone_url":"https://github.com/jacquev6/Boost.HierarchicalEnum.git","created_at":"2010-07-10T08:32:12Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Boost.HierarchicalEnum","open_issues":0,"id":767382,"description":"","watchers":2,"pushed_at":"2011-11-27T14:00:23Z"},{"git_url":"git://github.com/jacquev6/QuadProgMm.git","mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/QuadProgMm","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2012-01-03T18:01:20Z","svn_url":"https://github.com/jacquev6/QuadProgMm","fork":false,"has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/QuadProgMm","size":748,"url":"https://api.github.com/repos/jacquev6/QuadProgMm","ssh_url":"git@github.com:jacquev6/QuadProgMm.git","clone_url":"https://github.com/jacquev6/QuadProgMm.git","created_at":"2010-07-10T08:36:57Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"QuadProgMm","open_issues":0,"id":767386,"description":"A C++ interface to specify quadratic problems by C++ expressions of your variables. Try it online.","watchers":0,"pushed_at":"2012-01-03T18:01:18Z"},{"git_url":"git://github.com/jacquev6/DrawSyntax.git","mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/DrawSyntax/","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2011-11-27T14:00:34Z","svn_url":"https://github.com/jacquev6/DrawSyntax","fork":false,"has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/DrawSyntax","size":1760,"url":"https://api.github.com/repos/jacquev6/DrawSyntax","ssh_url":"git@github.com:jacquev6/DrawSyntax.git","clone_url":"https://github.com/jacquev6/DrawSyntax.git","created_at":"2010-07-10T08:39:56Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"DrawSyntax","open_issues":0,"id":767392,"description":"Draw syntax diagrams from EBNF grammars. API in C++ and Python. Try it online.","watchers":0,"pushed_at":"2011-11-27T14:00:32Z"},{"git_url":"git://github.com/jacquev6/DrawTurksHead.git","mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/DrawTurksHead/","has_issues":false,"master_branch":"master","forks":1,"updated_at":"2011-11-11T21:07:56Z","svn_url":"https://github.com/jacquev6/DrawTurksHead","fork":false,"has_wiki":false,"language":"C++","private":false,"html_url":"https://github.com/jacquev6/DrawTurksHead","size":3208,"url":"https://api.github.com/repos/jacquev6/DrawTurksHead","ssh_url":"git@github.com:jacquev6/DrawTurksHead.git","clone_url":"https://github.com/jacquev6/DrawTurksHead.git","created_at":"2010-07-10T08:54:09Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"DrawTurksHead","open_issues":0,"id":767403,"description":"A tool to draw Turk's Head Knots. Try it online","watchers":0,"pushed_at":"2011-11-11T21:07:56Z"},{"git_url":"git://github.com/jacquev6/Tests.git","mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2011-12-11T12:40:26Z","svn_url":"https://github.com/jacquev6/Tests","fork":false,"has_wiki":false,"language":"C","private":false,"html_url":"https://github.com/jacquev6/Tests","size":2928,"url":"https://api.github.com/repos/jacquev6/Tests","ssh_url":"git@github.com:jacquev6/Tests.git","clone_url":"https://github.com/jacquev6/Tests.git","created_at":"2011-03-28T20:24:02Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"Tests","open_issues":0,"id":1538471,"description":"Various tests","watchers":0,"pushed_at":"2011-12-11T12:40:26Z"},{"git_url":"git://github.com/jacquev6/C4Planner.git","mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/C4Planner","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2012-02-16T21:51:01Z","svn_url":"https://github.com/jacquev6/C4Planner","fork":false,"has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/C4Planner","size":4716,"url":"https://api.github.com/repos/jacquev6/C4Planner","ssh_url":"git@github.com:jacquev6/C4Planner.git","clone_url":"https://github.com/jacquev6/C4Planner.git","created_at":"2011-08-24T08:30:55Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"C4Planner","open_issues":0,"id":2260441,"description":"Caesar IV: anticipate your city","watchers":1,"pushed_at":"2011-11-27T20:51:06Z"},{"git_url":"git://github.com/jacquev6/acme-public-website.git","mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-20T12:43:32Z","svn_url":"https://github.com/jacquev6/acme-public-website","fork":true,"has_wiki":false,"language":null,"private":false,"html_url":"https://github.com/jacquev6/acme-public-website","size":120,"url":"https://api.github.com/repos/jacquev6/acme-public-website","ssh_url":"git@github.com:jacquev6/acme-public-website.git","clone_url":"https://github.com/jacquev6/acme-public-website.git","created_at":"2011-12-07T20:00:40Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"acme-public-website","open_issues":0,"id":2935252,"description":"","watchers":0,"pushed_at":"2011-12-07T20:11:17Z"},{"git_url":"git://github.com/jacquev6/RipMyMusic.git","mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:43:03Z","svn_url":"https://github.com/jacquev6/RipMyMusic","fork":false,"has_wiki":true,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/RipMyMusic","size":260,"url":"https://api.github.com/repos/jacquev6/RipMyMusic","ssh_url":"git@github.com:jacquev6/RipMyMusic.git","clone_url":"https://github.com/jacquev6/RipMyMusic.git","created_at":"2011-12-12T18:27:10Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"RipMyMusic","open_issues":0,"id":2966372,"description":"","watchers":0,"pushed_at":"2011-12-14T19:56:18Z"},{"git_url":"git://github.com/jacquev6/PyMockMockMock.git","mirror_url":null,"has_downloads":true,"homepage":"","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:44:28Z","svn_url":"https://github.com/jacquev6/PyMockMockMock","fork":false,"has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/PyMockMockMock","size":352,"url":"https://api.github.com/repos/jacquev6/PyMockMockMock","ssh_url":"git@github.com:jacquev6/PyMockMockMock.git","clone_url":"https://github.com/jacquev6/PyMockMockMock.git","created_at":"2012-01-17T21:39:52Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"PyMockMockMock","open_issues":0,"id":3203482,"description":"Python mocking library focusing on as-strict-and-explicit-as-needed definition of the mock behaviour","watchers":0,"pushed_at":"2012-01-29T21:36:10Z"},{"git_url":"git://github.com/jacquev6/ActionTree.git","mirror_url":null,"has_downloads":false,"homepage":"http://vincent-jacques.net/ActionTree","has_issues":false,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:43:37Z","svn_url":"https://github.com/jacquev6/ActionTree","fork":false,"has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/ActionTree","size":140,"url":"https://api.github.com/repos/jacquev6/ActionTree","ssh_url":"git@github.com:jacquev6/ActionTree.git","clone_url":"https://github.com/jacquev6/ActionTree.git","created_at":"2012-01-31T12:35:28Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"ActionTree","open_issues":0,"id":3314582,"description":"Python library for parallel execution of (long) actions having mutual dependencies\n","watchers":0,"pushed_at":"2012-02-12T07:00:58Z"},{"git_url":"git://github.com/jacquev6/RecursiveDocument.git","mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:44:53Z","svn_url":"https://github.com/jacquev6/RecursiveDocument","fork":false,"has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/RecursiveDocument","size":0,"url":"https://api.github.com/repos/jacquev6/RecursiveDocument","ssh_url":"git@github.com:jacquev6/RecursiveDocument.git","clone_url":"https://github.com/jacquev6/RecursiveDocument.git","created_at":"2012-02-03T11:03:53Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"RecursiveDocument","open_issues":0,"id":3343759,"description":"","watchers":0,"pushed_at":null},{"git_url":"git://github.com/jacquev6/InteractiveCommandLineProgram.git","mirror_url":null,"has_downloads":true,"homepage":"","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-02-20T12:44:15Z","svn_url":"https://github.com/jacquev6/InteractiveCommandLineProgram","fork":false,"has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/InteractiveCommandLineProgram","size":0,"url":"https://api.github.com/repos/jacquev6/InteractiveCommandLineProgram","ssh_url":"git@github.com:jacquev6/InteractiveCommandLineProgram.git","clone_url":"https://github.com/jacquev6/InteractiveCommandLineProgram.git","created_at":"2012-02-03T11:05:09Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"InteractiveCommandLineProgram","open_issues":0,"id":3343767,"description":"","watchers":0,"pushed_at":null},{"git_url":"git://github.com/jacquev6/developer.github.com.git","mirror_url":null,"has_downloads":false,"homepage":"","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-02-20T12:43:58Z","svn_url":"https://github.com/jacquev6/developer.github.com","fork":true,"has_wiki":false,"language":"Ruby","private":false,"html_url":"https://github.com/jacquev6/developer.github.com","size":124,"url":"https://api.github.com/repos/jacquev6/developer.github.com","ssh_url":"git@github.com:jacquev6/developer.github.com.git","clone_url":"https://github.com/jacquev6/developer.github.com.git","created_at":"2012-02-05T18:22:26Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"developer.github.com","open_issues":0,"id":3361136,"description":"","watchers":0,"pushed_at":"2012-02-07T20:28:28Z"},{"git_url":"git://github.com/jacquev6/PyGithub.git","mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-03-02T16:59:19Z","svn_url":"https://github.com/jacquev6/PyGithub","fork":false,"has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/PyGithub","size":528,"url":"https://api.github.com/repos/jacquev6/PyGithub","ssh_url":"git@github.com:jacquev6/PyGithub.git","clone_url":"https://github.com/jacquev6/PyGithub.git","created_at":"2012-02-25T12:53:47Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"PyGithub","open_issues":1,"id":3544490,"description":"Python library (soon) implementing the full Github API v3","watchers":6,"pushed_at":"2012-03-02T16:59:19Z"},{"git_url":"git://github.com/jacquev6/TestPyGithub1.git","mirror_url":null,"has_downloads":true,"homepage":null,"has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-03-01T20:59:31Z","svn_url":"https://github.com/jacquev6/TestPyGithub1","fork":false,"has_wiki":false,"language":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub1","size":0,"url":"https://api.github.com/repos/jacquev6/TestPyGithub1","ssh_url":"git@github.com:jacquev6/TestPyGithub1.git","clone_url":"https://github.com/jacquev6/TestPyGithub1.git","created_at":"2012-03-01T20:59:31Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub1","open_issues":0,"id":3596037,"description":"Created by PyGithub","watchers":1,"pushed_at":null},{"git_url":"git://github.com/jacquev6/TestPyGithub.git","mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":2,"updated_at":"2012-03-03T07:53:19Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","size":84,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","created_at":"2012-03-03T07:41:19Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","open_issues":0,"id":3609314,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T07:43:16Z"}] - -GET /users/jacquev6/followers {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4977'), ('content-length', '3560'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"451ecc2c8f63fd20c5bcdc33b2b98432"'), ('date', 'Sat, 03 Mar 2012 10:24:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"29222a2dca6dd4cd33790d72ff3f5346","login":"jnorthrup","avatar_url":"https://secure.gravatar.com/avatar/29222a2dca6dd4cd33790d72ff3f5346?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jnorthrup","id":73514},{"gravatar_id":"43485eeefd3da3c96a7ea0c7e6b839dc","login":"brugidou","avatar_url":"https://secure.gravatar.com/avatar/43485eeefd3da3c96a7ea0c7e6b839dc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/brugidou","id":167633},{"gravatar_id":"74a2fabe5139527148c41cfb5dcc4b08","login":"regisb","avatar_url":"https://secure.gravatar.com/avatar/74a2fabe5139527148c41cfb5dcc4b08?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/regisb","id":44319},{"gravatar_id":"e251d20766937949a109603ca37bb3be","login":"walidk","avatar_url":"https://secure.gravatar.com/avatar/e251d20766937949a109603ca37bb3be?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/walidk","id":734669},{"gravatar_id":"8e85398b116be75d4baeeddfc9c3cce1","login":"afzalkhan","avatar_url":"https://secure.gravatar.com/avatar/8e85398b116be75d4baeeddfc9c3cce1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/afzalkhan","id":1003845},{"gravatar_id":"4a1e187f4f22547534a56966f6d8f942","login":"sdanzan","avatar_url":"https://secure.gravatar.com/avatar/4a1e187f4f22547534a56966f6d8f942?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/sdanzan","id":1094967},{"gravatar_id":"2d0c93649b7572036335aed380e351e5","login":"vineus","avatar_url":"https://secure.gravatar.com/avatar/2d0c93649b7572036335aed380e351e5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/vineus","id":467126},{"gravatar_id":"ba064e32f068e12bfc87d178179878a5","login":"gturri","avatar_url":"https://secure.gravatar.com/avatar/ba064e32f068e12bfc87d178179878a5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/gturri","id":308601},{"gravatar_id":"cb044bd9a9f6548b9a9bae44617c97c7","login":"fjardon","avatar_url":"https://secure.gravatar.com/avatar/cb044bd9a9f6548b9a9bae44617c97c7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/fjardon","id":121402},{"gravatar_id":"197eed5292fd11c0277335c3524ccfd5","login":"cjuniet","avatar_url":"https://secure.gravatar.com/avatar/197eed5292fd11c0277335c3524ccfd5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/cjuniet","id":1233553},{"gravatar_id":"1b4be24fa7e62eb508ca448da99e43d4","login":"jardon-u","avatar_url":"https://secure.gravatar.com/avatar/1b4be24fa7e62eb508ca448da99e43d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jardon-u","id":994192},{"gravatar_id":"0c43eba4a99f65e071e66e684cea8177","login":"kamaradclimber","avatar_url":"https://secure.gravatar.com/avatar/0c43eba4a99f65e071e66e684cea8177?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/kamaradclimber","id":503537}] - -GET /users/jacquev6/following {} null -200 -[('status', '200 OK'), ('content-length', '7072'), ('x-ratelimit-remaining', '4976'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"b4a20d31def97370bbf2b84278655602"'), ('date', 'Sat, 03 Mar 2012 10:24:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/users/nvie","gravatar_id":"c5a7f21b46df698f3db31c37ed0cf55a","avatar_url":"https://secure.gravatar.com/avatar/c5a7f21b46df698f3db31c37ed0cf55a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":83844,"login":"nvie"},{"url":"https://api.github.com/users/schacon","gravatar_id":"9375a9529679f1b42b567a640d775e7d","avatar_url":"https://secure.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":70,"login":"schacon"},{"url":"https://api.github.com/users/jamis","gravatar_id":"992fe8c19bbbc27f2b562a9f96efc03d","avatar_url":"https://secure.gravatar.com/avatar/992fe8c19bbbc27f2b562a9f96efc03d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1627,"login":"jamis"},{"url":"https://api.github.com/users/chad","gravatar_id":"77f306388bb6ae00ac0b0401e27cdc99","avatar_url":"https://secure.gravatar.com/avatar/77f306388bb6ae00ac0b0401e27cdc99?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":237,"login":"chad"},{"url":"https://api.github.com/users/unclebob","gravatar_id":"e47a3e81d72676bd497b1cb67f66da97","avatar_url":"https://secure.gravatar.com/avatar/e47a3e81d72676bd497b1cb67f66da97?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":36901,"login":"unclebob"},{"url":"https://api.github.com/users/dabrahams","gravatar_id":"5b45540ae377ec54a071f313b7193a27","avatar_url":"https://secure.gravatar.com/avatar/5b45540ae377ec54a071f313b7193a27?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":44065,"login":"dabrahams"},{"url":"https://api.github.com/users/jnorthrup","gravatar_id":"29222a2dca6dd4cd33790d72ff3f5346","avatar_url":"https://secure.gravatar.com/avatar/29222a2dca6dd4cd33790d72ff3f5346?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":73514,"login":"jnorthrup"},{"url":"https://api.github.com/users/brugidou","gravatar_id":"43485eeefd3da3c96a7ea0c7e6b839dc","avatar_url":"https://secure.gravatar.com/avatar/43485eeefd3da3c96a7ea0c7e6b839dc?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":167633,"login":"brugidou"},{"url":"https://api.github.com/users/regisb","gravatar_id":"74a2fabe5139527148c41cfb5dcc4b08","avatar_url":"https://secure.gravatar.com/avatar/74a2fabe5139527148c41cfb5dcc4b08?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":44319,"login":"regisb"},{"url":"https://api.github.com/users/walidk","gravatar_id":"e251d20766937949a109603ca37bb3be","avatar_url":"https://secure.gravatar.com/avatar/e251d20766937949a109603ca37bb3be?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":734669,"login":"walidk"},{"url":"https://api.github.com/users/tanzilli","gravatar_id":"5d533d287dda8809a5369b65063ef725","avatar_url":"https://secure.gravatar.com/avatar/5d533d287dda8809a5369b65063ef725?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":434112,"login":"tanzilli"},{"url":"https://api.github.com/users/fjardon","gravatar_id":"cb044bd9a9f6548b9a9bae44617c97c7","avatar_url":"https://secure.gravatar.com/avatar/cb044bd9a9f6548b9a9bae44617c97c7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":121402,"login":"fjardon"},{"url":"https://api.github.com/users/r3c","gravatar_id":"9240b01ceef60b45be83aee8637e7043","avatar_url":"https://secure.gravatar.com/avatar/9240b01ceef60b45be83aee8637e7043?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":979446,"login":"r3c"},{"url":"https://api.github.com/users/sdanzan","gravatar_id":"4a1e187f4f22547534a56966f6d8f942","avatar_url":"https://secure.gravatar.com/avatar/4a1e187f4f22547534a56966f6d8f942?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1094967,"login":"sdanzan"},{"url":"https://api.github.com/users/vineus","gravatar_id":"2d0c93649b7572036335aed380e351e5","avatar_url":"https://secure.gravatar.com/avatar/2d0c93649b7572036335aed380e351e5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":467126,"login":"vineus"},{"url":"https://api.github.com/users/cjuniet","gravatar_id":"197eed5292fd11c0277335c3524ccfd5","avatar_url":"https://secure.gravatar.com/avatar/197eed5292fd11c0277335c3524ccfd5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1233553,"login":"cjuniet"},{"url":"https://api.github.com/users/gturri","gravatar_id":"ba064e32f068e12bfc87d178179878a5","avatar_url":"https://secure.gravatar.com/avatar/ba064e32f068e12bfc87d178179878a5?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":308601,"login":"gturri"},{"url":"https://api.github.com/users/ant9000","gravatar_id":"05c5d147f5decac1213f47007f6e97ed","avatar_url":"https://secure.gravatar.com/avatar/05c5d147f5decac1213f47007f6e97ed?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":803884,"login":"ant9000"},{"url":"https://api.github.com/users/asquini","gravatar_id":"ffc7ee9137c7c6859958bd21b724dde1","avatar_url":"https://secure.gravatar.com/avatar/ffc7ee9137c7c6859958bd21b724dde1?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1159877,"login":"asquini"},{"url":"https://api.github.com/users/claudyus","gravatar_id":"694d276cdabd74c2538838f55d289143","avatar_url":"https://secure.gravatar.com/avatar/694d276cdabd74c2538838f55d289143?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":509291,"login":"claudyus"},{"url":"https://api.github.com/users/jardon-u","gravatar_id":"1b4be24fa7e62eb508ca448da99e43d4","avatar_url":"https://secure.gravatar.com/avatar/1b4be24fa7e62eb508ca448da99e43d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":994192,"login":"jardon-u"},{"url":"https://api.github.com/users/s-bernard","gravatar_id":"046dc82526c7cb4c60d8e70c6f4d4615","avatar_url":"https://secure.gravatar.com/avatar/046dc82526c7cb4c60d8e70c6f4d4615?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1468889,"login":"s-bernard"},{"url":"https://api.github.com/users/kamaradclimber","gravatar_id":"0c43eba4a99f65e071e66e684cea8177","avatar_url":"https://secure.gravatar.com/avatar/0c43eba4a99f65e071e66e684cea8177?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":503537,"login":"kamaradclimber"},{"url":"https://api.github.com/users/Lyloa","gravatar_id":"1517ed584458ccf83e03f5d77d9699d7","avatar_url":"https://secure.gravatar.com/avatar/1517ed584458ccf83e03f5d77d9699d7?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":1131432,"login":"Lyloa"}] - -GET /users/jacquev6/watched {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4975'), ('content-length', '28341'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"fad552add93d07ff206336598116d057"'), ('date', 'Sat, 03 Mar 2012 10:24:09 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":1811,"pushed_at":"2012-03-02T22:06:47Z","mirror_url":null,"homepage":"http://git-scm.com","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:58:15Z","forks":388,"fork":false,"svn_url":"https://github.com/git/git","language":"C","private":false,"git_url":"git://github.com/git/git.git","size":8464,"has_wiki":false,"url":"https://api.github.com/repos/git/git","html_url":"https://github.com/git/git","created_at":"2008-07-23T14:21:26Z","owner":{"gravatar_id":"99e03910f53f19037807f6d2a605114f","login":"git","avatar_url":"https://secure.gravatar.com/avatar/99e03910f53f19037807f6d2a605114f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/git","id":18133},"name":"git","clone_url":"https://github.com/git/git.git","id":36502,"ssh_url":"git@github.com:git/git.git","description":"Git Source Code Mirror","open_issues":5},{"watchers":45,"pushed_at":"2009-12-15T14:07:47Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-27T13:14:47Z","forks":4,"fork":false,"svn_url":"https://github.com/moriyoshi/boost.php","language":"C++","private":false,"git_url":"git://github.com/moriyoshi/boost.php.git","size":1331,"has_wiki":true,"url":"https://api.github.com/repos/moriyoshi/boost.php","html_url":"https://github.com/moriyoshi/boost.php","created_at":"2008-07-29T03:01:07Z","owner":{"gravatar_id":"0bafbcfcfb548a4ac20406692858f68b","login":"moriyoshi","avatar_url":"https://secure.gravatar.com/avatar/0bafbcfcfb548a4ac20406692858f68b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/moriyoshi","id":18755},"name":"boost.php","clone_url":"https://github.com/moriyoshi/boost.php.git","id":38097,"ssh_url":"git@github.com:moriyoshi/boost.php.git","description":"Create your PHP extension in C++, in a minute.","open_issues":0},{"watchers":1900,"pushed_at":"2012-02-21T09:01:17Z","mirror_url":null,"homepage":"http://capify.org","has_downloads":false,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T02:05:44Z","forks":178,"fork":true,"svn_url":"https://github.com/capistrano/capistrano","language":"Ruby","private":false,"git_url":"git://github.com/capistrano/capistrano.git","size":204,"has_wiki":true,"url":"https://api.github.com/repos/capistrano/capistrano","html_url":"https://github.com/capistrano/capistrano","created_at":"2009-02-26T16:14:04Z","owner":{"gravatar_id":"885e1c523b7975c4003de162d8ee8fee","login":"capistrano","avatar_url":"https://secure.gravatar.com/avatar/885e1c523b7975c4003de162d8ee8fee?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/capistrano","id":58257},"name":"capistrano","clone_url":"https://github.com/capistrano/capistrano.git","id":138312,"ssh_url":"git@github.com:capistrano/capistrano.git","description":"Remote multi-server automation tool","open_issues":31},{"watchers":8,"pushed_at":"2010-05-28T07:23:06Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2011-10-03T23:45:58Z","forks":0,"fork":false,"svn_url":"https://github.com/moriyoshi/boost.perl","language":"C++","private":false,"git_url":"git://github.com/moriyoshi/boost.perl.git","size":512,"has_wiki":true,"url":"https://api.github.com/repos/moriyoshi/boost.perl","html_url":"https://github.com/moriyoshi/boost.perl","created_at":"2009-03-30T21:09:12Z","owner":{"gravatar_id":"0bafbcfcfb548a4ac20406692858f68b","login":"moriyoshi","avatar_url":"https://secure.gravatar.com/avatar/0bafbcfcfb548a4ac20406692858f68b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/moriyoshi","id":18755},"name":"boost.perl","clone_url":"https://github.com/moriyoshi/boost.perl.git","id":163431,"ssh_url":"git@github.com:moriyoshi/boost.perl.git","description":"Still a proof of concept...","open_issues":0},{"watchers":553,"pushed_at":"2011-10-15T13:24:35Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-02T13:09:34Z","forks":56,"fork":false,"svn_url":"https://github.com/apenwarr/git-subtree","language":"Shell","private":false,"git_url":"git://github.com/apenwarr/git-subtree.git","size":144,"has_wiki":false,"url":"https://api.github.com/repos/apenwarr/git-subtree","html_url":"https://github.com/apenwarr/git-subtree","created_at":"2009-04-25T04:10:31Z","owner":{"gravatar_id":"918b627daf7d848cd40770ed6cd15233","login":"apenwarr","avatar_url":"https://secure.gravatar.com/avatar/918b627daf7d848cd40770ed6cd15233?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/apenwarr","id":20592},"name":"git-subtree","clone_url":"https://github.com/apenwarr/git-subtree.git","id":185096,"ssh_url":"git@github.com:apenwarr/git-subtree.git","description":"An experimental alternative to the git-submodule command. Merges and splits subtrees from your project into subprojects and back.","open_issues":7},{"watchers":140,"pushed_at":"2012-01-11T03:19:07Z","mirror_url":null,"homepage":"http://offbytwo.github.com/git-hg","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-16T11:52:23Z","forks":22,"fork":false,"svn_url":"https://github.com/cosmin/git-hg","language":"Shell","private":false,"git_url":"git://github.com/cosmin/git-hg.git","size":192,"has_wiki":true,"url":"https://api.github.com/repos/cosmin/git-hg","html_url":"https://github.com/cosmin/git-hg","created_at":"2009-05-14T20:23:01Z","owner":{"gravatar_id":"a8d35490b4016275e5bc3cc6cce8f878","login":"cosmin","avatar_url":"https://secure.gravatar.com/avatar/a8d35490b4016275e5bc3cc6cce8f878?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/cosmin","id":1358},"name":"git-hg","clone_url":"https://github.com/cosmin/git-hg.git","id":201230,"ssh_url":"git@github.com:cosmin/git-hg.git","description":"A git-hg utility for checking out and tracking a mercurial repo.","open_issues":0},{"watchers":7733,"pushed_at":"2012-03-03T04:24:13Z","mirror_url":null,"homepage":"http://mxcl.github.com/homebrew","has_downloads":false,"has_issues":true,"master_branch":"master","updated_at":"2012-03-03T09:45:01Z","forks":3583,"fork":false,"svn_url":"https://github.com/mxcl/homebrew","language":"Ruby","private":false,"git_url":"git://github.com/mxcl/homebrew.git","size":21820,"has_wiki":true,"url":"https://api.github.com/repos/mxcl/homebrew","html_url":"https://github.com/mxcl/homebrew","created_at":"2009-05-20T19:38:37Z","owner":{"gravatar_id":"25ff3dfe48d3847ecf9971aab99589fb","login":"mxcl","avatar_url":"https://secure.gravatar.com/avatar/25ff3dfe48d3847ecf9971aab99589fb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/mxcl","id":58962},"name":"homebrew","clone_url":"https://github.com/mxcl/homebrew.git","id":206084,"ssh_url":"git@github.com:mxcl/homebrew.git","description":"The missing package manager for OS X.","open_issues":519},{"watchers":4,"pushed_at":"2010-11-25T02:39:53Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2011-10-12T04:36:53Z","forks":1,"fork":false,"svn_url":"https://github.com/jamis/celtic_knot","language":"Ruby","private":false,"git_url":"git://github.com/jamis/celtic_knot.git","size":1272,"has_wiki":true,"url":"https://api.github.com/repos/jamis/celtic_knot","html_url":"https://github.com/jamis/celtic_knot","created_at":"2009-05-24T23:23:10Z","owner":{"gravatar_id":"992fe8c19bbbc27f2b562a9f96efc03d","login":"jamis","avatar_url":"https://secure.gravatar.com/avatar/992fe8c19bbbc27f2b562a9f96efc03d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jamis","id":1627},"name":"celtic_knot","clone_url":"https://github.com/jamis/celtic_knot.git","id":209230,"ssh_url":"git@github.com:jamis/celtic_knot.git","description":"A library for generating Celtic Knotwork designs from graphs","open_issues":0},{"watchers":46,"pushed_at":"2011-10-28T11:27:34Z","mirror_url":null,"homepage":"http://krondo.com/blog/?page_id=1327","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-02T10:37:30Z","forks":7,"fork":false,"svn_url":"https://github.com/jdavisp3/twisted-intro","language":"Python","private":false,"git_url":"git://github.com/jdavisp3/twisted-intro.git","size":188,"has_wiki":true,"url":"https://api.github.com/repos/jdavisp3/twisted-intro","html_url":"https://github.com/jdavisp3/twisted-intro","created_at":"2009-08-09T17:54:00Z","owner":{"gravatar_id":"fcc237fd34a8e504f7224df0c58cc0b3","login":"jdavisp3","avatar_url":"https://secure.gravatar.com/avatar/fcc237fd34a8e504f7224df0c58cc0b3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jdavisp3","id":43582},"name":"twisted-intro","clone_url":"https://github.com/jdavisp3/twisted-intro.git","id":273325,"ssh_url":"git@github.com:jdavisp3/twisted-intro.git","description":"Source files used for an introduction to Twisted","open_issues":0},{"watchers":638,"pushed_at":"2012-02-13T17:39:33Z","mirror_url":null,"homepage":"","has_downloads":false,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T00:46:31Z","forks":181,"fork":false,"svn_url":"https://github.com/github/markup","language":"Ruby","private":false,"git_url":"git://github.com/github/markup.git","size":348,"has_wiki":false,"url":"https://api.github.com/repos/github/markup","html_url":"https://github.com/github/markup","created_at":"2009-10-31T01:02:46Z","owner":{"gravatar_id":"61024896f291303615bcd4f7a0dcfb74","login":"github","avatar_url":"https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/github","id":9919},"name":"markup","clone_url":"https://github.com/github/markup.git","id":355893,"ssh_url":"git@github.com:github/markup.git","description":"The code we use to render README.your_favorite_markup","open_issues":74},{"watchers":998,"pushed_at":"2012-03-02T13:32:29Z","mirror_url":null,"homepage":"http://defunkt.io/hub/","has_downloads":false,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T05:46:14Z","forks":75,"fork":false,"svn_url":"https://github.com/defunkt/hub","language":"Ruby","private":false,"git_url":"git://github.com/defunkt/hub.git","size":232,"has_wiki":false,"url":"https://api.github.com/repos/defunkt/hub","html_url":"https://github.com/defunkt/hub","created_at":"2009-12-05T22:15:25Z","owner":{"gravatar_id":"b8dbb1987e8e5318584865f880036796","login":"defunkt","avatar_url":"https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/defunkt","id":2},"name":"hub","clone_url":"https://github.com/defunkt/hub.git","id":401025,"ssh_url":"git@github.com:defunkt/hub.git","description":"hub introduces git to GitHub","open_issues":5},{"watchers":3502,"pushed_at":"2012-02-14T13:11:04Z","mirror_url":null,"homepage":"http://nvie.com/posts/a-successful-git-branching-model/","has_downloads":true,"has_issues":true,"master_branch":"develop","updated_at":"2012-03-03T09:06:32Z","forks":266,"fork":false,"svn_url":"https://github.com/nvie/gitflow","language":"Shell","private":false,"git_url":"git://github.com/nvie/gitflow.git","size":4602,"has_wiki":true,"url":"https://api.github.com/repos/nvie/gitflow","html_url":"https://github.com/nvie/gitflow","created_at":"2010-01-20T23:14:12Z","owner":{"gravatar_id":"c5a7f21b46df698f3db31c37ed0cf55a","login":"nvie","avatar_url":"https://secure.gravatar.com/avatar/c5a7f21b46df698f3db31c37ed0cf55a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/nvie","id":83844},"name":"gitflow","clone_url":"https://github.com/nvie/gitflow.git","id":481366,"ssh_url":"git@github.com:nvie/gitflow.git","description":"Git extensions to provide high-level repository operations for Vincent Driessen's branching model.","open_issues":78},{"watchers":1160,"pushed_at":"2011-10-18T00:40:07Z","mirror_url":null,"homepage":"http://twitter.com","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T21:58:36Z","forks":42,"fork":false,"svn_url":"https://github.com/lg/murder","language":"Python","private":false,"git_url":"git://github.com/lg/murder.git","size":1228,"has_wiki":true,"url":"https://api.github.com/repos/lg/murder","html_url":"https://github.com/lg/murder","created_at":"2010-01-21T07:05:36Z","owner":{"gravatar_id":"f2583cecbd75c5999bf65d9eeb6a84f2","login":"lg","avatar_url":"https://secure.gravatar.com/avatar/f2583cecbd75c5999bf65d9eeb6a84f2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/lg","id":181018},"name":"murder","clone_url":"https://github.com/lg/murder.git","id":481811,"ssh_url":"git@github.com:lg/murder.git","description":"Large scale server deploys using BitTorrent and the BitTornado library","open_issues":7},{"watchers":155,"pushed_at":"2012-03-01T20:12:25Z","mirror_url":null,"homepage":"https://market.android.com/details?id=com.madgag.agit","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T20:12:28Z","forks":27,"fork":false,"svn_url":"https://github.com/rtyley/agit","language":"Java","private":false,"git_url":"git://github.com/rtyley/agit.git","size":184,"has_wiki":true,"url":"https://api.github.com/repos/rtyley/agit","html_url":"https://github.com/rtyley/agit","created_at":"2010-08-29T21:45:54Z","owner":{"gravatar_id":"1cdc781dd667a5d4b61340591bf1bef4","login":"rtyley","avatar_url":"https://secure.gravatar.com/avatar/1cdc781dd667a5d4b61340591bf1bef4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/rtyley","id":52038},"name":"agit","clone_url":"https://github.com/rtyley/agit.git","id":870849,"ssh_url":"git@github.com:rtyley/agit.git","description":"Agit - Git client for Android","open_issues":36},{"watchers":146,"pushed_at":"2011-10-28T07:11:56Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-02T03:06:25Z","forks":18,"fork":false,"svn_url":"https://github.com/schacon/git-pulls","language":"Ruby","private":false,"git_url":"git://github.com/schacon/git-pulls.git","size":1004,"has_wiki":true,"url":"https://api.github.com/repos/schacon/git-pulls","html_url":"https://github.com/schacon/git-pulls","created_at":"2010-12-27T20:39:24Z","owner":{"gravatar_id":"9375a9529679f1b42b567a640d775e7d","login":"schacon","avatar_url":"https://secure.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/schacon","id":70},"name":"git-pulls","clone_url":"https://github.com/schacon/git-pulls.git","id":1201343,"ssh_url":"git@github.com:schacon/git-pulls.git","description":"command line tool to facilitate github pull requests","open_issues":10},{"watchers":3,"pushed_at":"2011-04-01T11:33:23Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2011-11-03T17:46:24Z","forks":1,"fork":false,"svn_url":"https://github.com/emesik/django_mathlatex","language":"Python","private":false,"git_url":"git://github.com/emesik/django_mathlatex.git","size":448,"has_wiki":true,"url":"https://api.github.com/repos/emesik/django_mathlatex","html_url":"https://github.com/emesik/django_mathlatex","created_at":"2011-03-06T22:29:04Z","owner":{"gravatar_id":"0d0c6eda804f912d230df91577e29180","login":"emesik","avatar_url":"https://secure.gravatar.com/avatar/0d0c6eda804f912d230df91577e29180?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/emesik","id":407107},"name":"django_mathlatex","clone_url":"https://github.com/emesik/django_mathlatex.git","id":1447846,"ssh_url":"git@github.com:emesik/django_mathlatex.git","description":"Django template tag for rendering math formulas","open_issues":0},{"watchers":409,"pushed_at":"2012-02-08T00:38:52Z","mirror_url":null,"homepage":"http://scrumblr.ca","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-02T16:34:32Z","forks":37,"fork":false,"svn_url":"https://github.com/aliasaria/scrumblr","language":"JavaScript","private":false,"git_url":"git://github.com/aliasaria/scrumblr.git","size":132,"has_wiki":true,"url":"https://api.github.com/repos/aliasaria/scrumblr","html_url":"https://github.com/aliasaria/scrumblr","created_at":"2011-03-10T02:29:38Z","owner":{"gravatar_id":"a08f4e2d6ccccab586b502992c31e2ce","login":"aliasaria","avatar_url":"https://secure.gravatar.com/avatar/a08f4e2d6ccccab586b502992c31e2ce?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/aliasaria","id":213343},"name":"scrumblr","clone_url":"https://github.com/aliasaria/scrumblr.git","id":1461917,"ssh_url":"git@github.com:aliasaria/scrumblr.git","description":"Collaborative Online Scrum Tool Using Websockets, Node.js, jQuery, and CSS3","open_issues":11},{"watchers":178,"pushed_at":"2012-02-29T21:46:32Z","mirror_url":null,"homepage":"http://developer.github.com","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-02T02:15:14Z","forks":77,"fork":false,"svn_url":"https://github.com/github/developer.github.com","language":"Ruby","private":false,"git_url":"git://github.com/github/developer.github.com.git","size":184,"has_wiki":true,"url":"https://api.github.com/repos/github/developer.github.com","html_url":"https://github.com/github/developer.github.com","created_at":"2011-04-26T19:20:56Z","owner":{"gravatar_id":"61024896f291303615bcd4f7a0dcfb74","login":"github","avatar_url":"https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/github","id":9919},"name":"developer.github.com","clone_url":"https://github.com/github/developer.github.com.git","id":1666784,"ssh_url":"git@github.com:github/developer.github.com.git","description":"GitHub API documentation","open_issues":33},{"watchers":19,"pushed_at":"2011-11-22T18:10:52Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-27T21:59:32Z","forks":11,"fork":false,"svn_url":"https://github.com/ChristopherMacGown/python-github3","language":"Python","private":false,"git_url":"git://github.com/ChristopherMacGown/python-github3.git","size":236,"has_wiki":true,"url":"https://api.github.com/repos/ChristopherMacGown/python-github3","html_url":"https://github.com/ChristopherMacGown/python-github3","created_at":"2011-04-28T17:07:29Z","owner":{"gravatar_id":"4174216c1dc0f223ce608d5a3b66a585","login":"ChristopherMacGown","avatar_url":"https://secure.gravatar.com/avatar/4174216c1dc0f223ce608d5a3b66a585?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/ChristopherMacGown","id":43081},"name":"python-github3","clone_url":"https://github.com/ChristopherMacGown/python-github3.git","id":1676748,"ssh_url":"git@github.com:ChristopherMacGown/python-github3.git","description":"Github API v3 library for Python.","open_issues":0},{"watchers":5,"pushed_at":"2012-02-02T09:38:42Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-06T15:26:40Z","forks":2,"fork":false,"svn_url":"https://github.com/pjkersten/PlantUML","language":"PHP","private":false,"git_url":"git://github.com/pjkersten/PlantUML.git","size":124,"has_wiki":true,"url":"https://api.github.com/repos/pjkersten/PlantUML","html_url":"https://github.com/pjkersten/PlantUML","created_at":"2011-05-06T09:33:38Z","owner":{"gravatar_id":"6e33170f0701d1d1d8dd57c8f95368ef","login":"pjkersten","avatar_url":"https://secure.gravatar.com/avatar/6e33170f0701d1d1d8dd57c8f95368ef?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/pjkersten","id":771883},"name":"PlantUML","clone_url":"https://github.com/pjkersten/PlantUML.git","id":1710505,"ssh_url":"git@github.com:pjkersten/PlantUML.git","description":"PlantUML plugin for MediaWiki","open_issues":0},{"watchers":22074,"pushed_at":"2012-02-28T16:53:11Z","mirror_url":null,"homepage":"http://twitter.github.com/bootstrap","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T10:23:36Z","forks":4124,"fork":false,"svn_url":"https://github.com/twitter/bootstrap","language":"JavaScript","private":false,"git_url":"git://github.com/twitter/bootstrap.git","size":2160,"has_wiki":true,"url":"https://api.github.com/repos/twitter/bootstrap","html_url":"https://github.com/twitter/bootstrap","created_at":"2011-07-29T21:19:00Z","owner":{"gravatar_id":"74e977ae0a10f06057a119eef30c6660","login":"twitter","avatar_url":"https://secure.gravatar.com/avatar/74e977ae0a10f06057a119eef30c6660?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/twitter","id":50278},"name":"bootstrap","clone_url":"https://github.com/twitter/bootstrap.git","id":2126244,"ssh_url":"git@github.com:twitter/bootstrap.git","description":"HTML, CSS, and JS toolkit from Twitter","open_issues":195},{"watchers":6,"pushed_at":"2012-02-29T16:41:02Z","mirror_url":null,"homepage":"http://www.acmesystems.it","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-29T16:41:02Z","forks":3,"fork":false,"svn_url":"https://github.com/AcmeSystems/playground","language":"Python","private":false,"git_url":"git://github.com/AcmeSystems/playground.git","size":176,"has_wiki":true,"url":"https://api.github.com/repos/AcmeSystems/playground","html_url":"https://github.com/AcmeSystems/playground","created_at":"2011-10-17T16:16:10Z","owner":{"gravatar_id":"af55714b265c4914c8bb8db49fc06da6","login":"AcmeSystems","avatar_url":"https://secure.gravatar.com/avatar/af55714b265c4914c8bb8db49fc06da6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/AcmeSystems","id":783524},"name":"playground","clone_url":"https://github.com/AcmeSystems/playground.git","id":2593052,"ssh_url":"git@github.com:AcmeSystems/playground.git","description":"Small programming examples for the FOX Board G20","open_issues":0},{"watchers":382,"pushed_at":"2011-11-07T14:55:19Z","mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-28T21:38:00Z","forks":38,"fork":false,"svn_url":"https://github.com/juuso/BozoCrack","language":"Ruby","private":false,"git_url":"git://github.com/juuso/BozoCrack.git","size":140,"has_wiki":true,"url":"https://api.github.com/repos/juuso/BozoCrack","html_url":"https://github.com/juuso/BozoCrack","created_at":"2011-11-07T13:02:08Z","owner":{"gravatar_id":"d3231546d42d67974fc51956a3b627f4","login":"juuso","avatar_url":"https://secure.gravatar.com/avatar/d3231546d42d67974fc51956a3b627f4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/juuso","id":614446},"name":"BozoCrack","clone_url":"https://github.com/juuso/BozoCrack.git","id":2726128,"ssh_url":"git@github.com:juuso/BozoCrack.git","description":"A silly & effective MD5 cracker in Ruby","open_issues":8},{"watchers":3,"pushed_at":"2012-03-02T16:54:40Z","mirror_url":null,"homepage":"http://www.acmesystems.it","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-02T16:54:40Z","forks":2,"fork":false,"svn_url":"https://github.com/AcmeSystems/acme-public-website","language":"JavaScript","private":false,"git_url":"git://github.com/AcmeSystems/acme-public-website.git","size":324,"has_wiki":true,"url":"https://api.github.com/repos/AcmeSystems/acme-public-website","html_url":"https://github.com/AcmeSystems/acme-public-website","created_at":"2011-11-22T17:10:15Z","owner":{"gravatar_id":"af55714b265c4914c8bb8db49fc06da6","login":"AcmeSystems","avatar_url":"https://secure.gravatar.com/avatar/af55714b265c4914c8bb8db49fc06da6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/AcmeSystems","id":783524},"name":"acme-public-website","clone_url":"https://github.com/AcmeSystems/acme-public-website.git","id":2829366,"ssh_url":"git@github.com:AcmeSystems/acme-public-website.git","description":"Public pages on Acme Systems website","open_issues":0},{"watchers":2,"pushed_at":null,"mirror_url":null,"homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-16T21:51:15Z","forks":1,"fork":false,"svn_url":"https://github.com/BeaverSoftware/FatherBeaver","language":null,"private":false,"git_url":"git://github.com/BeaverSoftware/FatherBeaver.git","size":0,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","html_url":"https://github.com/BeaverSoftware/FatherBeaver","created_at":"2012-02-09T19:32:21Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"FatherBeaver","clone_url":"https://github.com/BeaverSoftware/FatherBeaver.git","id":3400397,"ssh_url":"git@github.com:BeaverSoftware/FatherBeaver.git","description":"","open_issues":0},{"watchers":6,"pushed_at":"2012-03-02T16:59:19Z","mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-02T16:59:19Z","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/PyGithub","language":"Python","private":false,"git_url":"git://github.com/jacquev6/PyGithub.git","size":528,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/PyGithub","html_url":"https://github.com/jacquev6/PyGithub","created_at":"2012-02-25T12:53:47Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"PyGithub","clone_url":"https://github.com/jacquev6/PyGithub.git","id":3544490,"ssh_url":"git@github.com:jacquev6/PyGithub.git","description":"Python library (soon) implementing the full Github API v3","open_issues":1},{"watchers":1,"pushed_at":null,"mirror_url":null,"homepage":null,"has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T20:59:31Z","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub1","language":null,"private":false,"git_url":"git://github.com/jacquev6/TestPyGithub1.git","size":0,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/TestPyGithub1","html_url":"https://github.com/jacquev6/TestPyGithub1","created_at":"2012-03-01T20:59:31Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub1","clone_url":"https://github.com/jacquev6/TestPyGithub1.git","id":3596037,"ssh_url":"git@github.com:jacquev6/TestPyGithub1.git","description":"Created by PyGithub","open_issues":0}] - -GET /users/jacquev6/orgs {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4974'), ('content-length', '262'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2db82f5317522d1fdd2438aa52917b14"'), ('date', 'Sat, 03 Mar 2012 10:24:10 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"login":"BeaverSoftware","url":"https://api.github.com/orgs/BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","id":1424031}] - -GET /users/jacquev6/gists {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4973'), ('content-length', '4412'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"49bb72ae665cace2cb3053d65659eeca"'), ('date', 'Sat, 03 Mar 2012 10:24:11 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"git_push_url":"git@gist.github.com:1942384.git","files":{"fail_github.py":{"type":"application/python","raw_url":"https://gist.github.com/raw/1942384/2fb3aa84e0efa50dc0f4c18b5df5b7b9ab27076b/fail_github.py","language":"Python","size":1636,"filename":"fail_github.py"}},"html_url":"https://gist.github.com/1942384","public":true,"comments":0,"updated_at":"2012-02-29T16:47:12Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1942384","created_at":"2012-02-29T16:47:12Z","git_pull_url":"git://gist.github.com/1942384.git","id":"1942384","description":"How to error 500 Github API v3, as requested by Rick (GitHub Staff)"},{"git_push_url":"git@gist.github.com:1934829.git","files":{"foobar.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1934829/8280e83babee711584cd2efd5dcf1308c881ee11/foobar.txt","language":"Text","size":24,"filename":"foobar.txt"}},"html_url":"https://gist.github.com/1934829","public":true,"comments":1,"updated_at":"2012-02-28T20:12:22Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1934829","created_at":"2012-02-28T20:12:21Z","git_pull_url":"git://gist.github.com/1934829.git","id":"1934829","description":"Gist edited by PyGithub"},{"git_push_url":"git@gist.github.com:1934774.git","files":{"foobar.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1934774/8280e83babee711584cd2efd5dcf1308c881ee11/foobar.txt","language":"Text","size":24,"filename":"foobar.txt"}},"html_url":"https://gist.github.com/1934774","public":true,"comments":1,"updated_at":"2012-02-28T20:05:20Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1934774","created_at":"2012-02-28T20:05:19Z","git_pull_url":"git://gist.github.com/1934774.git","id":"1934774","description":"Gist edited by PyGithub"},{"git_push_url":"git@gist.github.com:1934758.git","files":{"foobar.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/1934758/8280e83babee711584cd2efd5dcf1308c881ee11/foobar.txt","language":"Text","size":24,"filename":"foobar.txt"}},"html_url":"https://gist.github.com/1934758","public":true,"comments":1,"updated_at":"2012-02-28T20:02:27Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/1934758","created_at":"2012-02-28T20:02:25Z","git_pull_url":"git://gist.github.com/1934758.git","id":"1934758","description":"Gist edited by PyGithub"},{"git_push_url":"git@gist.github.com:dcb7de17e8a52b74541d.git","files":{"cadfael.txt":{"type":"text/plain","raw_url":"https://gist.github.com/raw/dcb7de17e8a52b74541d/48ca696645682d7430d73180814434e0284796b2/cadfael.txt","language":"Text","size":585,"filename":"cadfael.txt"}},"html_url":"https://gist.github.com/dcb7de17e8a52b74541d","public":false,"comments":1,"updated_at":"2012-02-28T19:44:42Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"url":"https://api.github.com/gists/dcb7de17e8a52b74541d","created_at":"2012-02-28T19:44:42Z","git_pull_url":"git://gist.github.com/dcb7de17e8a52b74541d.git","id":"dcb7de17e8a52b74541d","description":"Cadfael: order of episodes in French DVD edition"}] - diff --git a/test/ReplayDataForIntegrationTest/OrganizationDetails.txt b/test/ReplayDataForIntegrationTest/OrganizationDetails.txt deleted file mode 100644 index d37e8657..00000000 --- a/test/ReplayDataForIntegrationTest/OrganizationDetails.txt +++ /dev/null @@ -1,5 +0,0 @@ -GET /orgs/github {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4999'), ('content-length', '528'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a2b2dfa7810b511d0a7e25aef5ef8094"'), ('date', 'Sun, 04 Mar 2012 08:16:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"type":"Organization","following":0,"html_url":"https://github.com/github","login":"github","public_gists":0,"blog":"https://github.com/about","location":"San Francisco, CA","company":null,"avatar_url":"https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/orgs/github","created_at":"2008-05-11T04:37:31Z","name":"GitHub","email":"support@github.com","id":9919,"public_repos":47,"followers":642} - diff --git a/test/ReplayDataForIntegrationTest/PullRequest.txt b/test/ReplayDataForIntegrationTest/PullRequest.txt deleted file mode 100644 index a0d497fb..00000000 --- a/test/ReplayDataForIntegrationTest/PullRequest.txt +++ /dev/null @@ -1,105 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4868'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"07cfcba056efb798c1d5a9c83313c15b"'), ('date', 'Sun, 04 Mar 2012 09:06:08 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17432,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"html_url":"https://github.com/jacquev6","bio":"","login":"jacquev6","public_gists":1,"blog":"http://vincent-jacques.net","total_private_repos":5,"private_gists":2,"collaborators":0,"owned_private_repos":5,"plan":{"collaborators":1,"name":"micro","private_repos":5,"space":614400},"location":"Paris, France","company":"Criteo","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","id":327146,"public_repos":16,"followers":12,"hireable":false} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4867'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"acf760c0d42e91a0718cac0dd586460f"'), ('date', 'Sun, 04 Mar 2012 09:06:09 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","git_url":"git://github.com/jacquev6/TestPyGithub.git","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /repos/jacquev6/TestPyGithub/pulls {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4864'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:06:11 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/pulls {} {"body": "", "head": "BeaverSoftware:master", "base": "master", "title": "Pull request created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4863'), ('content-length', '4346'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"12382f16018558b193669fa2f4d5b048"'), ('date', 'Sun, 04 Mar 2012 09:06:12 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24')] -{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","mergeable":null,"comments":0,"deletions":0,"updated_at":"2012-03-04T09:06:12Z","state":"open","merged_by":null,"closed_at":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"base":{"ref":"master","sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","label":"jacquev6:master","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"repo":{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":2,"updated_at":"2012-03-03T07:53:19Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","size":84,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","created_at":"2012-03-03T07:41:19Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","open_issues":16,"id":3609314,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T07:43:16Z"}},"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"}},"title":"Pull request created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","merged":false,"review_comments":0,"commits":5,"additions":1,"created_at":"2012-03-04T09:06:12Z","changed_files":1,"merged_at":null,"number":24,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch","id":924865,"head":{"ref":"master","sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","label":"BeaverSoftware:master","user":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"repo":{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"master_branch":null,"forks":0,"updated_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","fork":true,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","size":112,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","created_at":"2012-03-03T07:53:19Z","owner":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"name":"TestPyGithub","open_issues":0,"id":3609352,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T08:57:40Z"}},"body":""} - -GET /repos/jacquev6/TestPyGithub/pulls {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4862'), ('content-length', '1182'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"2682d1a0a3c51e4c751b1476ca7ebacc"'), ('date', 'Sun, 04 Mar 2012 09:06:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","updated_at":"2012-03-04T09:06:12Z","state":"open","closed_at":null,"user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"}},"title":"Pull request created by PyGithub","html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","created_at":"2012-03-04T09:06:12Z","merged_at":null,"number":24,"patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch","id":924865,"body":""}] - -PATCH /repos/jacquev6/TestPyGithub/pulls/24 {} {"state": "closed"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4861'), ('content-length', '4366'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1fb07e84374261ac72f9ff7601a3d6ef"'), ('date', 'Sun, 04 Mar 2012 09:06:13 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"changed_files":1,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/24","comments":0,"updated_at":"2012-03-04T09:06:13Z","state":"closed","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/24.diff","mergeable":true,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"merged_by":null,"base":{"ref":"master","repo":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"mirror_url":null,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":17},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","label":"jacquev6:master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146}},"closed_at":"2012-03-04T09:06:13Z","title":"Pull request created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24","merged":false,"commits":5,"additions":1,"created_at":"2012-03-04T09:06:12Z","html_url":"https://github.com/jacquev6/TestPyGithub/pull/24","review_comments":0,"number":24,"id":924865,"deletions":0,"head":{"ref":"master","repo":{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"mirror_url":null,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","html_url":"https://github.com/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","label":"BeaverSoftware:master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031}},"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/24"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/24/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/24/comments"}},"merged_at":null,"body":"","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/24.patch"} - -GET /repos/jacquev6/TestPyGithub/pulls {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4860'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:06:14 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/pulls {} {"body": "", "head": "BeaverSoftware:master", "base": "master", "title": "Pull request also created by PyGithub"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4859'), ('content-length', '4351'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3e33da71f8d3cc789e4a9c28338189ef"'), ('date', 'Sun, 04 Mar 2012 09:06:15 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25')] -{"changed_files":1,"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch","comments":0,"updated_at":"2012-03-04T09:06:15Z","state":"open","mergeable":null,"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"merged_by":null,"base":{"ref":"master","repo":{"git_url":"git://github.com/jacquev6/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T07:43:16Z","mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","label":"jacquev6:master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146}},"closed_at":null,"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","merged":false,"commits":5,"additions":1,"created_at":"2012-03-04T09:06:15Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","review_comments":0,"number":25,"id":924866,"deletions":0,"head":{"ref":"master","repo":{"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","watchers":1,"pushed_at":"2012-03-03T08:57:40Z","mirror_url":null,"homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","html_url":"https://github.com/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","label":"BeaverSoftware:master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031}},"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"merged_at":null,"body":""} - -GET /repos/jacquev6/TestPyGithub/pulls {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4858'), ('content-length', '1187'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"dda03e3980cc2391569f77b0fcd04b09"'), ('date', 'Sun, 04 Mar 2012 09:06:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","updated_at":"2012-03-04T09:06:15Z","state":"open","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"closed_at":null,"title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","created_at":"2012-03-04T09:06:15Z","html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","number":25,"id":924866,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"merged_at":null,"body":"","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch"}] - -GET /repos/jacquev6/TestPyGithub/pulls/25/files {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4857'), ('content-length', '434'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"9745c05bc9926826dde32e4daff86851"'), ('date', 'Sun, 04 Mar 2012 09:06:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"status":"added","changes":1,"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","blob_url":"https://github.com/jacquev6/TestPyGithub/blob/390bcc2b855d419e9fd6727049aa9217db56a06a/foo.bar","filename":"foo.bar","raw_url":"https://github.com/jacquev6/TestPyGithub/raw/390bcc2b855d419e9fd6727049aa9217db56a06a/foo.bar","additions":1,"patch":"@@ -0,0 +1 @@\n+This blob was created by PyGithub\n\\ No newline at end of file","deletions":0}] - -GET /repos/jacquev6/TestPyGithub/pulls/25/commits {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4856'), ('content-length', '7726'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e0dc80cf847c4ed4e1c7009b338bce12"'), ('date', 'Sun, 04 Mar 2012 09:06:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"commit":{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:11:11-08:00"},"tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/commits/e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:11:11-08:00"}},"author":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"parents":[{"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea"}],"sha":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","committer":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031}},{"commit":{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:11:53-08:00"},"tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:11:53-08:00"}},"author":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"parents":[{"sha":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/e4e84560cb5e87f3c0e9f710dae1ddab0eef487b"}],"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f","committer":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031}},{"commit":{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:42:54-08:00"},"tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:42:54-08:00"}},"author":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"parents":[{"sha":"2f51005d80353b3b82cc23908ea4fc7a91230e2f","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/2f51005d80353b3b82cc23908ea4fc7a91230e2f"}],"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271","committer":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031}},{"commit":{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:52:03-08:00"},"tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:52:03-08:00"}},"author":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"parents":[{"sha":"998f4cd5ba9501a7ccff79b0011f4220f16b0271","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/998f4cd5ba9501a7ccff79b0011f4220f16b0271"}],"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974","committer":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031}},{"commit":{"message":"This commit was created by PyGithub","author":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:38-08:00"},"tree":{"sha":"e40d3575e68128e127e7805b7b30452da0600b85","url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/trees/e40d3575e68128e127e7805b7b30452da0600b85"},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/git/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","committer":{"email":"BeaverSoftware@vincent-jacques.net","name":"BeaverSoftware","date":"2012-03-03T00:57:38-08:00"}},"author":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"parents":[{"sha":"1c29d761d3e929afcbf8c6cc44b8181068d2d974","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/1c29d761d3e929afcbf8c6cc44b8181068d2d974"}],"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","url":"https://api.github.com/repos/jacquev6/TestPyGithub/commits/390bcc2b855d419e9fd6727049aa9217db56a06a","committer":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031}}] - -GET /repos/jacquev6/TestPyGithub/pulls/25/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4855'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:06:18 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/pulls/25/comments {} {"body": "Comment created by PyGithub", "commit_id": "e4e84560cb5e87f3c0e9f710dae1ddab0eef487b", "position": 1, "path": "foo.bar"} -201 -[('status', '201 Created'), ('x-ratelimit-remaining', '4854'), ('content-length', '592'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"24acd25062ffca4275724bd9e0187fa6"'), ('date', 'Sun, 04 Mar 2012 09:06:19 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515')] -{"updated_at":"2012-03-04T09:06:19Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"},"commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","created_at":"2012-03-04T09:06:19Z","position":1,"path":"foo.bar","id":515515,"body":"Comment created by PyGithub"} - -GET /repos/jacquev6/TestPyGithub/pulls/25/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4853'), ('content-length', '594'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"8597e81450740b2a2f8b3a3711a01285"'), ('date', 'Sun, 04 Mar 2012 09:06:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-04T09:06:19Z","user":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","created_at":"2012-03-04T09:06:19Z","position":1,"path":"foo.bar","id":515515,"commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","body":"Comment created by PyGithub"}] - -PATCH /repos/jacquev6/TestPyGithub/pulls/comments/515515 {} {"body": "Comment edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4852'), ('content-length', '591'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"11b953330ccb8941fad29c3e2985096b"'), ('date', 'Sun, 04 Mar 2012 09:06:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"updated_at":"2012-03-04T09:06:20Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"},"commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","created_at":"2012-03-04T09:06:19Z","position":1,"path":"foo.bar","id":515515,"body":"Comment edited by PyGithub"} - -GET /repos/jacquev6/TestPyGithub/pulls/25/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4851'), ('content-length', '593'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"415d3a6dfb2af4e871f8a426c1c4becf"'), ('date', 'Sun, 04 Mar 2012 09:06:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-04T09:06:20Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","created_at":"2012-03-04T09:06:19Z","position":1,"path":"foo.bar","id":515515,"body":"Comment edited by PyGithub"}] - -GET /repos/jacquev6/TestPyGithub/pulls/comments/515515 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4850'), ('content-length', '591'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"11b953330ccb8941fad29c3e2985096b"'), ('date', 'Sun, 04 Mar 2012 09:06:21 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"updated_at":"2012-03-04T09:06:20Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"},"commit_id":"e4e84560cb5e87f3c0e9f710dae1ddab0eef487b","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/comments/515515","created_at":"2012-03-04T09:06:19Z","position":1,"path":"foo.bar","id":515515,"body":"Comment edited by PyGithub"} - -DELETE /repos/jacquev6/TestPyGithub/pulls/comments/515515 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4849'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:06:22 GMT')] - - -GET /repos/jacquev6/TestPyGithub/pulls/25/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4848'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:06:22 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -PATCH /repos/jacquev6/TestPyGithub/pulls/25 {} {"state": "closed"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4847'), ('content-length', '4371'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"31ed10e8810e6b4caec939c05fbdd241"'), ('date', 'Sun, 04 Mar 2012 09:06:23 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"issue_url":"https://github.com/jacquev6/TestPyGithub/issues/25","comments":0,"updated_at":"2012-03-04T09:06:23Z","state":"closed","mergeable":true,"_links":{"html":{"href":"https://github.com/jacquev6/TestPyGithub/pull/25"},"comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/issues/25/comments"},"self":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25"},"review_comments":{"href":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25/comments"}},"user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"merged_by":null,"base":{"ref":"master","repo":{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","mirror_url":null,"language":null,"private":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":17},"sha":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","label":"jacquev6:master","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146}},"closed_at":"2012-03-04T09:06:23Z","title":"Pull request also created by PyGithub","url":"https://api.github.com/repos/jacquev6/TestPyGithub/pulls/25","merged":false,"commits":5,"additions":1,"changed_files":1,"created_at":"2012-03-04T09:06:15Z","diff_url":"https://github.com/jacquev6/TestPyGithub/pull/25.diff","html_url":"https://github.com/jacquev6/TestPyGithub/pull/25","review_comments":0,"number":25,"id":924866,"deletions":0,"head":{"ref":"master","repo":{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","mirror_url":null,"language":null,"private":false,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","html_url":"https://github.com/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0},"sha":"390bcc2b855d419e9fd6727049aa9217db56a06a","label":"BeaverSoftware:master","user":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031}},"merged_at":null,"body":"","patch_url":"https://github.com/jacquev6/TestPyGithub/pull/25.patch"} - -GET /repos/jacquev6/TestPyGithub/pulls {} null -200 -[('status', '200 OK'), ('content-length', '2'), ('x-ratelimit-remaining', '4846'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:06:24 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - diff --git a/test/ReplayDataForIntegrationTest/RepositoryCompare.txt b/test/ReplayDataForIntegrationTest/RepositoryCompare.txt deleted file mode 100644 index 8d3c8098..00000000 --- a/test/ReplayDataForIntegrationTest/RepositoryCompare.txt +++ /dev/null @@ -1,15 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4989'), ('content-length', '801'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f5f8ac70cf06f9040d87ed89e07aa27c"'), ('date', 'Mon, 19 Mar 2012 18:43:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"owned_private_repos":5,"type":"User","url":"https://api.github.com/users/jacquev6","public_gists":1,"following":24,"blog":"http://vincent-jacques.net","login":"jacquev6","hireable":false,"private_gists":2,"bio":"","disk_usage":17888,"plan":{"collaborators":1,"name":"micro","private_repos":5,"space":614400},"followers":12,"location":"Paris, France","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","company":"Criteo","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","collaborators":0,"created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","total_private_repos":5,"id":327146,"public_repos":16,"html_url":"https://github.com/jacquev6"} - -GET /repos/jacquev6/PyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4988'), ('content-length', '1072'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"20e6ec1075e57dd23d1992250b2fb1a7"'), ('date', 'Mon, 19 Mar 2012 18:43:26 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"forks":1,"url":"https://api.github.com/repos/jacquev6/PyGithub","has_wiki":false,"homepage":"http://vincent-jacques.net/PyGithub","mirror_url":null,"ssh_url":"git@github.com:jacquev6/PyGithub.git","updated_at":"2012-03-19T17:48:25Z","svn_url":"https://github.com/jacquev6/PyGithub","fork":false,"open_issues":15,"git_url":"git://github.com/jacquev6/PyGithub.git","watchers":6,"language":"Python","pushed_at":"2012-03-19T17:48:25Z","private":false,"size":1000,"clone_url":"https://github.com/jacquev6/PyGithub.git","created_at":"2012-02-25T12:53:47Z","owner":{"url":"https://api.github.com/users/jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"PyGithub","has_downloads":true,"id":3544490,"html_url":"https://github.com/jacquev6/PyGithub","description":"Python library (soon) implementing the full Github API v3","has_issues":true,"master_branch":null} - -GET /repos/jacquev6/PyGithub/compare/master...develop {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4987'), ('content-length', '157277'), ('server', 'nginx/1.0.13'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"757e589de165efb8bd100976999f16c7"'), ('date', 'Mon, 19 Mar 2012 18:43:27 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"behind_by":0,"permalink_url":"https://github.com/jacquev6/PyGithub/compare/jacquev6:a3be28756101370fbc689eec3a7825c4c385a6c9...jacquev6:a0cc821c1beada4aa9ca0d5218664c5372720936","ahead_by":34,"status":"ahead","diff_url":"https://github.com/jacquev6/PyGithub/compare/master...develop.diff","base_commit":{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/3d6bd49ce229243fea4bb46a937622d0ec7d4d1c","sha":"3d6bd49ce229243fea4bb46a937622d0ec7d4d1c"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a3be28756101370fbc689eec3a7825c4c385a6c9","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-12T15:09:06-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/5c6e0289868fe3bc6bff49b0c33bd27c4dd07e2d","sha":"5c6e0289868fe3bc6bff49b0c33bd27c4dd07e2d"},"message":"Publish version 0.4","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/a3be28756101370fbc689eec3a7825c4c385a6c9","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-12T15:09:06-07:00"}},"sha":"a3be28756101370fbc689eec3a7825c4c385a6c9"},"total_commits":34,"html_url":"https://github.com/jacquev6/PyGithub/compare/master...develop","files":[{"filename":"ReferenceOfApis.md","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/ReferenceOfApis.md","deletions":12,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/ReferenceOfApis.md","additions":4,"status":"modified","patch":"@@ -55,7 +55,7 @@ API `/gists/starred`\n \n API `/issues`\n =============\n-* GET: (TODO)\n+* GET: `AuthenticatedUser.get_issues`\n \n API `/networks/:user/:repo/events`\n ==================================\n@@ -143,7 +143,7 @@ API `/repos/:user/:repo/commits/:sha/comments`\n \n API `/repos/:user/:repo/compare/:base...:head`\n ==============================================\n-* GET: (TODO)\n+* GET: `Repository.compare`\n \n API `/repos/:user/:repo/contributors`\n =====================================\n@@ -206,18 +206,10 @@ API `/repos/:user/:repo/git/trees`\n ==================================\n * POST: `Repository.create_git_tree`\n \n-API `/repos/:user/:repo/git/trees?base_tree=`\n-=============================================\n-* POST: (TODO)\n-\n API `/repos/:user/:repo/git/trees/:sha`\n =======================================\n * GET: `Repository.get_git_tree`\n \n-API `/repos/:user/:repo/git/trees/:sha?recursive=1`\n-===================================================\n-* GET: (TODO)\n-\n API `/repos/:user/:repo/hooks`\n ==============================\n * GET: `Repository.get_hooks`\n@@ -321,7 +313,7 @@ API `/repos/:user/:repo/milestones/:number/labels`\n API `/repos/:user/:repo/pulls`\n ==============================\n * GET: `Repository.get_pulls`\n-* POST: `Repository.create_pull` (TODO: alternative input)\n+* POST: `Repository.create_pull`\n \n API `/repos/:user/:repo/pulls/:id`\n ==================================\n@@ -331,7 +323,7 @@ API `/repos/:user/:repo/pulls/:id`\n API `/repos/:user/:repo/pulls/:id/comments`\n ===========================================\n * GET: `PullRequest.get_comments`\n-* POST: `PullRequest.create_comment` (TODO: alternative input)\n+* POST: `PullRequest.create_comment`\n \n API `/repos/:user/:repo/pulls/:id/commits`\n ==========================================","changes":16,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"ReferenceOfClasses.md","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/ReferenceOfClasses.md","deletions":31,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/ReferenceOfClasses.md","additions":31,"status":"modified","patch":"@@ -1,19 +1,13 @@\n You don't normaly create instances of any class but `Github`.\n You obtain instances through calls to `get_` and `create_` methods.\n \n-In this documentation:\n-\n-* `login` is a string containing a user's or organization's login\n-* `user` is an instance of `AuthenticatedUser` or `NamedUser`\n-* `name` is a string containing the name of a repository\n-* `repo` is an instance of `Repository`\n-\n Class `Github`\n ==============\n * Constructed from user's login and password\n * `get_user()`: `AuthenticatedUser`\n * `get_user( login )`: `NamedUser`\n * `get_organization( login )`: `Organization`\n+* `get_gist( id )`: `Gist`\n \n Class `AuthenticatedUser`\n =========================\n@@ -85,7 +79,7 @@ Following\n * `following`: `NamedUser`\n * `remove_from_following( following )`\n * `following`: `NamedUser`\n-* `has_in_following( following )`: `bool`\n+* `has_in_following( following )`: bool\n * `following`: `NamedUser`\n \n Orgs\n@@ -106,7 +100,7 @@ Watched\n * `watched`: `Repository`\n * `remove_from_watched( watched )`\n * `watched`: `Repository`\n-* `has_in_watched( watched )`: `bool`\n+* `has_in_watched( watched )`: bool\n * `watched`: `Repository`\n \n Forking\n@@ -119,6 +113,10 @@ Gists\n * `create_gist( public, files, [description] )`: `Gist`\n * `get_starred_gists()`: list of `Gist`\n \n+Issues\n+------\n+* `get_issues()`: list of `Issue`\n+\n Class `Authorization`\n =====================\n \n@@ -363,6 +361,7 @@ Attributes\n * `sha`\n * `url`\n * `tree`\n+* `recursive`\n \n Class `Hook`\n ============\n@@ -557,6 +556,10 @@ Following\n ---------\n * `get_following()`: list of `NamedUser`\n \n+Orgs\n+----\n+* `get_orgs()`: list of `Organization`\n+\n Events\n ------\n * `get_events()`: list of `Event`\n@@ -567,10 +570,6 @@ Received events\n * `get_received_events()`: list of `Event`\n * `get_public_received_events()`: list of `Event`\n \n-Orgs\n-----\n-* `get_orgs()`: list of `Organization`\n-\n Repos\n -----\n * `get_repos( [type] )`: list of `Repository`\n@@ -625,7 +624,7 @@ Public members\n * `public_member`: `NamedUser`\n * `remove_from_public_members( public_member )`\n * `public_member`: `NamedUser`\n-* `has_in_public_members( public_member )`: `bool`\n+* `has_in_public_members( public_member )`: bool\n * `public_member`: `NamedUser`\n \n Members\n@@ -633,13 +632,9 @@ Members\n * `get_members()`: list of `NamedUser`\n * `remove_from_members( member )`\n * `member`: `NamedUser`\n-* `has_in_members( member )`: `bool`\n+* `has_in_members( member )`: bool\n * `member`: `NamedUser`\n \n-Events\n-------\n-* `get_events()`: list of `Event`\n-\n Repos\n -----\n * `get_repos( [type] )`: list of `Repository`\n@@ -655,6 +650,10 @@ Teams\n * `get_teams()`: list of `Team`\n * `create_team( name, [repo_names, permission] )`: `Team`\n \n+Events\n+------\n+* `get_events()`: list of `Event`\n+\n Class `PullRequest`\n ===================\n \n@@ -703,7 +702,7 @@ Comments\n --------\n * `get_comments()`: list of `PullRequestComment`\n * `get_comment( id )`: `PullRequestComment`\n-* `create_comment( body, commit_id, path, position )`: `PullRequestComment`\n+* `create_comment( < body, commit_id, path, position > or < body, in_reply_to > )`: `PullRequestComment`\n * `is_merged()`: bool\n * `merge( [commit_message] )`\n \n@@ -782,11 +781,6 @@ Attributes\n * `parent`: `Repository`\n * `source`: `Repository`\n \n-Events\n-------\n-* `get_events()`: list of `Event`\n-* `get_network_events()`: list of `Event`\n-\n Issues events\n -------------\n * `get_issues_events()`: list of `IssueEvent`\n@@ -823,7 +817,7 @@ Collaborators\n * `collaborator`: `NamedUser`\n * `remove_from_collaborators( collaborator )`\n * `collaborator`: `NamedUser`\n-* `has_in_collaborators( collaborator )`: `bool`\n+* `has_in_collaborators( collaborator )`: bool\n * `collaborator`: `NamedUser`\n \n Contributors\n@@ -847,8 +841,8 @@ Git commits\n \n Git trees\n ---------\n-* `get_git_tree( sha )`: `GitTree`\n-* `create_git_tree( tree )`: `GitTree`\n+* `get_git_tree( sha, [recursive] )`: `GitTree`\n+* `create_git_tree( tree, [base_tree] )`: `GitTree`\n \n Git blobs\n ---------\n@@ -906,12 +900,18 @@ Pulls\n -----\n * `get_pulls( [state] )`: list of `PullRequest`\n * `get_pull( number )`: `PullRequest`\n-* `create_pull( title, body, base, head )`: `PullRequest`\n+* `create_pull( < title, body, base, head > or < issue, base, head > )`: `PullRequest`\n+* `compare( base, head )`\n \n Teams\n -----\n * `get_teams()`: list of `Team`\n \n+Events\n+------\n+* `get_events()`: list of `Event`\n+* `get_network_events()`: list of `Event`\n+\n Class `RepositoryKey`\n =====================\n \n@@ -967,7 +967,7 @@ Members\n * `member`: `NamedUser`\n * `remove_from_members( member )`\n * `member`: `NamedUser`\n-* `has_in_members( member )`: `bool`\n+* `has_in_members( member )`: bool\n * `member`: `NamedUser`\n \n Repos\n@@ -977,7 +977,7 @@ Repos\n * `repo`: `Repository`\n * `remove_from_repos( repo )`\n * `repo`: `Repository`\n-* `has_in_repos( repo )`: `bool`\n+* `has_in_repos( repo )`: bool\n * `repo`: `Repository`\n \n Class `UserKey`","changes":62,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GenerateDocumentation.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GenerateDocumentation.py","deletions":8,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GenerateDocumentation.py","additions":1,"status":"modified","patch":"@@ -1,6 +1,5 @@\n #!/bin/env python\n \n-import GithubObject\n import GithubObjects\n \n def generateDocumentation():\n@@ -15,18 +14,12 @@ def generateDocumentation():\n You don't normaly create instances of any class but `Github`.\n You obtain instances through calls to `get_` and `create_` methods.\n \n-In this documentation:\n-\n-* `login` is a string containing a user's or organization's login\n-* `user` is an instance of `AuthenticatedUser` or `NamedUser`\n-* `name` is a string containing the name of a repository\n-* `repo` is an instance of `Repository`\n-\n Class `Github`\n ==============\n * Constructed from user's login and password\n * `get_user()`: `AuthenticatedUser`\n * `get_user( login )`: `NamedUser`\n * `get_organization( login )`: `Organization`\n+* `get_gist( id )`: `Gist`\n \"\"\"\n print generateDocumentation()","changes":9,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a3be28756101370fbc689eec3a7825c4c385a6c9/github/GithubObjects.py","deletions":761,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a3be28756101370fbc689eec3a7825c4c385a6c9/github/GithubObjects.py","additions":0,"status":"removed","patch":"@@ -1,761 +0,0 @@\n-import itertools\n-import urllib\n-\n-from GithubObject import *\n-\n-Event = GithubObject(\n- \"Event\",\n- InternalSimpleAttributes(\n- \"type\", \"public\", \"payload\", \"created_at\", \"id\", \"commit_id\", \"url\",\n- \"event\", \"issue\",\n- ),\n-)\n-\n-def __testHook( hook ):\n- hook._github._statusRequest( \"POST\", hook._baseUrl() + \"/test\", None, None )\n-Hook = GithubObject(\n- \"Hook\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/hooks/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"updated_at\", \"created_at\", \"name\", \"events\", \"active\", \"config\",\n- \"id\", \"last_response\",\n- \"_repo\", ### Ugly hack\n- ),\n- Editable( [ \"name\", \"config\" ], [ \"events\", \"add_events\", \"remove_events\", \"active\" ] ),\n- Deletable(),\n- SeveralAttributePolicies( [ MethodFromCallable( \"test\", [], [], __testHook, SimpleTypePolicy( None ) ) ], \"Testing\" )\n-)\n-\n-Authorization = GithubObject(\n- \"Authorization\",\n- BaseUrl( lambda obj: \"/authorizations/\" + str( obj.id ) ), ### @todo make the lambda return a tuple, and BaseUrl convert elements to strings and join them with \"/\"\n- InternalSimpleAttributes(\n- \"id\", \"url\", \"scopes\", \"token\", \"app\", \"note\", \"note_url\", \"updated_at\",\n- \"created_at\",\n- ),\n- Editable( [], [ \"scopes\", \"add_scopes\", \"remove_scopes\", \"note\", \"note_url\" ] ),\n- Deletable(),\n-)\n-\n-UserKey = GithubObject(\n- \"UserKey\",\n- BaseUrl( lambda obj: \"/user/keys/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"id\", \"title\", \"key\",\n- ),\n- Editable( [], [ \"title\", \"key\" ] ),\n- Deletable(),\n-)\n-\n-AuthenticatedUser = GithubObject(\n- \"AuthenticatedUser\",\n- BaseUrl( lambda obj: \"/user\" ),\n- Identity( lambda obj: obj.login ),\n- InternalSimpleAttributes(\n- \"login\", \"id\", \"avatar_url\", \"gravatar_id\", \"url\", \"name\", \"company\",\n- \"blog\", \"location\", \"email\", \"hireable\", \"bio\", \"public_repos\",\n- \"public_gists\", \"followers\", \"following\", \"html_url\", \"created_at\",\n- \"type\", \"total_private_repos\", \"owned_private_repos\", \"private_gists\",\n- \"disk_usage\", \"collaborators\", \"plan\",\n- ),\n- Editable( [], [ \"name\", \"email\", \"blog\", \"company\", \"location\", \"hireable\", \"bio\" ] ),\n- ExternalListOfSimpleTypes( \"emails\", \"email\", \"string\",\n- ListGetable( [], [] ),\n- SeveralElementsAddable(),\n- SeveralElementsRemovable()\n- ),\n- ExternalListOfObjects( \"authorizations\", \"authorization\", Authorization,\n- ListGetable( [], [] ),\n- ElementGetable( [ \"id\" ], [] ),\n- ElementCreatable( [], [ \"scopes\", \"note\", \"note_url\" ] ),\n- url = \"/authorizations\",\n- ),\n- ExternalListOfObjects( \"keys\", \"key\", UserKey,\n- ListGetable( [], [] ),\n- ElementGetable( [ \"id\" ], [] ),\n- ElementCreatable( [ \"title\", \"key\" ], [] ),\n- ),\n- ExternalListOfObjects( \"events\", \"event\", Event,\n- ListGetable( [], [] ),\n- url = \"/events\"\n- ),\n-)\n-\n-NamedUser = GithubObject(\n- \"NamedUser\",\n- BaseUrl( lambda obj: \"/users/\" + obj.login ),\n- Identity( lambda obj: obj.login ),\n- InternalSimpleAttributes(\n- \"login\", \"id\", \"avatar_url\", \"gravatar_id\", \"url\", \"name\", \"company\",\n- \"blog\", \"location\", \"email\", \"hireable\", \"bio\", \"public_repos\",\n- \"public_gists\", \"followers\", \"following\", \"html_url\", \"created_at\",\n- \"type\",\n- # Only in Repository.get_contributors()\n- \"contributions\",\n- # Seen only by user herself\n- \"disk_usage\", \"collaborators\", \"plan\", \"total_private_repos\",\n- \"owned_private_repos\", \"private_gists\",\n- ),\n-)\n-\n-AuthenticatedUser._addAttributePolicy(\n- ExternalListOfObjects( \"followers\", \"follower\", NamedUser,\n- ListGetable( [], [] )\n- )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"followers\", \"follower\", NamedUser,\n- ListGetable( [], [] )\n- )\n-)\n-\n-AuthenticatedUser._addAttributePolicy(\n- ExternalListOfObjects( \"following\", \"following\", NamedUser,\n- ListGetable( [], [] ),\n- ElementAddable(),\n- ElementRemovable(),\n- ElementHasable()\n- )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"following\", \"following\", NamedUser,\n- ListGetable( [], [] )\n- )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"events\", \"event\", Event,\n- ListGetable( [], [] )\n- ),\n-)\n-def __getPublicEvents( user ):\n- return [\n- Event( user._github, attributes, lazy = True )\n- for attributes\n- in user._github._dataRequest( \"GET\", user._baseUrl() + \"/events/public\", None, None )\n- ]\n-NamedUser._addAttributePolicy(\n- MethodFromCallable( \"get_public_events\", [], [], __getPublicEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"received_events\", \"received_event\", Event,\n- ListGetable( [], [] )\n- )\n-)\n-def __getPublicReceivedEvents( user ):\n- return [\n- Event( user._github, attributes, lazy = True )\n- for attributes\n- in user._github._dataRequest( \"GET\", user._baseUrl() + \"/received_events/public\", None, None )\n- ]\n-NamedUser._addAttributePolicy(\n- MethodFromCallable( \"get_public_received_events\", [], [], __getPublicReceivedEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n-)\n-\n-Organization = GithubObject(\n- \"Organization\",\n- BaseUrl( lambda obj: \"/orgs/\" + obj.login ),\n- Identity( lambda obj: obj.login ),\n- InternalSimpleAttributes(\n- \"login\", \"id\", \"url\", \"avatar_url\", \"name\", \"company\", \"blog\",\n- \"location\", \"email\", \"public_repos\", \"public_gists\", \"followers\",\n- \"following\", \"html_url\", \"created_at\", \"type\", \"gravatar_id\",\n- # Seen only by owners\n- \"disk_usage\", \"collaborators\", \"billing_email\", \"plan\", \"private_gists\",\n- \"total_private_repos\", \"owned_private_repos\",\n- ),\n- Editable( [], [ \"billing_email\", \"blog\", \"company\", \"email\", \"location\", \"name\" ] ),\n- ExternalListOfObjects( \"public_members\", \"public_member\", NamedUser,\n- ListGetable( [], [] ),\n- ElementAddable(),\n- ElementRemovable(),\n- ElementHasable()\n- ),\n- ExternalListOfObjects( \"members\", \"member\", NamedUser,\n- ListGetable( [], [] ),\n- ElementRemovable(),\n- ElementHasable()\n- ),\n- ExternalListOfObjects( \"events\", \"event\", Event,\n- ListGetable( [], [] )\n- ),\n-)\n-\n-AuthenticatedUser._addAttributePolicy(\n- ExternalListOfObjects( \"orgs\", \"org\", Organization,\n- ListGetable( [], [] )\n- )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"orgs\", \"org\", Organization,\n- ListGetable( [], [] )\n- )\n-)\n-\n-def __getOrganizationEvents( user, org ):\n- return [\n- Event( user._github, attributes, lazy = True )\n- for attributes\n- in user._github._dataRequest( \"GET\", \"/users/\" + user.login + \"/events/orgs/\" + org.login, None, None )\n- ]\n-AuthenticatedUser._addAttributePolicy(\n- MethodFromCallable( \"get_organization_events\", [ \"org\" ], [], __getOrganizationEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n-)\n-\n-GitRef = GithubObject(\n- \"GitRef\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/\" + obj.ref ),\n- InternalSimpleAttributes(\n- \"ref\", \"url\",\n- \"object\", ### @todo Structure\n- \"_repo\", ### Ugly hack\n- ),\n- Editable( [ \"sha\" ], [ \"force\" ] ),\n-)\n-\n-GitTree = GithubObject(\n- \"GitTree\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/trees/\" + obj.sha ),\n- InternalSimpleAttributes(\n- \"sha\", \"url\",\n- \"tree\", ### @todo Structure\n- \"_repo\", ### Ugly hack\n- ),\n-)\n-\n-GitCommit = GithubObject(\n- \"GitCommit\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/commits/\" + obj.sha ),\n- InternalSimpleAttributes(\n- \"sha\", \"url\", \"message\",\n- \"parents\", ### @todo Structure\n- \"author\", \"committer\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"tree\", GitTree ),\n-)\n-\n-GitBlob = GithubObject(\n- \"GitBlob\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/blobs/\" + obj.sha ),\n- InternalSimpleAttributes(\n- \"sha\", \"size\", \"url\",\n- \"content\", \"encoding\",\n- \"_repo\", ### Ugly hack\n- ),\n-)\n-\n-GitTag = GithubObject(\n- \"GitTag\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/tags/\" + obj.sha ),\n- InternalSimpleAttributes(\n- \"tag\", \"sha\", \"url\",\n- \"message\",\n- \"tagger\", ### @todo Structure\n- \"object\", ### @todo Structure\n- \"_repo\", ### Ugly hack\n- ),\n-)\n-\n-Label = GithubObject(\n- \"Label\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/labels/\" + obj._identity ),\n- Identity( lambda obj: urllib.quote( obj.name ) ),\n- InternalSimpleAttributes(\n- \"url\", \"name\", \"color\",\n- \"_repo\", ### Ugly hack\n- ),\n- Editable( [ \"name\", \"color\" ], [] ),\n- Deletable(),\n-)\n-\n-__modifyAttributesForObjectsReferingReferedRepo = { \"_repo\": lambda obj: obj._repo }\n-\n-Milestone = GithubObject(\n- \"Milestone\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/milestones/\" + str( obj.number ) ),\n- InternalSimpleAttributes(\n- \"url\", \"number\", \"state\", \"title\", \"description\", \"open_issues\",\n- \"closed_issues\", \"created_at\", \"due_on\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"creator\", NamedUser ),\n- Editable( [ \"title\" ], [ \"state\", \"description\", \"due_on\" ] ),\n- Deletable(),\n- ExternalListOfObjects( \"labels\", \"label\", Label,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo )\n- ),\n-)\n-\n-IssueComment = GithubObject(\n- \"IssueComment\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/issues/comments/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"body\", \"created_at\", \"updated_at\", \"id\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- Editable( [ \"body\" ], [] ),\n- Deletable(),\n-)\n-\n-IssueEvent = GithubObject(\n- \"IssueEvent\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/issues/events/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"id\", \"url\", \"created_at\", \"issue\", \"event\", \"commit_id\",\n- \"_repo\", # Ugly hack\n- ),\n- InternalObjectAttribute( \"actor\", NamedUser ),\n-)\n-\n-Issue = GithubObject(\n- \"Issue\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/issues/\" + str( obj.number ) ),\n- InternalSimpleAttributes(\n- \"url\", \"html_url\", \"number\", \"state\", \"title\", \"body\", \"labels\",\n- \"comments\", \"closed_at\", \"created_at\", \"updated_at\", \"id\", \"closed_by\",\n- \"pull_request\", ### @todo Structure\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- InternalObjectAttribute( \"assignee\", NamedUser ),\n- InternalObjectAttribute( \"milestone\", Milestone ),\n- Editable( [], [ \"title\", \"body\", \"assignee\", \"state\", \"milestone\", \"labels\" ] ),\n- ExternalListOfObjects( \"labels\", \"label\", Label,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- SeveralElementsAddable(),\n- ListSetable(),\n- ListDeletable(),\n- ElementRemovable(),\n- ),\n- ExternalListOfObjects( \"comments\", \"comment\", IssueComment,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ElementCreatable( [ \"body\" ], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ),\n- ExternalListOfObjects( \"events\", \"event\", IssueEvent,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo )\n- ),\n-)\n-\n-Download = GithubObject(\n- \"Download\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/downloads/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"html_url\", \"id\", \"name\", \"description\", \"size\",\n- \"download_count\", \"content_type\", \"policy\", \"signature\", \"bucket\",\n- \"accesskeyid\", \"path\", \"acl\", \"expirationdate\", \"prefix\", \"mime_type\",\n- \"redirect\", \"s3_url\", \"created_at\",\n- \"_repo\", ### Ugly hack\n- ),\n- Deletable(),\n-)\n-\n-CommitComment = GithubObject(\n- \"CommitComment\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/comments/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"id\", \"body\", \"path\", \"position\", \"commit_id\",\n- \"created_at\", \"updated_at\", \"html_url\", \"line\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- Editable( [ \"body\" ], [] ),\n- Deletable(),\n-)\n-\n-Commit = GithubObject(\n- \"Commit\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/commits/\" + str( obj.sha ) ),\n- InternalSimpleAttributes(\n- \"sha\", \"url\",\n- \"parents\", ### @todo Structure\n- \"stats\", ### @todo Structure\n- \"files\", ### @todo Structure\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"commit\", GitCommit ),\n- InternalObjectAttribute( \"author\", NamedUser ),\n- InternalObjectAttribute( \"committer\", NamedUser ),\n- ExternalListOfObjects( \"comments\", \"comment\", CommitComment,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ElementCreatable( [ \"body\" ], [ \"commit_id\", \"line\", \"path\", \"position\" ], __modifyAttributesForObjectsReferingReferedRepo ),\n- ),\n-)\n-\n-Tag = GithubObject(\n- \"Tag\",\n- InternalSimpleAttributes(\n- \"name\", \"zipball_url\", \"tarball_url\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"commit\", Commit )\n-)\n-\n-Branch = GithubObject(\n- \"Branch\",\n- InternalSimpleAttributes(\n- \"name\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"commit\", Commit )\n-)\n-\n-__modifyAttributesForObjectsReferingRepo = { \"_repo\": lambda repo: repo }\n-PullRequestFile = GithubObject(\n- \"PullRequestFile\",\n- InternalSimpleAttributes(\n- \"sha\", \"filename\", \"status\", \"additions\", \"deletions\", \"changes\",\n- \"blob_url\", \"raw_url\", \"patch\",\n- ),\n-)\n-\n-PullRequestComment = GithubObject(\n- \"PullRequestComment\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/pulls/comments/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"id\", \"body\", \"path\", \"position\", \"commit_id\",\n- \"created_at\", \"updated_at\", \"html_url\", \"line\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- Editable( [ \"body\" ], [] ),\n- Deletable(),\n-)\n-\n-def __pullRequestIsMerged( r ):\n- return r._github._statusRequest( \"GET\", r._baseUrl() + \"/merge\", None, None ) == 204\n-def __mergePullRequest( r, **data ):\n- r._github._statusRequest( \"PUT\", r._baseUrl() + \"/merge\", None, data )\n-PullRequest = GithubObject(\n- \"PullRequest\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/pulls/\" + str( obj.number ) ),\n- InternalSimpleAttributes(\n- \"id\", \"url\", \"html_url\", \"diff_url\", \"patch_url\", \"issue_url\", \"number\",\n- \"state\", \"title\", \"body\", \"created_at\", \"updated_at\", \"closed_at\",\n- \"merged_at\", \"_links\", \"merged\", \"mergeable\", \"comments\", \"commits\",\n- \"additions\", \"deletions\", \"changed_files\", \"head\", \"base\", \"merged_by\",\n- \"review_comments\",\n- \"_repo\", ### Ugly hack\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- Editable( [], [ \"title\", \"body\", \"state\" ] ),\n- ExternalListOfObjects( \"commits\", \"commit\", Commit,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ),\n- ExternalListOfObjects( \"files\", \"file\", PullRequestFile,\n- ListGetable( [], [] ),\n- ),\n- ExternalListOfObjects( \"comments\", \"comment\", PullRequestComment,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ElementCreatable( [ \"body\", \"commit_id\", \"path\", \"position\" ], [], __modifyAttributesForObjectsReferingReferedRepo ),\n- ),\n- MethodFromCallable( \"is_merged\", [], [], __pullRequestIsMerged, SimpleTypePolicy( \"bool\" ) ),\n- MethodFromCallable( \"merge\", [], [ \"commit_message\" ], __mergePullRequest, SimpleTypePolicy( None ) ),\n-)\n-\n-RepositoryKey = GithubObject(\n- \"RepositoryKey\",\n- BaseUrl( lambda obj: obj._repo._baseUrl() + \"/keys/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"id\", \"title\", \"key\",\n- \"_repo\", ### Ugly hack\n- ),\n- Editable( [ \"title\", \"key\" ], [] ),\n- Deletable()\n-)\n-\n-Repository = GithubObject(\n- \"Repository\",\n- BaseUrl( lambda obj: \"/repos/\" + obj.owner.login + \"/\" + obj.name ),\n- Identity( lambda obj: obj.owner.login + \"/\" + obj.name ),\n- InternalSimpleAttributes(\n- \"url\", \"html_url\", \"clone_url\", \"git_url\", \"ssh_url\", \"svn_url\",\n- \"name\", \"description\", \"homepage\", \"language\", \"private\",\n- \"fork\", \"forks\", \"watchers\", \"size\", \"master_branch\", \"open_issues\",\n- \"pushed_at\", \"created_at\", \"organization\",\n- \"has_issues\", \"has_wiki\", \"has_downloads\",\n- # Not documented\n- \"mirror_url\", \"updated_at\", \"id\",\n- ),\n- InternalObjectAttribute( \"owner\", NamedUser ),\n-)\n-Repository._addAttributePolicy( InternalObjectAttribute( \"parent\", Repository ) )\n-Repository._addAttributePolicy( InternalObjectAttribute( \"source\", Repository ) )\n-Repository._addAttributePolicy(\n- ExternalListOfObjects( \"events\", \"event\", Event,\n- ListGetable( [], [] )\n- ),\n-)\n-def __getNetworkEvents( repo ):\n- return [\n- Event( repo._github, attributes, lazy = True )\n- for attributes\n- in repo._github._dataRequest( \"GET\", \"/networks/\" + repo.owner.login + \"/\" + repo.name + \"/events\", None, None )\n- ]\n-Repository._addAttributePolicy(\n- MethodFromCallable( \"get_network_events\", [], [], __getNetworkEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n-)\n-Repository._addAttributePolicy(\n- ExternalListOfObjects( \"issues/events\", \"issues_event\", IssueEvent,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- )\n-)\n-Repository._addAttributePolicy(\n- ExternalListOfObjects( \"forks\", \"fork\", Repository,\n- ListGetable( [], [] )\n- )\n-)\n-Repository._addAttributePolicy(\n- Editable( [ \"name\" ], [ \"description\", \"homepage\", \"public\", \"has_issues\", \"has_wiki\", \"has_downloads\" ] )\n-)\n-Repository._addAttributePolicy(\n- SeveralAttributePolicies( [ ExternalSimpleAttribute( \"languages\", \"dictionary of strings to integers\" ) ], \"Languages\" )\n-)\n-Repository._addAttributePolicy( SeveralAttributePolicies( [\n- ExternalListOfObjects( \"hooks\", \"hook\", Hook,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"name\", \"config\" ], [ \"events\", \"active\" ], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"keys\", \"key\", RepositoryKey,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"title\", \"key\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"collaborators\", \"collaborator\", NamedUser,\n- ListGetable( [], [] ),\n- ElementAddable(),\n- ElementRemovable(),\n- ElementHasable()\n- ),\n- ExternalListOfObjects( \"contributors\", \"contributor\", NamedUser,\n- ListGetable( [], [] )\n- ),\n- ExternalListOfObjects( \"watchers\", \"watcher\", NamedUser,\n- ListGetable( [], [] )\n- ),\n- ExternalListOfObjects( \"git/refs\", \"git_ref\", GitRef,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"ref\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"ref\", \"sha\" ], [], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"git/commits\", \"git_commit\", GitCommit,\n- ElementGetable( [ \"sha\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"message\", \"tree\", \"parents\" ], [ \"author\", \"committer\" ], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"git/trees\", \"git_tree\", GitTree,\n- ElementGetable( [ \"sha\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"tree\" ], [], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"git/blobs\", \"git_blob\", GitBlob,\n- ElementGetable( [ \"sha\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"content\", \"encoding\" ], [], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"git/tags\", \"git_tag\", GitTag,\n- ElementGetable( [ \"sha\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"tag\", \"message\", \"object\", \"type\" ], [ \"tagger\" ], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"labels\", \"label\", Label,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"name\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"name\", \"color\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"milestones\", \"milestone\", Milestone,\n- ListGetable( [], [ \"state\", \"sort\", \"direction\" ], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"number\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"title\" ], [ \"state\", \"description\", \"due_on\" ], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"issues\", \"issue\", Issue,\n- ListGetable( [], [ \"milestone\", \"state\", \"assignee\", \"mentioned\", \"labels\", \"sort\", \"direction\", \"since\" ], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"number\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"title\" ], [ \"body\", \"assignee\", \"milestone\", \"labels\", ], __modifyAttributesForObjectsReferingRepo )\n- ),\n- ExternalListOfObjects( \"downloads\", \"download\", Download,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"name\", \"size\" ], [ \"description\", \"content_type\" ], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"comments\", \"comment\", CommitComment,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"id\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"commits\", \"commit\", Commit,\n- ListGetable( [], [ \"sha\", \"path\" ], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"sha\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"tags\", \"tag\", Tag,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"branches\", \"branch\", Branch,\n- ListGetable( [], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n- ExternalListOfObjects( \"pulls\", \"pull\", PullRequest,\n- ListGetable( [], [ \"state\" ], __modifyAttributesForObjectsReferingRepo ),\n- ElementGetable( [ \"number\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ElementCreatable( [ \"title\", \"body\", \"base\", \"head\" ], [], __modifyAttributesForObjectsReferingRepo ),\n- ),\n-] ) )\n-\n-__repoElementCreatable = ElementCreatable( [ \"name\" ], [ \"description\", \"homepage\", \"private\", \"has_issues\", \"has_wiki\", \"has_downloads\", \"team_id\", ] )\n-__repoElementGetable = ElementGetable( [ \"name\" ], [], { \"owner\" : lambda user: { \"login\": user.login } } )\n-__repoListGetable = ListGetable( [], [ \"type\" ] )\n-AuthenticatedUser._addAttributePolicy(\n- ExternalListOfObjects( \"repos\", \"repo\", Repository,\n- __repoListGetable,\n- __repoElementGetable,\n- __repoElementCreatable\n- )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"repos\", \"repo\", Repository,\n- __repoListGetable,\n- __repoElementGetable\n- )\n-)\n-Organization._addAttributePolicy(\n- ExternalListOfObjects( \"repos\", \"repo\", Repository,\n- __repoListGetable,\n- __repoElementGetable,\n- __repoElementCreatable\n- )\n-)\n-\n-AuthenticatedUser._addAttributePolicy(\n- ExternalListOfObjects( \"watched\", \"watched\", Repository,\n- ListGetable( [], [] ),\n- ElementAddable(),\n- ElementRemovable(),\n- ElementHasable()\n- )\n-)\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"watched\", \"watched\", Repository,\n- ListGetable( [], [] )\n- )\n-)\n-\n-def __createForkForUser( user, repo ):\n- assert isinstance( repo, Repository )\n- return Repository( user._github, user._github._dataRequest( \"POST\", repo._baseUrl() + \"/forks\", None, None ), lazy = True )\n-AuthenticatedUser._addAttributePolicy( SeveralAttributePolicies( [ MethodFromCallable( \"create_fork\", [ \"repo\" ], [], __createForkForUser, ObjectTypePolicy( Repository ) ) ], \"Forking\" ) )\n-def __createForkForOrg( org, repo ):\n- assert isinstance( repo, Repository )\n- return Repository( org._github, org._github._dataRequest( \"POST\", repo._baseUrl() + \"/forks\", { \"org\": org.login }, None ), lazy = True )\n-Organization._addAttributePolicy( SeveralAttributePolicies( [ MethodFromCallable( \"create_fork\", [ \"repo\" ], [], __createForkForOrg, ObjectTypePolicy( Repository ) ) ], \"Forking\" ) )\n-\n-Team = GithubObject(\n- \"Team\",\n- BaseUrl( lambda obj: \"/teams/\" + str( obj.id ) ),\n- Identity( lambda obj: str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"name\", \"id\", \"permission\", \"members_count\", \"repos_count\",\n- ),\n- Editable( [ \"name\" ], [ \"permission\" ] ),\n- Deletable(),\n- ExternalListOfObjects( \"members\", \"member\", NamedUser,\n- ListGetable( [], [] ),\n- ElementAddable(),\n- ElementRemovable(),\n- ElementHasable()\n- ),\n- ExternalListOfObjects( \"repos\", \"repo\", Repository,\n- ListGetable( [], [] ),\n- ElementAddable(),\n- ElementRemovable(),\n- ElementHasable()\n- ),\n-)\n-\n-Organization._addAttributePolicy(\n- ExternalListOfObjects( \"teams\", \"team\", Team,\n- ListGetable( [], [] ),\n- ElementCreatable( [ \"name\" ], [ \"repo_names\", \"permission\" ] )\n- )\n-)\n-Repository._addAttributePolicy(\n- ExternalListOfObjects( \"teams\", \"team\", Team,\n- ListGetable( [], [] )\n- )\n-)\n-\n-GistComment = GithubObject(\n- \"GistComment\",\n- BaseUrl( lambda obj: \"/gists/comments/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"id\", \"url\", \"body\", \"created_at\",\n- \"updated_at\",\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- Editable( [ \"body\" ], [] ),\n- Deletable(),\n-)\n-\n-def __isStarred( gist ):\n- return gist._github._statusRequest( \"GET\", gist._baseUrl() + \"/star\", None, None ) == 204\n-def __setStarred( gist ):\n- gist._github._statusRequest( \"PUT\", gist._baseUrl() + \"/star\", None, None )\n-def __resetStarred( gist ):\n- gist._github._statusRequest( \"DELETE\", gist._baseUrl() + \"/star\", None, None )\n-Gist = GithubObject(\n- \"Gist\",\n- BaseUrl( lambda obj: \"/gists/\" + str( obj.id ) ),\n- InternalSimpleAttributes(\n- \"url\", \"id\", \"description\", \"public\", \"files\", \"comments\", \"html_url\",\n- \"git_pull_url\", \"git_push_url\", \"created_at\", \"forks\", \"history\",\n- \"updated_at\",\n- ),\n- InternalObjectAttribute( \"user\", NamedUser ),\n- Editable( [], [ \"description\", \"files\" ] ),\n- Deletable(),\n- ExternalListOfObjects( \"comments\", \"comment\", GistComment,\n- ListGetable( [], [] ),\n- ElementGetable( [ \"id\" ], [] ),\n- ElementCreatable( [ \"body\" ], [] ),\n- ),\n- SeveralAttributePolicies( [\n- MethodFromCallable( \"is_starred\", [], [], __isStarred, SimpleTypePolicy( \"bool\" ) ),\n- MethodFromCallable( \"set_starred\", [], [], __setStarred, SimpleTypePolicy( None ) ),\n- MethodFromCallable( \"reset_starred\", [], [], __resetStarred, SimpleTypePolicy( None ) ),\n- ], \"Starring\" ),\n-)\n-def __createFork( gist ):\n- return Gist( gist._github, gist._github._dataRequest( \"POST\", gist._baseUrl() + \"/fork\", None, None ), lazy = True )\n-Gist._addAttributePolicy( SeveralAttributePolicies( [\n- MethodFromCallable( \"create_fork\", [], [], __createFork, ObjectTypePolicy( Gist ) ),\n- ], \"Forking\" ),\n-)\n-\n-NamedUser._addAttributePolicy(\n- ExternalListOfObjects( \"gists\", \"gist\", Gist,\n- ListGetable( [], [] ),\n- )\n-)\n-\n-AuthenticatedUser._addAttributePolicy(\n- ExternalListOfObjects( \"gists\", \"gist\", Gist,\n- ListGetable( [], [] ),\n- ElementCreatable( [ \"public\", \"files\", ], [ \"description\" ] ),\n- url = \"/gists\",\n- )\n-)\n-def __getStaredGists( user ):\n- return [\n- Gist( user._github, attributes, lazy = True )\n- for attributes in user._github._dataRequest( \"GET\", \"/gists/starred\", None, None )\n- ]\n-AuthenticatedUser._addAttributePolicy(\n- MethodFromCallable( \"get_starred_gists\", [], [], __getStaredGists, SimpleTypePolicy( \"list of `Gist`\" ) ),\n-)\n-\n-Event._addAttributePolicy(\n- InternalObjectAttribute( \"repo\", Repository ),\n-)\n-Event._addAttributePolicy(\n- InternalObjectAttribute( \"actor\", NamedUser ),\n-)\n-Event._addAttributePolicy(\n- InternalObjectAttribute( \"org\", Organization ),\n-)","changes":761,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/AuthenticatedUser.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/AuthenticatedUser.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/AuthenticatedUser.py","additions":94,"status":"added","patch":"@@ -0,0 +1,94 @@\n+from Authorization import *\n+from UserKey import *\n+from Event import *\n+from NamedUser import *\n+from Organization import *\n+from Repository import *\n+from Gist import *\n+from Issue import *\n+\n+def __getOrganizationEvents( user, org ):\n+ return [\n+ Event( user._github, attributes, lazy = True )\n+ for attributes\n+ in user._github._dataRequest( \"GET\", \"/users/\" + user.login + \"/events/orgs/\" + org.login, None, None )\n+ ]\n+\n+def __createFork( user, repo ):\n+ assert isinstance( repo, Repository )\n+ return Repository( user._github, user._github._dataRequest( \"POST\", repo._baseUrl() + \"/forks\", None, None ), lazy = True )\n+\n+def __getStaredGists( user ):\n+ return [\n+ Gist( user._github, attributes, lazy = True )\n+ for attributes in user._github._dataRequest( \"GET\", \"/gists/starred\", None, None )\n+ ]\n+\n+AuthenticatedUser = GithubObject(\n+ \"AuthenticatedUser\",\n+ BaseUrl( lambda obj: \"/user\" ),\n+ Identity( lambda obj: obj.login ),\n+ InternalSimpleAttributes(\n+ \"login\", \"id\", \"avatar_url\", \"gravatar_id\", \"url\", \"name\", \"company\",\n+ \"blog\", \"location\", \"email\", \"hireable\", \"bio\", \"public_repos\",\n+ \"public_gists\", \"followers\", \"following\", \"html_url\", \"created_at\",\n+ \"type\", \"total_private_repos\", \"owned_private_repos\", \"private_gists\",\n+ \"disk_usage\", \"collaborators\", \"plan\",\n+ ),\n+ Editable( Parameters( [], [ \"name\", \"email\", \"blog\", \"company\", \"location\", \"hireable\", \"bio\" ] ) ),\n+ ExternalListOfSimpleTypes( \"emails\", \"email\", \"string\",\n+ ListGetable( Parameters( [], [] ) ),\n+ SeveralElementsAddable(),\n+ SeveralElementsRemovable()\n+ ),\n+ ExternalListOfObjects( \"authorizations\", \"authorization\", Authorization,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ) ),\n+ ElementCreatable( Parameters( [], [ \"scopes\", \"note\", \"note_url\" ] ) ),\n+ url = \"/authorizations\",\n+ ),\n+ ExternalListOfObjects( \"keys\", \"key\", UserKey,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ) ),\n+ ElementCreatable( Parameters( [ \"title\", \"key\" ], [] ) ),\n+ ),\n+ ExternalListOfObjects( \"events\", \"event\", Event,\n+ ListGetable( Parameters( [], [] ) ),\n+ url = \"/events\"\n+ ),\n+ ExternalListOfObjects( \"followers\", \"follower\", NamedUser,\n+ ListGetable( Parameters( [], [] ) )\n+ ),\n+ ExternalListOfObjects( \"following\", \"following\", NamedUser,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementAddable(),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+ ExternalListOfObjects( \"orgs\", \"org\", Organization,\n+ ListGetable( Parameters( [], [] ) )\n+ ),\n+ MethodFromCallable( \"get_organization_events\", Parameters( [ \"org\" ], [] ), __getOrganizationEvents, SimpleTypePolicy( \"list of `Event`\" ) ),\n+ ExternalListOfObjects( \"repos\", \"repo\", Repository,\n+ ListGetable( Parameters( [], [ \"type\" ] ) ),\n+ ElementGetable( Parameters( [ \"name\" ], [] ), { \"owner\" : lambda user: { \"login\": user.login } } ),\n+ ElementCreatable( Parameters( [ \"name\" ], [ \"description\", \"homepage\", \"private\", \"has_issues\", \"has_wiki\", \"has_downloads\", \"team_id\", ] ) )\n+ ),\n+ ExternalListOfObjects( \"watched\", \"watched\", Repository,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementAddable(),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+ SeveralAttributePolicies( [ MethodFromCallable( \"create_fork\", Parameters( [ \"repo\" ], [] ), __createFork, ObjectTypePolicy( Repository ) ) ], \"Forking\" ),\n+ ExternalListOfObjects( \"gists\", \"gist\", Gist,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementCreatable( Parameters( [ \"public\", \"files\", ], [ \"description\" ] ) ),\n+ url = \"/gists\",\n+ ),\n+ MethodFromCallable( \"get_starred_gists\", Parameters( [], [] ), __getStaredGists, SimpleTypePolicy( \"list of `Gist`\" ) ),\n+ ExternalListOfObjects( \"issues\", \"issue\", Issue,\n+ ListGetable( Parameters( [], [] ) ),\n+ url = \"/issues\",\n+ ),\n+)","changes":94,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Authorization.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Authorization.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Authorization.py","additions":12,"status":"added","patch":"@@ -0,0 +1,12 @@\n+from GithubObject import *\n+\n+Authorization = GithubObject(\n+ \"Authorization\",\n+ BaseUrl( lambda obj: \"/authorizations/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"id\", \"url\", \"scopes\", \"token\", \"app\", \"note\", \"note_url\", \"updated_at\",\n+ \"created_at\",\n+ ),\n+ Editable( Parameters( [], [ \"scopes\", \"add_scopes\", \"remove_scopes\", \"note\", \"note_url\" ] ) ),\n+ Deletable(),\n+)","changes":12,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Branch.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Branch.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Branch.py","additions":10,"status":"added","patch":"@@ -0,0 +1,10 @@\n+from Commit import *\n+\n+Branch = GithubObject(\n+ \"Branch\",\n+ InternalSimpleAttributes(\n+ \"name\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"commit\", Commit )\n+)","changes":10,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Commit.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Commit.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Commit.py","additions":24,"status":"added","patch":"@@ -0,0 +1,24 @@\n+from GitCommit import *\n+from NamedUser import *\n+from CommitComment import *\n+\n+__modifyAttributesForObjectsReferingReferedRepo = { \"_repo\": lambda obj: obj._repo }\n+\n+Commit = GithubObject(\n+ \"Commit\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/commits/\" + str( obj.sha ) ),\n+ InternalSimpleAttributes(\n+ \"sha\", \"url\",\n+ \"parents\",\n+ \"stats\",\n+ \"files\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"commit\", GitCommit ),\n+ InternalObjectAttribute( \"author\", NamedUser ),\n+ InternalObjectAttribute( \"committer\", NamedUser ),\n+ ExternalListOfObjects( \"comments\", \"comment\", CommitComment,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ElementCreatable( Parameters( [ \"body\" ], [ \"commit_id\", \"line\", \"path\", \"position\" ] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ),\n+)","changes":24,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/CommitComment.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/CommitComment.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/CommitComment.py","additions":14,"status":"added","patch":"@@ -0,0 +1,14 @@\n+from NamedUser import *\n+\n+CommitComment = GithubObject(\n+ \"CommitComment\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/comments/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"id\", \"body\", \"path\", \"position\", \"commit_id\",\n+ \"created_at\", \"updated_at\", \"html_url\", \"line\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ Editable( Parameters( [ \"body\" ], [] ) ),\n+ Deletable(),\n+)","changes":14,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Download.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Download.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Download.py","additions":14,"status":"added","patch":"@@ -0,0 +1,14 @@\n+from GithubObject import *\n+\n+Download = GithubObject(\n+ \"Download\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/downloads/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"html_url\", \"id\", \"name\", \"description\", \"size\",\n+ \"download_count\", \"content_type\", \"policy\", \"signature\", \"bucket\",\n+ \"accesskeyid\", \"path\", \"acl\", \"expirationdate\", \"prefix\", \"mime_type\",\n+ \"redirect\", \"s3_url\", \"created_at\",\n+ \"_repo\",\n+ ),\n+ Deletable(),\n+)","changes":14,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Event.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Event.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Event.py","additions":14,"status":"added","patch":"@@ -0,0 +1,14 @@\n+from Repository import *\n+from NamedUser import *\n+from Organization import *\n+\n+Event = GithubObject(\n+ \"Event\",\n+ InternalSimpleAttributes(\n+ \"type\", \"public\", \"payload\", \"created_at\", \"id\", \"commit_id\", \"url\",\n+ \"event\", \"issue\",\n+ ),\n+ InternalObjectAttribute( \"repo\", Repository ),\n+ InternalObjectAttribute( \"actor\", NamedUser ),\n+ InternalObjectAttribute( \"org\", Organization ),\n+)\n\\ No newline at end of file","changes":14,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Gist.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Gist.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Gist.py","additions":37,"status":"added","patch":"@@ -0,0 +1,37 @@\n+from NamedUser import *\n+from GistComment import *\n+\n+def __isStarred( gist ):\n+ return gist._github._statusRequest( \"GET\", gist._baseUrl() + \"/star\", None, None ) == 204\n+def __setStarred( gist ):\n+ gist._github._statusRequest( \"PUT\", gist._baseUrl() + \"/star\", None, None )\n+def __resetStarred( gist ):\n+ gist._github._statusRequest( \"DELETE\", gist._baseUrl() + \"/star\", None, None )\n+Gist = GithubObject(\n+ \"Gist\",\n+ BaseUrl( lambda obj: \"/gists/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"id\", \"description\", \"public\", \"files\", \"comments\", \"html_url\",\n+ \"git_pull_url\", \"git_push_url\", \"created_at\", \"forks\", \"history\",\n+ \"updated_at\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ Editable( Parameters( [], [ \"description\", \"files\" ] ) ),\n+ Deletable(),\n+ ExternalListOfObjects( \"comments\", \"comment\", GistComment,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ) ),\n+ ElementCreatable( Parameters( [ \"body\" ], [] ) ),\n+ ),\n+ SeveralAttributePolicies( [\n+ MethodFromCallable( \"is_starred\", Parameters( [], [] ), __isStarred, SimpleTypePolicy( \"bool\" ) ),\n+ MethodFromCallable( \"set_starred\", Parameters( [], [] ), __setStarred, SimpleTypePolicy( None ) ),\n+ MethodFromCallable( \"reset_starred\", Parameters( [], [] ), __resetStarred, SimpleTypePolicy( None ) ),\n+ ], \"Starring\" ),\n+)\n+def __createFork( gist ):\n+ return Gist( gist._github, gist._github._dataRequest( \"POST\", gist._baseUrl() + \"/fork\", None, None ), lazy = True )\n+Gist._addAttributePolicy( SeveralAttributePolicies( [\n+ MethodFromCallable( \"create_fork\", Parameters( [], [] ), __createFork, ObjectTypePolicy( Gist ) ),\n+ ], \"Forking\" ),\n+)","changes":37,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GistComment.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GistComment.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GistComment.py","additions":13,"status":"added","patch":"@@ -0,0 +1,13 @@\n+from NamedUser import *\n+\n+GistComment = GithubObject(\n+ \"GistComment\",\n+ BaseUrl( lambda obj: \"/gists/comments/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"id\", \"url\", \"body\", \"created_at\",\n+ \"updated_at\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ Editable( Parameters( [ \"body\" ], [] ) ),\n+ Deletable(),\n+)","changes":13,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GitBlob.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitBlob.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitBlob.py","additions":11,"status":"added","patch":"@@ -0,0 +1,11 @@\n+from GithubObject import *\n+\n+GitBlob = GithubObject(\n+ \"GitBlob\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/blobs/\" + obj.sha ),\n+ InternalSimpleAttributes(\n+ \"sha\", \"size\", \"url\",\n+ \"content\", \"encoding\",\n+ \"_repo\",\n+ ),\n+)","changes":11,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GitCommit.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitCommit.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitCommit.py","additions":13,"status":"added","patch":"@@ -0,0 +1,13 @@\n+from GitTree import *\n+\n+GitCommit = GithubObject(\n+ \"GitCommit\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/commits/\" + obj.sha ),\n+ InternalSimpleAttributes(\n+ \"sha\", \"url\", \"message\",\n+ \"parents\",\n+ \"author\", \"committer\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"tree\", GitTree ),\n+)","changes":13,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GitRef.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitRef.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitRef.py","additions":12,"status":"added","patch":"@@ -0,0 +1,12 @@\n+from GithubObject import *\n+\n+GitRef = GithubObject(\n+ \"GitRef\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/\" + obj.ref ),\n+ InternalSimpleAttributes(\n+ \"ref\", \"url\",\n+ \"object\",\n+ \"_repo\",\n+ ),\n+ Editable( Parameters( [ \"sha\" ], [ \"force\" ] ) ),\n+)","changes":12,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GitTag.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitTag.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitTag.py","additions":13,"status":"added","patch":"@@ -0,0 +1,13 @@\n+from GithubObject import *\n+\n+GitTag = GithubObject(\n+ \"GitTag\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/tags/\" + obj.sha ),\n+ InternalSimpleAttributes(\n+ \"tag\", \"sha\", \"url\",\n+ \"message\",\n+ \"tagger\",\n+ \"object\",\n+ \"_repo\",\n+ ),\n+)","changes":13,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GitTree.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitTree.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GitTree.py","additions":11,"status":"added","patch":"@@ -0,0 +1,11 @@\n+from GithubObject import *\n+\n+GitTree = GithubObject(\n+ \"GitTree\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/git/trees/\" + obj.sha + \"?recursive=1\" if obj.recursive else \"\" ),\n+ InternalSimpleAttributes(\n+ \"sha\", \"url\",\n+ \"tree\",\n+ \"_repo\", \"recursive\",\n+ ),\n+)","changes":11,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/ArgumentsChecker.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/ArgumentsChecker.py","deletions":1,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/ArgumentsChecker.py","additions":22,"status":"renamed","patch":"@@ -1,6 +1,6 @@\n import itertools\n \n-class ArgumentsChecker:\n+class Parameters:\n def __init__( self, mandatoryParameters, optionalParameters ):\n self.__mandatoryParameters = mandatoryParameters\n self.__optionalParameters = optionalParameters\n@@ -34,3 +34,24 @@ def documentParameters( self ):\n return \" \" + mandatory + \" \"\n else:\n return \" \" + mandatory + \", \" + optional + \" \"\n+\n+def NoParameters():\n+ return Parameters( [], [] )\n+\n+class Alternative:\n+ def __init__( self, *checkers ):\n+ self.__checkers = checkers\n+\n+ def check( self, args, kwds ):\n+ # Try the n - 1 first checkers\n+ for checker in self.__checkers[ : -1 ]:\n+ try:\n+ return checker.check( args, kwds )\n+ except TypeError:\n+ pass\n+ # Use the last checker\n+ # This way, the call stack will point to an actual validation failure\n+ return self.__checkers[ -1 ].check( args, kwds )\n+\n+ def documentParameters( self ):\n+ return \" <\" + \"> or <\".join( checker.documentParameters() for checker in self.__checkers ) + \"> \"","changes":23,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/Basic.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/Basic.py","deletions":5,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/Basic.py","additions":2,"status":"renamed","patch":"@@ -1,5 +1,3 @@\n-from ArgumentsChecker import *\n-\n class AttributeFromCallable:\n class AttributeDefinition:\n def __init__( self, name, callable ):\n@@ -25,10 +23,9 @@ def apply( self, cls ):\n def autoDocument( self ):\n return \"\"\n \n-### @todo include the ArgumentsChecker\n class MethodFromCallable:\n- def __init__( self, name, mandatoryParameters, optionalParameters, callable, returnTypePolicy ):\n- self.__argumentsChecker = ArgumentsChecker( mandatoryParameters, optionalParameters )\n+ def __init__( self, name, parameters, callable, returnTypePolicy ):\n+ self.__argumentsChecker = parameters\n self.__name = name\n self.__callable = callable\n self.__returnTypePolicy = returnTypePolicy","changes":7,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/GithubObject.UnitTest.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a3be28756101370fbc689eec3a7825c4c385a6c9/github/GithubObject.UnitTest.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a3be28756101370fbc689eec3a7825c4c385a6c9/github/GithubObject.UnitTest.py","additions":0,"status":"added","changes":0,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/GithubObject.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/GithubObject.py","deletions":8,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/GithubObject.py","additions":8,"status":"renamed","patch":"@@ -1,9 +1,9 @@\n import itertools\n \n-from ObjectCapacities.ArgumentsChecker import *\n-from ObjectCapacities.Basic import *\n-from ObjectCapacities.List import *\n-from ObjectCapacities.TypePolicies import *\n+from ArgumentsChecker import *\n+from Basic import *\n+from List import *\n+from TypePolicies import *\n \n class BadGithubObjectException( Exception ):\n pass\n@@ -21,21 +21,21 @@ def ExternalSimpleAttribute( attributeName, type ):\n return ExternalAttribute( attributeName, SimpleTypePolicy( type ) )\n \n def BaseUrl( baseUrl ):\n- return MethodFromCallable( \"_baseUrl\", [], [], baseUrl, SimpleTypePolicy( None ) )\n+ return MethodFromCallable( \"_baseUrl\", NoParameters(), baseUrl, SimpleTypePolicy( None ) )\n \n def Identity( identity ):\n return AttributeFromCallable( \"_identity\", identity )\n \n-def Editable( mandatoryParameters, optionalParameters ):\n+def Editable( parameters ):\n def __execute( obj, **data ):\n attributes = obj._github._dataRequest( \"PATCH\", obj._baseUrl(), None, data )\n obj._updateAttributes( attributes )\n- return SeveralAttributePolicies( [ MethodFromCallable( \"edit\", mandatoryParameters, optionalParameters, __execute, SimpleTypePolicy( None ) ) ], \"Modification\" )\n+ return SeveralAttributePolicies( [ MethodFromCallable( \"edit\", parameters, __execute, SimpleTypePolicy( None ) ) ], \"Modification\" )\n \n def Deletable():\n def __execute( obj ):\n obj._github._statusRequest( \"DELETE\", obj._baseUrl(), None, None )\n- return SeveralAttributePolicies( [ MethodFromCallable( \"delete\", [], [], __execute, SimpleTypePolicy( None ) ) ], \"Deletion\" )\n+ return SeveralAttributePolicies( [ MethodFromCallable( \"delete\", NoParameters(), __execute, SimpleTypePolicy( None ) ) ], \"Deletion\" )\n \n def GithubObject( className, *attributePolicies ):\n class GithubObject:","changes":16,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/List.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/List.py","deletions":8,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/List.py","additions":7,"status":"renamed","patch":"@@ -62,8 +62,7 @@ def __execute( self, obj, toBeQueried ):\n ) == 204\n \n def autoDocument( self ):\n- ### @todo `bool` -> bool\n- return \"* `has_in_\" + self.safeAttributeName + \"( \" + self.singularName + \" )`: `bool`\\n * `\" + self.singularName + \"`: \" + self.typePolicy.documentTypeName() + \"\\n\"\n+ return \"* `has_in_\" + self.safeAttributeName + \"( \" + self.singularName + \" )`: bool\\n * `\" + self.singularName + \"`: \" + self.typePolicy.documentTypeName() + \"\\n\"\n \n class ListCapacityWithModifier( ListCapacity ):\n def __init__( self, attributeModifiers ):\n@@ -75,9 +74,9 @@ def _modifyAttributes( self, obj, attributes ):\n return attributes\n \n class ElementCreatable( ListCapacityWithModifier ):\n- def __init__( self, mandatoryParameters, optionalParameters, attributeModifiers = {} ):\n+ def __init__( self, parameters = NoParameters(), attributeModifiers = {} ):\n ListCapacityWithModifier.__init__( self, attributeModifiers )\n- self.__argumentsChecker = ArgumentsChecker( mandatoryParameters, optionalParameters )\n+ self.__argumentsChecker = parameters\n \n def apply( self, cls ):\n cls._addMethod( \"create_\" + self.singularName, self.__execute )\n@@ -100,9 +99,9 @@ def autoDocument( self ):\n return \"* `create_\" + self.singularName + \"(\" + self.__argumentsChecker.documentParameters() + \")`: \" + self.typePolicy.documentTypeName() + \"\\n\"\n \n class ElementGetable( ListCapacityWithModifier ):\n- def __init__( self, mandatoryParameters, optionalParameters, attributeModifiers = {} ):\n+ def __init__( self, parameters = NoParameters(), attributeModifiers = {} ):\n ListCapacityWithModifier.__init__( self, attributeModifiers )\n- self.__argumentsChecker = ArgumentsChecker( mandatoryParameters, optionalParameters )\n+ self.__argumentsChecker = parameters\n \n def apply( self, cls ):\n cls._addMethod( \"get_\" + self.singularName, self.__execute )\n@@ -156,9 +155,9 @@ def autoDocument( self ):\n return \"* `remove_from_\" + self.safeAttributeName + \"( \" + self.singularName + \", ... )`\\n * `\" + self.singularName + \"`: \" + self.typePolicy.documentTypeName() + \"\\n\"\n \n class ListGetable( ListCapacityWithModifier ):\n- def __init__( self, mandatoryParameters, optionalParameters, attributeModifiers = {} ):\n+ def __init__( self, parameters = NoParameters(), attributeModifiers = {} ):\n ListCapacityWithModifier.__init__( self, attributeModifiers )\n- self.__argumentsChecker = ArgumentsChecker( mandatoryParameters, optionalParameters )\n+ self.__argumentsChecker = parameters\n \n def apply( self, cls ):\n cls._addMethod( \"get_\" + self.safeAttributeName, self.__execute )","changes":15,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/TypePolicies.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a3be28756101370fbc689eec3a7825c4c385a6c9/github/ObjectCapacities/TypePolicies.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a3be28756101370fbc689eec3a7825c4c385a6c9/github/ObjectCapacities/TypePolicies.py","additions":0,"status":"added","changes":0,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/GithubObject/__init__.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/__init__.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/GithubObject/__init__.py","additions":1,"status":"added","patch":"@@ -0,0 +1 @@\n+from GithubObject import *","changes":1,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Hook.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Hook.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Hook.py","additions":16,"status":"added","patch":"@@ -0,0 +1,16 @@\n+from GithubObject import *\n+\n+def __testHook( hook ):\n+ hook._github._statusRequest( \"POST\", hook._baseUrl() + \"/test\", None, None )\n+Hook = GithubObject(\n+ \"Hook\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/hooks/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"updated_at\", \"created_at\", \"name\", \"events\", \"active\", \"config\",\n+ \"id\", \"last_response\",\n+ \"_repo\",\n+ ),\n+ Editable( Parameters( [ \"name\", \"config\" ], [ \"events\", \"add_events\", \"remove_events\", \"active\" ] ) ),\n+ Deletable(),\n+ SeveralAttributePolicies( [ MethodFromCallable( \"test\", Parameters( [], [] ), __testHook, SimpleTypePolicy( None ) ) ], \"Testing\" )\n+)","changes":16,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Issue.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Issue.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Issue.py","additions":37,"status":"added","patch":"@@ -0,0 +1,37 @@\n+from NamedUser import *\n+from Milestone import *\n+from Label import *\n+from IssueComment import *\n+from IssueEvent import *\n+\n+__modifyAttributesForObjectsReferingReferedRepo = { \"_repo\": lambda obj: obj._repo }\n+\n+Issue = GithubObject(\n+ \"Issue\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/issues/\" + str( obj.number ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"html_url\", \"number\", \"state\", \"title\", \"body\", \"labels\",\n+ \"comments\", \"closed_at\", \"created_at\", \"updated_at\", \"id\", \"closed_by\",\n+ \"pull_request\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ InternalObjectAttribute( \"assignee\", NamedUser ),\n+ InternalObjectAttribute( \"milestone\", Milestone ),\n+ Editable( Parameters( [], [ \"title\", \"body\", \"assignee\", \"state\", \"milestone\", \"labels\" ] ) ),\n+ ExternalListOfObjects( \"labels\", \"label\", Label,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ SeveralElementsAddable(),\n+ ListSetable(),\n+ ListDeletable(),\n+ ElementRemovable(),\n+ ),\n+ ExternalListOfObjects( \"comments\", \"comment\", IssueComment,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ElementCreatable( Parameters( [ \"body\" ], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ),\n+ ExternalListOfObjects( \"events\", \"event\", IssueEvent,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo )\n+ ),\n+)","changes":37,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/IssueComment.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/IssueComment.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/IssueComment.py","additions":13,"status":"added","patch":"@@ -0,0 +1,13 @@\n+from NamedUser import *\n+\n+IssueComment = GithubObject(\n+ \"IssueComment\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/issues/comments/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"body\", \"created_at\", \"updated_at\", \"id\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ Editable( Parameters( [ \"body\" ], [] ) ),\n+ Deletable(),\n+)","changes":13,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/IssueEvent.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/IssueEvent.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/IssueEvent.py","additions":11,"status":"added","patch":"@@ -0,0 +1,11 @@\n+from NamedUser import *\n+\n+IssueEvent = GithubObject(\n+ \"IssueEvent\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/issues/events/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"id\", \"url\", \"created_at\", \"issue\", \"event\", \"commit_id\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"actor\", NamedUser ),\n+)","changes":11,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Label.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Label.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Label.py","additions":15,"status":"added","patch":"@@ -0,0 +1,15 @@\n+import urllib\n+\n+from GithubObject import *\n+\n+Label = GithubObject(\n+ \"Label\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/labels/\" + obj._identity ),\n+ Identity( lambda obj: urllib.quote( obj.name ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"name\", \"color\",\n+ \"_repo\",\n+ ),\n+ Editable( Parameters( [ \"name\", \"color\" ], [] ) ),\n+ Deletable(),\n+)","changes":15,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Milestone.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Milestone.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Milestone.py","additions":20,"status":"added","patch":"@@ -0,0 +1,20 @@\n+from NamedUser import *\n+from Label import *\n+\n+__modifyAttributesForObjectsReferingReferedRepo = { \"_repo\": lambda obj: obj._repo }\n+\n+Milestone = GithubObject(\n+ \"Milestone\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/milestones/\" + str( obj.number ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"number\", \"state\", \"title\", \"description\", \"open_issues\",\n+ \"closed_issues\", \"created_at\", \"due_on\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"creator\", NamedUser ),\n+ Editable( Parameters( [ \"title\" ], [ \"state\", \"description\", \"due_on\" ] ) ),\n+ Deletable(),\n+ ExternalListOfObjects( \"labels\", \"label\", Label,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo )\n+ ),\n+)","changes":20,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/NamedUser.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/NamedUser.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/NamedUser.py","additions":30,"status":"added","patch":"@@ -0,0 +1,30 @@\n+from GithubObject import *\n+\n+NamedUser = GithubObject(\n+ \"NamedUser\",\n+ BaseUrl( lambda obj: \"/users/\" + obj.login ),\n+ Identity( lambda obj: obj.login ),\n+ InternalSimpleAttributes(\n+ \"login\", \"id\", \"avatar_url\", \"gravatar_id\", \"url\", \"name\", \"company\",\n+ \"blog\", \"location\", \"email\", \"hireable\", \"bio\", \"public_repos\",\n+ \"public_gists\", \"followers\", \"following\", \"html_url\", \"created_at\",\n+ \"type\",\n+ # Only in Repository.get_contributors()\n+ \"contributions\",\n+ # Seen only by user herself\n+ \"disk_usage\", \"collaborators\", \"plan\", \"total_private_repos\",\n+ \"owned_private_repos\", \"private_gists\",\n+ ),\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"followers\", \"follower\", NamedUser,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"following\", \"following\", NamedUser,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)","changes":30,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/NamedUser_complete.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/NamedUser_complete.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/NamedUser_complete.py","additions":65,"status":"added","patch":"@@ -0,0 +1,65 @@\n+from NamedUser import *\n+\n+from Organization import *\n+from Event import *\n+from Repository import *\n+from Gist import *\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"orgs\", \"org\", Organization,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"events\", \"event\", Event,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+\n+def __getPublicEvents( user ):\n+ return [\n+ Event( user._github, attributes, lazy = True )\n+ for attributes\n+ in user._github._dataRequest( \"GET\", user._baseUrl() + \"/events/public\", None, None )\n+ ]\n+\n+NamedUser._addAttributePolicy(\n+ MethodFromCallable( \"get_public_events\", Parameters( [], [] ), __getPublicEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"received_events\", \"received_event\", Event,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+\n+def __getPublicReceivedEvents( user ):\n+ return [\n+ Event( user._github, attributes, lazy = True )\n+ for attributes\n+ in user._github._dataRequest( \"GET\", user._baseUrl() + \"/received_events/public\", None, None )\n+ ]\n+\n+NamedUser._addAttributePolicy(\n+ MethodFromCallable( \"get_public_received_events\", Parameters( [], [] ), __getPublicReceivedEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"repos\", \"repo\", Repository,\n+ ListGetable( Parameters( [], [ \"type\" ] ) ),\n+ ElementGetable( Parameters( [ \"name\" ], [] ), { \"owner\" : lambda user: { \"login\": user.login } } )\n+ )\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"watched\", \"watched\", Repository,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+\n+NamedUser._addAttributePolicy(\n+ ExternalListOfObjects( \"gists\", \"gist\", Gist,\n+ ListGetable( Parameters( [], [] ) ),\n+ )\n+)","changes":65,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Organization.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Organization.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Organization.py","additions":27,"status":"added","patch":"@@ -0,0 +1,27 @@\n+from NamedUser import *\n+\n+Organization = GithubObject(\n+ \"Organization\",\n+ BaseUrl( lambda obj: \"/orgs/\" + obj.login ),\n+ Identity( lambda obj: obj.login ),\n+ InternalSimpleAttributes(\n+ \"login\", \"id\", \"url\", \"avatar_url\", \"name\", \"company\", \"blog\",\n+ \"location\", \"email\", \"public_repos\", \"public_gists\", \"followers\",\n+ \"following\", \"html_url\", \"created_at\", \"type\", \"gravatar_id\",\n+ # Seen only by owners\n+ \"disk_usage\", \"collaborators\", \"billing_email\", \"plan\", \"private_gists\",\n+ \"total_private_repos\", \"owned_private_repos\",\n+ ),\n+ Editable( Parameters( [], [ \"billing_email\", \"blog\", \"company\", \"email\", \"location\", \"name\" ] ) ),\n+ ExternalListOfObjects( \"public_members\", \"public_member\", NamedUser,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementAddable(),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+ ExternalListOfObjects( \"members\", \"member\", NamedUser,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+)","changes":27,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Organization_complete.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Organization_complete.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Organization_complete.py","additions":34,"status":"added","patch":"@@ -0,0 +1,34 @@\n+from Organization import *\n+\n+from Repository import *\n+from Team import *\n+from Event import *\n+\n+Organization._addAttributePolicy(\n+ ExternalListOfObjects( \"repos\", \"repo\", Repository,\n+ ListGetable( Parameters( [], [ \"type\" ] ) ),\n+ ElementGetable( Parameters( [ \"name\" ], [] ), { \"owner\" : lambda user: { \"login\": user.login } } ),\n+ ElementCreatable( Parameters( [ \"name\" ], [ \"description\", \"homepage\", \"private\", \"has_issues\", \"has_wiki\", \"has_downloads\", \"team_id\", ] ) )\n+ )\n+)\n+\n+def __createForkForOrg( org, repo ):\n+ assert isinstance( repo, Repository )\n+ return Repository( org._github, org._github._dataRequest( \"POST\", repo._baseUrl() + \"/forks\", { \"org\": org.login }, None ), lazy = True )\n+\n+Organization._addAttributePolicy(\n+ SeveralAttributePolicies( [ MethodFromCallable( \"create_fork\", Parameters( [ \"repo\" ], [] ), __createForkForOrg, ObjectTypePolicy( Repository ) ) ], \"Forking\" )\n+)\n+\n+Organization._addAttributePolicy(\n+ ExternalListOfObjects( \"teams\", \"team\", Team,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementCreatable( Parameters( [ \"name\" ], [ \"repo_names\", \"permission\" ] ) )\n+ )\n+)\n+\n+Organization._addAttributePolicy(\n+ ExternalListOfObjects( \"events\", \"event\", Event,\n+ ListGetable( Parameters( [], [] ) )\n+ ),\n+)","changes":34,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/PullRequest.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/PullRequest.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/PullRequest.py","additions":40,"status":"added","patch":"@@ -0,0 +1,40 @@\n+from NamedUser import *\n+from Commit import *\n+from PullRequestFile import *\n+from PullRequestComment import *\n+\n+__modifyAttributesForObjectsReferingReferedRepo = { \"_repo\": lambda obj: obj._repo }\n+\n+def __pullRequestIsMerged( r ):\n+ return r._github._statusRequest( \"GET\", r._baseUrl() + \"/merge\", None, None ) == 204\n+\n+def __mergePullRequest( r, **data ):\n+ r._github._statusRequest( \"PUT\", r._baseUrl() + \"/merge\", None, data )\n+\n+PullRequest = GithubObject(\n+ \"PullRequest\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/pulls/\" + str( obj.number ) ),\n+ InternalSimpleAttributes(\n+ \"id\", \"url\", \"html_url\", \"diff_url\", \"patch_url\", \"issue_url\", \"number\",\n+ \"state\", \"title\", \"body\", \"created_at\", \"updated_at\", \"closed_at\",\n+ \"merged_at\", \"_links\", \"merged\", \"mergeable\", \"comments\", \"commits\",\n+ \"additions\", \"deletions\", \"changed_files\", \"head\", \"base\", \"merged_by\",\n+ \"review_comments\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ Editable( Parameters( [], [ \"title\", \"body\", \"state\" ] ) ),\n+ ExternalListOfObjects( \"commits\", \"commit\", Commit,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ),\n+ ExternalListOfObjects( \"files\", \"file\", PullRequestFile,\n+ ListGetable( Parameters( [], [] ) ),\n+ ),\n+ ExternalListOfObjects( \"comments\", \"comment\", PullRequestComment,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ElementCreatable( Alternative( Parameters( [ \"body\", \"commit_id\", \"path\", \"position\" ], [] ), Parameters( [ \"body\", \"in_reply_to\" ], [] ) ), __modifyAttributesForObjectsReferingReferedRepo ),\n+ ),\n+ MethodFromCallable( \"is_merged\", Parameters( [], [] ), __pullRequestIsMerged, SimpleTypePolicy( \"bool\" ) ),\n+ MethodFromCallable( \"merge\", Parameters( [], [ \"commit_message\" ] ), __mergePullRequest, SimpleTypePolicy( None ) ),\n+)","changes":40,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/PullRequestComment.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/PullRequestComment.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/PullRequestComment.py","additions":14,"status":"added","patch":"@@ -0,0 +1,14 @@\n+from NamedUser import *\n+\n+PullRequestComment = GithubObject(\n+ \"PullRequestComment\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/pulls/comments/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"id\", \"body\", \"path\", \"position\", \"commit_id\",\n+ \"created_at\", \"updated_at\", \"html_url\", \"line\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"user\", NamedUser ),\n+ Editable( Parameters( [ \"body\" ], [] ) ),\n+ Deletable(),\n+)","changes":14,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/PullRequestFile.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/PullRequestFile.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/PullRequestFile.py","additions":9,"status":"added","patch":"@@ -0,0 +1,9 @@\n+from GithubObject import *\n+\n+PullRequestFile = GithubObject(\n+ \"PullRequestFile\",\n+ InternalSimpleAttributes(\n+ \"sha\", \"filename\", \"status\", \"additions\", \"deletions\", \"changes\",\n+ \"blob_url\", \"raw_url\", \"patch\",\n+ ),\n+)","changes":9,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Repository.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Repository.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Repository.py","additions":143,"status":"added","patch":"@@ -0,0 +1,143 @@\n+from NamedUser import *\n+from IssueEvent import *\n+from RepositoryKey import *\n+from Hook import *\n+from GitBlob import *\n+from GitCommit import *\n+from GitRef import *\n+from GitTag import *\n+from GitTree import *\n+from Label import *\n+from Milestone import *\n+from Issue import *\n+from Download import *\n+from CommitComment import *\n+from Commit import *\n+from Tag import *\n+from Branch import *\n+from PullRequest import *\n+\n+__modifyAttributesForObjectsReferingRepo = { \"_repo\": lambda repo: repo }\n+\n+def __compare( repo, base, head ):\n+ return repo._github._dataRequest( \"GET\", repo._baseUrl() + \"/compare/\" + base + \"...\" + head, None, None )\n+\n+Repository = GithubObject(\n+ \"Repository\",\n+ BaseUrl( lambda obj: \"/repos/\" + obj.owner.login + \"/\" + obj.name ),\n+ Identity( lambda obj: obj.owner.login + \"/\" + obj.name ),\n+ InternalSimpleAttributes(\n+ \"url\", \"html_url\", \"clone_url\", \"git_url\", \"ssh_url\", \"svn_url\",\n+ \"name\", \"description\", \"homepage\", \"language\", \"private\",\n+ \"fork\", \"forks\", \"watchers\", \"size\", \"master_branch\", \"open_issues\",\n+ \"pushed_at\", \"created_at\", \"organization\",\n+ \"has_issues\", \"has_wiki\", \"has_downloads\",\n+ # Not documented\n+ \"mirror_url\", \"updated_at\", \"id\",\n+ ),\n+ InternalObjectAttribute( \"owner\", NamedUser ),\n+)\n+Repository._addAttributePolicy( InternalObjectAttribute( \"parent\", Repository ) )\n+Repository._addAttributePolicy( InternalObjectAttribute( \"source\", Repository ) )\n+Repository._addAttributePolicy(\n+ ExternalListOfObjects( \"issues/events\", \"issues_event\", IssueEvent,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ )\n+)\n+Repository._addAttributePolicy(\n+ ExternalListOfObjects( \"forks\", \"fork\", Repository,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+Repository._addAttributePolicy(\n+ Editable( Parameters( [ \"name\" ], [ \"description\", \"homepage\", \"public\", \"has_issues\", \"has_wiki\", \"has_downloads\" ] ) )\n+)\n+Repository._addAttributePolicy(\n+ SeveralAttributePolicies( [ ExternalSimpleAttribute( \"languages\", \"dictionary of strings to integers\" ) ], \"Languages\" )\n+)\n+Repository._addAttributePolicy( SeveralAttributePolicies( [\n+ ExternalListOfObjects( \"hooks\", \"hook\", Hook,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"name\", \"config\" ], [ \"events\", \"active\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"keys\", \"key\", RepositoryKey,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"title\", \"key\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"collaborators\", \"collaborator\", NamedUser,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementAddable(),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+ ExternalListOfObjects( \"contributors\", \"contributor\", NamedUser,\n+ ListGetable( Parameters( [], [] ) )\n+ ),\n+ ExternalListOfObjects( \"watchers\", \"watcher\", NamedUser,\n+ ListGetable( Parameters( [], [] ) )\n+ ),\n+ ExternalListOfObjects( \"git/refs\", \"git_ref\", GitRef,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"ref\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"ref\", \"sha\" ], [] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"git/commits\", \"git_commit\", GitCommit,\n+ ElementGetable( Parameters( [ \"sha\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"message\", \"tree\", \"parents\" ], [ \"author\", \"committer\" ] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"git/trees\", \"git_tree\", GitTree,\n+ ElementGetable( Parameters( [ \"sha\" ], [ \"recursive\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"tree\" ], [ \"base_tree\" ] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"git/blobs\", \"git_blob\", GitBlob,\n+ ElementGetable( Parameters( [ \"sha\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"content\", \"encoding\" ], [] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"git/tags\", \"git_tag\", GitTag,\n+ ElementGetable( Parameters( [ \"sha\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"tag\", \"message\", \"object\", \"type\" ], [ \"tagger\" ] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"labels\", \"label\", Label,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"name\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"name\", \"color\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"milestones\", \"milestone\", Milestone,\n+ ListGetable( Parameters( [], [ \"state\", \"sort\", \"direction\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"number\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"title\" ], [ \"state\", \"description\", \"due_on\" ] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"issues\", \"issue\", Issue,\n+ ListGetable( Parameters( [], [ \"milestone\", \"state\", \"assignee\", \"mentioned\", \"labels\", \"sort\", \"direction\", \"since\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"number\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"title\" ], [ \"body\", \"assignee\", \"milestone\", \"labels\", ] ), __modifyAttributesForObjectsReferingRepo )\n+ ),\n+ ExternalListOfObjects( \"downloads\", \"download\", Download,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Parameters( [ \"name\", \"size\" ], [ \"description\", \"content_type\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"comments\", \"comment\", CommitComment,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"id\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"commits\", \"commit\", Commit,\n+ ListGetable( Parameters( [], [ \"sha\", \"path\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"sha\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"tags\", \"tag\", Tag,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"branches\", \"branch\", Branch,\n+ ListGetable( Parameters( [], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ ExternalListOfObjects( \"pulls\", \"pull\", PullRequest,\n+ ListGetable( Parameters( [], [ \"state\" ] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementGetable( Parameters( [ \"number\" ], [] ), __modifyAttributesForObjectsReferingRepo ),\n+ ElementCreatable( Alternative( Parameters( [ \"title\", \"body\", \"base\", \"head\" ], [] ), Parameters( [ \"issue\", \"base\", \"head\" ], [] ) ), __modifyAttributesForObjectsReferingRepo ),\n+ ),\n+ MethodFromCallable( \"compare\", Parameters( [ \"base\", \"head\" ], [] ), __compare, SimpleTypePolicy( None ) ),\n+] ) )","changes":143,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/RepositoryKey.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/RepositoryKey.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/RepositoryKey.py","additions":12,"status":"added","patch":"@@ -0,0 +1,12 @@\n+from GithubObject import *\n+\n+RepositoryKey = GithubObject(\n+ \"RepositoryKey\",\n+ BaseUrl( lambda obj: obj._repo._baseUrl() + \"/keys/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"id\", \"title\", \"key\",\n+ \"_repo\",\n+ ),\n+ Editable( Parameters( [ \"title\", \"key\" ], [] ) ),\n+ Deletable()\n+)","changes":12,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Repository_complete.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Repository_complete.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Repository_complete.py","additions":27,"status":"added","patch":"@@ -0,0 +1,27 @@\n+from Repository import *\n+\n+from Team import *\n+from Event import *\n+\n+Repository._addAttributePolicy(\n+ ExternalListOfObjects( \"teams\", \"team\", Team,\n+ ListGetable( Parameters( [], [] ) )\n+ )\n+)\n+\n+Repository._addAttributePolicy(\n+ ExternalListOfObjects( \"events\", \"event\", Event,\n+ ListGetable( Parameters( [], [] ) )\n+ ),\n+)\n+\n+def __getNetworkEvents( repo ):\n+ return [\n+ Event( repo._github, attributes, lazy = True )\n+ for attributes\n+ in repo._github._dataRequest( \"GET\", \"/networks/\" + repo.owner.login + \"/\" + repo.name + \"/events\", None, None )\n+ ]\n+\n+Repository._addAttributePolicy(\n+ MethodFromCallable( \"get_network_events\", Parameters( [], [] ), __getNetworkEvents, SimpleTypePolicy( \"list of `Event`\" ) )\n+)","changes":27,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Tag.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Tag.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Tag.py","additions":10,"status":"added","patch":"@@ -0,0 +1,10 @@\n+from Commit import *\n+\n+Tag = GithubObject(\n+ \"Tag\",\n+ InternalSimpleAttributes(\n+ \"name\", \"zipball_url\", \"tarball_url\",\n+ \"_repo\",\n+ ),\n+ InternalObjectAttribute( \"commit\", Commit )\n+)","changes":10,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/Team.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Team.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/Team.py","additions":25,"status":"added","patch":"@@ -0,0 +1,25 @@\n+from NamedUser import *\n+from Repository import *\n+\n+Team = GithubObject(\n+ \"Team\",\n+ BaseUrl( lambda obj: \"/teams/\" + str( obj.id ) ),\n+ Identity( lambda obj: str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"name\", \"id\", \"permission\", \"members_count\", \"repos_count\",\n+ ),\n+ Editable( Parameters( [ \"name\" ], [ \"permission\" ] ) ),\n+ Deletable(),\n+ ExternalListOfObjects( \"members\", \"member\", NamedUser,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementAddable(),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+ ExternalListOfObjects( \"repos\", \"repo\", Repository,\n+ ListGetable( Parameters( [], [] ) ),\n+ ElementAddable(),\n+ ElementRemovable(),\n+ ElementHasable()\n+ ),\n+)","changes":25,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/UserKey.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/UserKey.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/UserKey.py","additions":11,"status":"added","patch":"@@ -0,0 +1,11 @@\n+from GithubObject import *\n+\n+UserKey = GithubObject(\n+ \"UserKey\",\n+ BaseUrl( lambda obj: \"/user/keys/\" + str( obj.id ) ),\n+ InternalSimpleAttributes(\n+ \"url\", \"id\", \"title\", \"key\",\n+ ),\n+ Editable( Parameters( [], [ \"title\", \"key\" ] ) ),\n+ Deletable(),\n+)","changes":11,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/GithubObjects/__init__.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/__init__.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/GithubObjects/__init__.py","additions":13,"status":"added","patch":"@@ -0,0 +1,13 @@\n+from AuthenticatedUser import *\n+\n+# This strange import pattern works around cyclic dependencies\n+from NamedUser import *\n+from NamedUser_complete import *\n+\n+from Organization import *\n+from Organization_complete import *\n+\n+from Repository import *\n+from Repository_complete import *\n+\n+from Gist import *","changes":13,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/ObjectCapacities/__init__.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a3be28756101370fbc689eec3a7825c4c385a6c9/github/ObjectCapacities/__init__.py","deletions":0,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a3be28756101370fbc689eec3a7825c4c385a6c9/github/ObjectCapacities/__init__.py","additions":0,"status":"removed","changes":0,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"},{"filename":"github/Requester.py","blob_url":"https://github.com/jacquev6/PyGithub/blob/a0cc821c1beada4aa9ca0d5218664c5372720936/github/Requester.py","deletions":3,"raw_url":"https://github.com/jacquev6/PyGithub/raw/a0cc821c1beada4aa9ca0d5218664c5372720936/github/Requester.py","additions":0,"status":"modified","patch":"@@ -1,5 +1,3 @@\n-### @todo Add a copyright and license notice in all files\n-\n import httplib\n import json\n import base64\n@@ -36,7 +34,6 @@ def dataRequest( self, verb, url, parameters, input ):\n def __statusCheckedRequest( self, verb, url, parameters, input ):\n status, headers, output = self.__rawRequest( verb, url, parameters, input )\n if status < 200 or status >= 300:\n- ### @todo Be specific (403 is not the same thing as 404!)\n raise UnknownGithubObject()\n return headers, output\n ","changes":3,"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"}],"patch_url":"https://github.com/jacquev6/PyGithub/compare/master...develop.patch","url":"https://api.github.com/repos/jacquev6/PyGithub/compare/master...develop","commits":[{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a3be28756101370fbc689eec3a7825c4c385a6c9","sha":"a3be28756101370fbc689eec3a7825c4c385a6c9"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/58b4396aa0e7cb72911b75cb035798143a06e0ee","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-12T23:30:43-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/202a101db80163b980fff6ae1ccebd8e985778e1","sha":"202a101db80163b980fff6ae1ccebd8e985778e1"},"message":"Remove todos, add them as github.com issues","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/58b4396aa0e7cb72911b75cb035798143a06e0ee","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-12T23:30:43-07:00"}},"sha":"58b4396aa0e7cb72911b75cb035798143a06e0ee"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/58b4396aa0e7cb72911b75cb035798143a06e0ee","sha":"58b4396aa0e7cb72911b75cb035798143a06e0ee"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/378558f6cac6183b4a7100c0ce5eaad1cfff6717","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:14:56-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/980bf3f66b3cbeec03a37db5263cbbc883b54681","sha":"980bf3f66b3cbeec03a37db5263cbbc883b54681"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/378558f6cac6183b4a7100c0ce5eaad1cfff6717","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:14:56-07:00"}},"sha":"378558f6cac6183b4a7100c0ce5eaad1cfff6717"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/378558f6cac6183b4a7100c0ce5eaad1cfff6717","sha":"378558f6cac6183b4a7100c0ce5eaad1cfff6717"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/3e8169c0a98ce1e2c6a32ae1256ae0f735065df5","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:18:28-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/e9bced97139773dcfbbefc6a4091e4458ee1fe23","sha":"e9bced97139773dcfbbefc6a4091e4458ee1fe23"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/3e8169c0a98ce1e2c6a32ae1256ae0f735065df5","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:18:28-07:00"}},"sha":"3e8169c0a98ce1e2c6a32ae1256ae0f735065df5"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/3e8169c0a98ce1e2c6a32ae1256ae0f735065df5","sha":"3e8169c0a98ce1e2c6a32ae1256ae0f735065df5"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/b56aa09011378b014221f86dffb8304957a9e6bd","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:26:13-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/5683cd9759e70f12141fb579a729e1c5d72256ad","sha":"5683cd9759e70f12141fb579a729e1c5d72256ad"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/b56aa09011378b014221f86dffb8304957a9e6bd","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:26:13-07:00"}},"sha":"b56aa09011378b014221f86dffb8304957a9e6bd"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/b56aa09011378b014221f86dffb8304957a9e6bd","sha":"b56aa09011378b014221f86dffb8304957a9e6bd"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/0d9fc99a4b5d1ec6473c9c81c888917c132ffa65","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:35:28-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/df0cf9d9d9db0389f96d0448baaea45528983486","sha":"df0cf9d9d9db0389f96d0448baaea45528983486"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/0d9fc99a4b5d1ec6473c9c81c888917c132ffa65","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:35:28-07:00"}},"sha":"0d9fc99a4b5d1ec6473c9c81c888917c132ffa65"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/0d9fc99a4b5d1ec6473c9c81c888917c132ffa65","sha":"0d9fc99a4b5d1ec6473c9c81c888917c132ffa65"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/5d1add448e0b0b1dadb8c6094a9e5e19b255f67e","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:36:15-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/c220b5fe6708feed4646e08f66cbd191d3074318","sha":"c220b5fe6708feed4646e08f66cbd191d3074318"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/5d1add448e0b0b1dadb8c6094a9e5e19b255f67e","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:36:15-07:00"}},"sha":"5d1add448e0b0b1dadb8c6094a9e5e19b255f67e"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/5d1add448e0b0b1dadb8c6094a9e5e19b255f67e","sha":"5d1add448e0b0b1dadb8c6094a9e5e19b255f67e"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/4a5cf98e7f959f1b5d9af484760c25cd27d9180d","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:37:23-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/27c76f8754af9bfc0bd2f285a9034a2a267f3f6b","sha":"27c76f8754af9bfc0bd2f285a9034a2a267f3f6b"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/4a5cf98e7f959f1b5d9af484760c25cd27d9180d","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:37:23-07:00"}},"sha":"4a5cf98e7f959f1b5d9af484760c25cd27d9180d"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/4a5cf98e7f959f1b5d9af484760c25cd27d9180d","sha":"4a5cf98e7f959f1b5d9af484760c25cd27d9180d"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/e648e5aeb5edc1fbf83e9d37d2a3cb57c005019a","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:40:44-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/860a56be6edc3335b3f1d7c05163ce6c88d86d97","sha":"860a56be6edc3335b3f1d7c05163ce6c88d86d97"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/e648e5aeb5edc1fbf83e9d37d2a3cb57c005019a","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:40:44-07:00"}},"sha":"e648e5aeb5edc1fbf83e9d37d2a3cb57c005019a"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/e648e5aeb5edc1fbf83e9d37d2a3cb57c005019a","sha":"e648e5aeb5edc1fbf83e9d37d2a3cb57c005019a"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/cab9d71603e127bdd1f600a759dccea1781fa1ab","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:42:20-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/3a4160a7930e855165662640ab9ac0b284930602","sha":"3a4160a7930e855165662640ab9ac0b284930602"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/cab9d71603e127bdd1f600a759dccea1781fa1ab","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:42:20-07:00"}},"sha":"cab9d71603e127bdd1f600a759dccea1781fa1ab"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/cab9d71603e127bdd1f600a759dccea1781fa1ab","sha":"cab9d71603e127bdd1f600a759dccea1781fa1ab"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/fb722625dddb9a32f75190723f7da12683b7c4b2","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:59:48-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/bd492ae3de0943fa17cf91c3840361855b38814d","sha":"bd492ae3de0943fa17cf91c3840361855b38814d"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/fb722625dddb9a32f75190723f7da12683b7c4b2","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T11:59:48-07:00"}},"sha":"fb722625dddb9a32f75190723f7da12683b7c4b2"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/fb722625dddb9a32f75190723f7da12683b7c4b2","sha":"fb722625dddb9a32f75190723f7da12683b7c4b2"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/231926207709ceaa61e87b64e34e17d85adecd9c","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:01:07-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/54f99bd97e9223673a5947bdb8bd8dcafd9878d8","sha":"54f99bd97e9223673a5947bdb8bd8dcafd9878d8"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/231926207709ceaa61e87b64e34e17d85adecd9c","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:01:07-07:00"}},"sha":"231926207709ceaa61e87b64e34e17d85adecd9c"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/231926207709ceaa61e87b64e34e17d85adecd9c","sha":"231926207709ceaa61e87b64e34e17d85adecd9c"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/99564c1cab139d1e4678f5f83f60d26f1210db7e","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:04:42-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/2824e5fdbb2811bb05eab1a225a9e64d4974b880","sha":"2824e5fdbb2811bb05eab1a225a9e64d4974b880"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/99564c1cab139d1e4678f5f83f60d26f1210db7e","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:04:42-07:00"}},"sha":"99564c1cab139d1e4678f5f83f60d26f1210db7e"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/99564c1cab139d1e4678f5f83f60d26f1210db7e","sha":"99564c1cab139d1e4678f5f83f60d26f1210db7e"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/1c95ddfa09ec0aa1f07ee9ad50a77be1dd74b55e","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:11:37-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/26e23b86645628acb3f1764e8d81a213b9f3443f","sha":"26e23b86645628acb3f1764e8d81a213b9f3443f"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/1c95ddfa09ec0aa1f07ee9ad50a77be1dd74b55e","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:11:37-07:00"}},"sha":"1c95ddfa09ec0aa1f07ee9ad50a77be1dd74b55e"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/1c95ddfa09ec0aa1f07ee9ad50a77be1dd74b55e","sha":"1c95ddfa09ec0aa1f07ee9ad50a77be1dd74b55e"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/877dde23e140bbf038f9a2d8f0f07b4e3a965c61","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:13:04-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/307d8dc221f2a6097a520636f60238621e966f58","sha":"307d8dc221f2a6097a520636f60238621e966f58"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/877dde23e140bbf038f9a2d8f0f07b4e3a965c61","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:13:04-07:00"}},"sha":"877dde23e140bbf038f9a2d8f0f07b4e3a965c61"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/877dde23e140bbf038f9a2d8f0f07b4e3a965c61","sha":"877dde23e140bbf038f9a2d8f0f07b4e3a965c61"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/960db1d5c9853e9f5fbbc9237c2c166ceef1f080","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:18:02-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/b16b7a597ab3aa1876b1797426367114d4421642","sha":"b16b7a597ab3aa1876b1797426367114d4421642"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/960db1d5c9853e9f5fbbc9237c2c166ceef1f080","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:18:02-07:00"}},"sha":"960db1d5c9853e9f5fbbc9237c2c166ceef1f080"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/960db1d5c9853e9f5fbbc9237c2c166ceef1f080","sha":"960db1d5c9853e9f5fbbc9237c2c166ceef1f080"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/504047e218e6b34a3828ccc408431634f17b9504","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:19:54-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/64a98d6a5045debec1ab928d49989c7f0f666be2","sha":"64a98d6a5045debec1ab928d49989c7f0f666be2"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/504047e218e6b34a3828ccc408431634f17b9504","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:19:54-07:00"}},"sha":"504047e218e6b34a3828ccc408431634f17b9504"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/504047e218e6b34a3828ccc408431634f17b9504","sha":"504047e218e6b34a3828ccc408431634f17b9504"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/75e72ffa3066693291f7da03070666e8f885097a","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:23:47-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/ef565463ba492225543f538ddc2ac31d93301a3e","sha":"ef565463ba492225543f538ddc2ac31d93301a3e"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/75e72ffa3066693291f7da03070666e8f885097a","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:23:47-07:00"}},"sha":"75e72ffa3066693291f7da03070666e8f885097a"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/75e72ffa3066693291f7da03070666e8f885097a","sha":"75e72ffa3066693291f7da03070666e8f885097a"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/767d75a580279e457f9bc52bc308a17ff8ea0509","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:24:39-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/9541dc30b6f7eb32a0eeb99661974efc2bc2b2e0","sha":"9541dc30b6f7eb32a0eeb99661974efc2bc2b2e0"},"message":"Spliting GithubObjects.py","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/767d75a580279e457f9bc52bc308a17ff8ea0509","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:24:39-07:00"}},"sha":"767d75a580279e457f9bc52bc308a17ff8ea0509"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/58b4396aa0e7cb72911b75cb035798143a06e0ee","sha":"58b4396aa0e7cb72911b75cb035798143a06e0ee"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/767d75a580279e457f9bc52bc308a17ff8ea0509","sha":"767d75a580279e457f9bc52bc308a17ff8ea0509"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/50ac55b25ceba555b84709839f80447552450697","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:26:20-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/9541dc30b6f7eb32a0eeb99661974efc2bc2b2e0","sha":"9541dc30b6f7eb32a0eeb99661974efc2bc2b2e0"},"message":"Merge branch 'topic/SplitGithubObjects' into develop","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/50ac55b25ceba555b84709839f80447552450697","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-13T12:26:20-07:00"}},"sha":"50ac55b25ceba555b84709839f80447552450697"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/50ac55b25ceba555b84709839f80447552450697","sha":"50ac55b25ceba555b84709839f80447552450697"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/85eef756353e13efcb24c726320cd2617c2a7bd8","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T14:31:32-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/b0eadbf0e94e5098c5e4324f92e1546b3fe97ae2","sha":"b0eadbf0e94e5098c5e4324f92e1546b3fe97ae2"},"message":"Move classes around","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/85eef756353e13efcb24c726320cd2617c2a7bd8","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T14:56:08-07:00"}},"sha":"85eef756353e13efcb24c726320cd2617c2a7bd8"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/85eef756353e13efcb24c726320cd2617c2a7bd8","sha":"85eef756353e13efcb24c726320cd2617c2a7bd8"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/69cc298fd159f19eb204dd09f17d31dc4abc3d41","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T14:55:06-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/a1d3e1193b5eeb668b0a9e4ec0286adeee2bfc98","sha":"a1d3e1193b5eeb668b0a9e4ec0286adeee2bfc98"},"message":"Make sure only three class definitions are distributed","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/69cc298fd159f19eb204dd09f17d31dc4abc3d41","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T14:56:12-07:00"}},"sha":"69cc298fd159f19eb204dd09f17d31dc4abc3d41"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/69cc298fd159f19eb204dd09f17d31dc4abc3d41","sha":"69cc298fd159f19eb204dd09f17d31dc4abc3d41"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/8213df1d744f251aa8e52229643a9f6ce352f3c0","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:07:21-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/e2cd74e9c3cf6ff69da96f8fad7e1e4120db56fb","sha":"e2cd74e9c3cf6ff69da96f8fad7e1e4120db56fb"},"message":"Simplify internal imports","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/8213df1d744f251aa8e52229643a9f6ce352f3c0","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:07:21-07:00"}},"sha":"8213df1d744f251aa8e52229643a9f6ce352f3c0"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/8213df1d744f251aa8e52229643a9f6ce352f3c0","sha":"8213df1d744f251aa8e52229643a9f6ce352f3c0"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/32ed0ebc377efbed5b482b3d49ff54bf1715d55a","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:13:37-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/4836c31ec1b75e4b0145bae29cda338318b583a0","sha":"4836c31ec1b75e4b0145bae29cda338318b583a0"},"message":"Move GithubObject","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/32ed0ebc377efbed5b482b3d49ff54bf1715d55a","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:13:37-07:00"}},"sha":"32ed0ebc377efbed5b482b3d49ff54bf1715d55a"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/32ed0ebc377efbed5b482b3d49ff54bf1715d55a","sha":"32ed0ebc377efbed5b482b3d49ff54bf1715d55a"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/6e421e9e85e12008758870bc046bc2c6120af72a","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:24:49-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/5e1db9b1002e45cbcde2f17253233b3cf50496ad","sha":"5e1db9b1002e45cbcde2f17253233b3cf50496ad"},"message":"Separate the three distributed classes","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/6e421e9e85e12008758870bc046bc2c6120af72a","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:24:49-07:00"}},"sha":"6e421e9e85e12008758870bc046bc2c6120af72a"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/50ac55b25ceba555b84709839f80447552450697","sha":"50ac55b25ceba555b84709839f80447552450697"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/6e421e9e85e12008758870bc046bc2c6120af72a","sha":"6e421e9e85e12008758870bc046bc2c6120af72a"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/0909fec395bb1f97e2580d6a029cfc64b352aff9","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:26:35-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/5e1db9b1002e45cbcde2f17253233b3cf50496ad","sha":"5e1db9b1002e45cbcde2f17253233b3cf50496ad"},"message":"Merge branch 'topic/MoveGithubObjects' into develop","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/0909fec395bb1f97e2580d6a029cfc64b352aff9","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-14T15:26:35-07:00"}},"sha":"0909fec395bb1f97e2580d6a029cfc64b352aff9"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/0909fec395bb1f97e2580d6a029cfc64b352aff9","sha":"0909fec395bb1f97e2580d6a029cfc64b352aff9"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/d24cf209ddd1758188c5f35344f76df818d09a46","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-15T23:53:33-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/1737a3881dfa9524447b8841f441efa4d57b2e57","sha":"1737a3881dfa9524447b8841f441efa4d57b2e57"},"message":"Be explicit about argumentChecker object","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/d24cf209ddd1758188c5f35344f76df818d09a46","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-15T23:53:33-07:00"}},"sha":"d24cf209ddd1758188c5f35344f76df818d09a46"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/d24cf209ddd1758188c5f35344f76df818d09a46","sha":"d24cf209ddd1758188c5f35344f76df818d09a46"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a85de99ea5b5e7b38bd68e076d09c49207b8687e","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-15T23:54:19-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/45ab612f324d934efd24d37ec8a1a829ae9c819c","sha":"45ab612f324d934efd24d37ec8a1a829ae9c819c"},"message":"dos2unix","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/a85de99ea5b5e7b38bd68e076d09c49207b8687e","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-15T23:54:19-07:00"}},"sha":"a85de99ea5b5e7b38bd68e076d09c49207b8687e"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a85de99ea5b5e7b38bd68e076d09c49207b8687e","sha":"a85de99ea5b5e7b38bd68e076d09c49207b8687e"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a475d685d8ae709095d09094ea0962ac182d33f0","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-16T00:11:07-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/929c7826e4116ccc48860420e96448c0b2dba912","sha":"929c7826e4116ccc48860420e96448c0b2dba912"},"message":"On the way to alternative inputs. Still needs unit and integration testing","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/a475d685d8ae709095d09094ea0962ac182d33f0","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-16T00:11:07-07:00"}},"sha":"a475d685d8ae709095d09094ea0962ac182d33f0"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a475d685d8ae709095d09094ea0962ac182d33f0","sha":"a475d685d8ae709095d09094ea0962ac182d33f0"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/6af2bfd0d46bc0eeb8c37b85c7b3003e0e4ae297","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-16T23:42:54-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/a07df55d4e61292bfd4d344221a744bdeb837cef","sha":"a07df55d4e61292bfd4d344221a744bdeb837cef"},"message":"Optional parameter for Repository.create_git_tree","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/6af2bfd0d46bc0eeb8c37b85c7b3003e0e4ae297","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-16T23:42:54-07:00"}},"sha":"6af2bfd0d46bc0eeb8c37b85c7b3003e0e4ae297"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/6af2bfd0d46bc0eeb8c37b85c7b3003e0e4ae297","sha":"6af2bfd0d46bc0eeb8c37b85c7b3003e0e4ae297"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/1d2b27824d20612066d84be42d6691c66bb18ef4","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-18T23:32:34-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/eece2904086e172c103a3f6c72d72577947d69af","sha":"eece2904086e172c103a3f6c72d72577947d69af"},"message":"Repository.get_git_tree with 'recursive'","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/1d2b27824d20612066d84be42d6691c66bb18ef4","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-18T23:32:34-07:00"}},"sha":"1d2b27824d20612066d84be42d6691c66bb18ef4"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/1d2b27824d20612066d84be42d6691c66bb18ef4","sha":"1d2b27824d20612066d84be42d6691c66bb18ef4"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/bd39726f7cf86ea7ffb33b5718241fdab5fc8f53","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-18T23:40:52-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/e0cf809423855e97a1c418cd0574aceaea673e7c","sha":"e0cf809423855e97a1c418cd0574aceaea673e7c"},"message":"AuthenticatedUser.get_issues","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/bd39726f7cf86ea7ffb33b5718241fdab5fc8f53","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-18T23:40:52-07:00"}},"sha":"bd39726f7cf86ea7ffb33b5718241fdab5fc8f53"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/bd39726f7cf86ea7ffb33b5718241fdab5fc8f53","sha":"bd39726f7cf86ea7ffb33b5718241fdab5fc8f53"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/1095d304b7fab3818dcb4c42093c8c56d3ac05e4","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-19T09:28:03-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/62acfc5826055bea7623e35982768674fb672bff","sha":"62acfc5826055bea7623e35982768674fb672bff"},"message":"Repository.compare","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/1095d304b7fab3818dcb4c42093c8c56d3ac05e4","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-19T09:28:03-07:00"}},"sha":"1095d304b7fab3818dcb4c42093c8c56d3ac05e4"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/0909fec395bb1f97e2580d6a029cfc64b352aff9","sha":"0909fec395bb1f97e2580d6a029cfc64b352aff9"},{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/1095d304b7fab3818dcb4c42093c8c56d3ac05e4","sha":"1095d304b7fab3818dcb4c42093c8c56d3ac05e4"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/c1440bdf20bfeb62684c6d1779448719dce9d2df","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-19T09:36:28-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/62acfc5826055bea7623e35982768674fb672bff","sha":"62acfc5826055bea7623e35982768674fb672bff"},"message":"Merge branch 'topic/CompleteImplementation' into develop","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/c1440bdf20bfeb62684c6d1779448719dce9d2df","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-19T09:36:28-07:00"}},"sha":"c1440bdf20bfeb62684c6d1779448719dce9d2df"},{"author":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"parents":[{"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/c1440bdf20bfeb62684c6d1779448719dce9d2df","sha":"c1440bdf20bfeb62684c6d1779448719dce9d2df"}],"committer":{"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","url":"https://api.github.com/users/jacquev6","id":327146,"login":"jacquev6"},"url":"https://api.github.com/repos/jacquev6/PyGithub/commits/a0cc821c1beada4aa9ca0d5218664c5372720936","commit":{"author":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-19T09:45:20-07:00"},"tree":{"url":"https://api.github.com/repos/jacquev6/PyGithub/git/trees/df309b8e8b9359740688f6ecdec4e16a946eedac","sha":"df309b8e8b9359740688f6ecdec4e16a946eedac"},"message":"Fix documentation","url":"https://api.github.com/repos/jacquev6/PyGithub/git/commits/a0cc821c1beada4aa9ca0d5218664c5372720936","committer":{"email":"vincent@vincent-jacques.net","name":"Vincent Jacques","date":"2012-03-19T09:45:20-07:00"}},"sha":"a0cc821c1beada4aa9ca0d5218664c5372720936"}]} - diff --git a/test/ReplayDataForIntegrationTest/RepositoryDetails.txt b/test/ReplayDataForIntegrationTest/RepositoryDetails.txt deleted file mode 100644 index 04c0eae1..00000000 --- a/test/ReplayDataForIntegrationTest/RepositoryDetails.txt +++ /dev/null @@ -1,80 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4882'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f0d8023bae676f24fdfcd057184854c0"'), ('date', 'Sun, 04 Mar 2012 09:37:57 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17432,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"html_url":"https://github.com/jacquev6","blog":"http://vincent-jacques.net","hireable":false,"login":"jacquev6","bio":"","total_private_repos":5,"plan":{"name":"micro","private_repos":5,"collaborators":1,"space":614400},"public_gists":1,"location":"Paris, France","company":"Criteo","owned_private_repos":5,"private_gists":2,"url":"https://api.github.com/users/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","collaborators":0,"id":327146,"public_repos":16,"followers":12,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"} - -GET /repos/jacquev6/PyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4881'), ('content-length', '1070'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"9f762fdd9c5adb992c908c65efafb586"'), ('date', 'Sun, 04 Mar 2012 09:37:58 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":5,"pushed_at":"2012-03-03T15:18:59Z","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T16:22:44Z","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/PyGithub","mirror_url":null,"language":"Python","private":false,"git_url":"git://github.com/jacquev6/PyGithub.git","size":592,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/PyGithub","html_url":"https://github.com/jacquev6/PyGithub","created_at":"2012-02-25T12:53:47Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"name":"PyGithub","clone_url":"https://github.com/jacquev6/PyGithub.git","id":3544490,"ssh_url":"git@github.com:jacquev6/PyGithub.git","description":"Python library (soon) implementing the full Github API v3","open_issues":1} - -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4880'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"0ca99fa33b134c442e369399e25488e8"'), ('date', 'Sun, 04 Mar 2012 09:37:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"owned_private_repos":5,"disk_usage":17432,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"login":"jacquev6","blog":"http://vincent-jacques.net","public_gists":1,"private_gists":2,"plan":{"private_repos":5,"collaborators":1,"name":"micro","space":614400},"location":"Paris, France","hireable":false,"company":"Criteo","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","collaborators":0,"bio":"","url":"https://api.github.com/users/jacquev6","html_url":"https://github.com/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","total_private_repos":5,"id":327146,"public_repos":16,"followers":12} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4879'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a2d51d73a945c27e43db0473e90a9a31"'), ('date', 'Sun, 04 Mar 2012 09:37:59 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","html_url":"https://github.com/jacquev6/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-04T09:21:39Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png"},"name":"TestPyGithub","clone_url":"https://github.com/jacquev6/TestPyGithub.git","mirror_url":null,"id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /repos/jacquev6/PyGithub/branches {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4878'), ('content-length', '955'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"98260aa4faf337ae9e7949bd219c0c11"'), ('date', 'Sun, 04 Mar 2012 09:38:00 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"commit":{"sha":"fec821278a83849e399aa66d7893e8c5e115960a","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/fec821278a83849e399aa66d7893e8c5e115960a"},"name":"topic/AddHooksAndEvents"},{"commit":{"sha":"6cf0a59c74c8d4531fc83c2d247f0a1ad6885b1c","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/6cf0a59c74c8d4531fc83c2d247f0a1ad6885b1c"},"name":"topic/Todos"},{"commit":{"sha":"636e6112deb72277b3bffcc3303cd7e8a7431a5d","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/636e6112deb72277b3bffcc3303cd7e8a7431a5d"},"name":"master"},{"commit":{"sha":"6cf0a59c74c8d4531fc83c2d247f0a1ad6885b1c","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/6cf0a59c74c8d4531fc83c2d247f0a1ad6885b1c"},"name":"topic/RefactorGithubObjects"},{"commit":{"sha":"5c17275366efd3bc9414958d661d9a017022be6b","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/5c17275366efd3bc9414958d661d9a017022be6b"},"name":"develop"}] - -GET /repos/jacquev6/TestPyGithub/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4877'), ('content-length', '3492'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"3c76a352d7afa4de2e354423d44f4b56"'), ('date', 'Sun, 04 Mar 2012 09:38:01 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"updated_at":"2012-03-04T08:32:17Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","created_at":"2012-03-04T08:32:17Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","path":"ReadMe.md","line":1,"id":1039835,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:33:53Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","created_at":"2012-03-04T08:33:53Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839","path":"ReadMe.md","line":1,"id":1039839,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:34:49Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","created_at":"2012-03-04T08:34:49Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842","path":null,"line":null,"id":1039842,"body":"Comment created by PyGithub"},{"updated_at":"2012-03-04T08:34:50Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","created_at":"2012-03-04T08:34:50Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843","path":"ReadMe.md","line":1,"id":1039843,"body":"Comment also created by PyGithub"},{"updated_at":"2012-03-04T08:35:59Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","created_at":"2012-03-04T08:35:55Z","position":null,"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","path":null,"line":null,"id":1039845,"body":"Comment edited by PyGithub"}] - -GET /repos/jacquev6/TestPyGithub/comments {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4876'), ('content-length', '3492'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"81513a996ab1cc55a82938fcbc27c377"'), ('date', 'Sun, 04 Mar 2012 09:38:01 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","updated_at":"2012-03-04T08:32:17Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","created_at":"2012-03-04T08:32:17Z","position":null,"path":"ReadMe.md","line":1,"id":1039835,"body":"Comment also created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039839","updated_at":"2012-03-04T08:33:53Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039839","created_at":"2012-03-04T08:33:53Z","position":null,"path":"ReadMe.md","line":1,"id":1039839,"body":"Comment also created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039842","updated_at":"2012-03-04T08:34:49Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039842","created_at":"2012-03-04T08:34:49Z","position":null,"path":null,"line":null,"id":1039842,"body":"Comment created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039843","updated_at":"2012-03-04T08:34:50Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039843","created_at":"2012-03-04T08:34:50Z","position":null,"path":"ReadMe.md","line":1,"id":1039843,"body":"Comment also created by PyGithub"},{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039845","updated_at":"2012-03-04T08:35:59Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039845","created_at":"2012-03-04T08:35:55Z","position":null,"path":null,"line":null,"id":1039845,"body":"Comment edited by PyGithub"}] - -GET /repos/jacquev6/TestPyGithub/comments/1039835 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4875'), ('content-length', '701'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"6d25b0fb0b6341d015573c53d680766c"'), ('date', 'Sun, 04 Mar 2012 09:38:02 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"html_url":"https://github.com/jacquev6/TestPyGithub/commit/6967a1f8f4#commitcomment-1039835","updated_at":"2012-03-04T08:32:17Z","user":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","id":327146},"commit_id":"6967a1f8f46e71d93ded1f0dd7c75ddb86d27dea","url":"https://api.github.com/repos/jacquev6/TestPyGithub/comments/1039835","created_at":"2012-03-04T08:32:17Z","position":null,"path":"ReadMe.md","line":1,"id":1039835,"body":"Comment also created by PyGithub"} - -GET /repos/jacquev6/PyGithub/contributors {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4874'), ('content-length', '318'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1a685a9a8362fe37803439ec6654f627"'), ('date', 'Sun, 04 Mar 2012 09:38:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","contributions":231,"id":327146}] - -GET /repos/jacquev6/TestPyGithub/forks {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4873'), ('content-length', '1119'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"42c7540fa072d0c4ad2c1b27f2b01f84"'), ('date', 'Sun, 04 Mar 2012 09:38:03 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":1,"pushed_at":"2012-03-03T08:57:40Z","html_url":"https://github.com/BeaverSoftware/TestPyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"mirror_url":null,"has_issues":false,"master_branch":null,"updated_at":"2012-03-03T08:57:40Z","git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","forks":0,"fork":true,"svn_url":"https://github.com/BeaverSoftware/TestPyGithub","language":null,"private":false,"size":112,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","created_at":"2012-03-03T07:53:19Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"TestPyGithub","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","id":3609352,"ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":0}] - -GET /repos/jacquev6/PyGithub/languages {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4872'), ('content-length', '28'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"718453330e1cd9cb1a36d9083d11c824"'), ('date', 'Sun, 04 Mar 2012 09:38:04 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"Shell":673,"Python":83281} - -GET /repos/jacquev6/PyGithub/tags {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4871'), ('content-length', '937'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e0c718e8bdc34f85042cd16ef706daa4"'), ('date', 'Sun, 04 Mar 2012 09:38:04 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"zipball_url":"https://github.com/jacquev6/PyGithub/zipball/v0.3","name":"v0.3","commit":{"sha":"636e6112deb72277b3bffcc3303cd7e8a7431a5d","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/636e6112deb72277b3bffcc3303cd7e8a7431a5d"},"tarball_url":"https://github.com/jacquev6/PyGithub/tarball/v0.3"},{"zipball_url":"https://github.com/jacquev6/PyGithub/zipball/v0.1","name":"v0.1","commit":{"sha":"dbdcda3591980de42617814f792969126e6402c3","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/dbdcda3591980de42617814f792969126e6402c3"},"tarball_url":"https://github.com/jacquev6/PyGithub/tarball/v0.1"},{"zipball_url":"https://github.com/jacquev6/PyGithub/zipball/v0.2","name":"v0.2","commit":{"sha":"9f0b05161f9d1962b9156e6c91fc04f382028240","url":"https://api.github.com/repos/jacquev6/PyGithub/commits/9f0b05161f9d1962b9156e6c91fc04f382028240"},"tarball_url":"https://github.com/jacquev6/PyGithub/tarball/v0.2"}] - -GET /repos/jacquev6/PyGithub/watchers {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4870'), ('content-length', '1467'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"731d27a21f53749e364272c7c64afa0e"'), ('date', 'Sun, 04 Mar 2012 09:38:05 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"gravatar_id":"5341a13bb6125ce7c97cf91b35209e16","avatar_url":"https://secure.gravatar.com/avatar/5341a13bb6125ce7c97cf91b35209e16?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"Stals","url":"https://api.github.com/users/Stals","id":472089},{"gravatar_id":"96e24bccec8300005c74a0d9cd096149","avatar_url":"https://secure.gravatar.com/avatar/96e24bccec8300005c74a0d9cd096149?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"att14","url":"https://api.github.com/users/att14","id":780132},{"gravatar_id":"1b4be24fa7e62eb508ca448da99e43d4","avatar_url":"https://secure.gravatar.com/avatar/1b4be24fa7e62eb508ca448da99e43d4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jardon-u","url":"https://api.github.com/users/jardon-u","id":994192},{"gravatar_id":"16a037e47cf9737e037169cbd1d2bed6","avatar_url":"https://secure.gravatar.com/avatar/16a037e47cf9737e037169cbd1d2bed6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"huxley","url":"https://api.github.com/users/huxley","id":839},{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146}] - -GET /orgs/BeaverSoftware {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4869'), ('content-length', '714'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7b0ba80a3a0dc1e37012cad9e4d2b3ca"'), ('date', 'Sun, 04 Mar 2012 09:38:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":0,"type":"Organization","public_gists":0,"following":0,"html_url":"https://github.com/BeaverSoftware","login":"BeaverSoftware","private_gists":0,"avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","collaborators":0,"billing_email":"BeaverSoftware@vincent-jacques.net","plan":{"name":"free","private_repos":0,"space":307200},"location":"Paris, France","company":null,"blog":null,"url":"https://api.github.com/orgs/BeaverSoftware","total_private_repos":0,"created_at":"2012-02-09T19:20:12Z","name":null,"email":null,"public_repos":2,"id":1424031,"owned_private_repos":0,"followers":0} - -GET /repos/BeaverSoftware/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4868'), ('content-length', '3597'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"f6a867ba35c6910d4b2c7d4684d0b529"'), ('date', 'Sun, 04 Mar 2012 09:38:06 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"organization":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"source":{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":2,"updated_at":"2012-03-04T09:21:39Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","size":84,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","created_at":"2012-03-03T07:41:19Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","open_issues":16,"id":3609314,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T07:43:16Z"},"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":false,"master_branch":null,"parent":{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":2,"updated_at":"2012-03-04T09:21:39Z","svn_url":"https://github.com/jacquev6/TestPyGithub","fork":false,"git_url":"git://github.com/jacquev6/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/jacquev6/TestPyGithub","size":84,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","ssh_url":"git@github.com:jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","created_at":"2012-03-03T07:41:19Z","owner":{"login":"jacquev6","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","id":327146},"name":"TestPyGithub","open_issues":16,"id":3609314,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T07:43:16Z"},"forks":0,"updated_at":"2012-03-03T08:57:40Z","svn_url":"https://github.com/BeaverSoftware/TestPyGithub","fork":true,"git_url":"git://github.com/BeaverSoftware/TestPyGithub.git","has_wiki":true,"language":null,"private":false,"html_url":"https://github.com/BeaverSoftware/TestPyGithub","size":112,"url":"https://api.github.com/repos/BeaverSoftware/TestPyGithub","ssh_url":"git@github.com:BeaverSoftware/TestPyGithub.git","clone_url":"https://github.com/BeaverSoftware/TestPyGithub.git","created_at":"2012-03-03T07:53:19Z","owner":{"login":"BeaverSoftware","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","url":"https://api.github.com/users/BeaverSoftware","gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","id":1424031},"name":"TestPyGithub","open_issues":0,"id":3609352,"description":"Guinea-pig for PyGithub testing","watchers":1,"pushed_at":"2012-03-03T08:57:40Z"} - -GET /repos/BeaverSoftware/TestPyGithub/teams {} null -200 -[('status', '200 OK'), ('content-length', '76'), ('x-ratelimit-remaining', '4867'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"7da40fa4ce70d77b7cddef012cf24607"'), ('date', 'Sun, 04 Mar 2012 09:38:07 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"url":"https://api.github.com/teams/141496","name":"Members","id":141496}] - diff --git a/test/ReplayDataForIntegrationTest/RepositoryKeys.txt b/test/ReplayDataForIntegrationTest/RepositoryKeys.txt deleted file mode 100644 index 0fa34785..00000000 --- a/test/ReplayDataForIntegrationTest/RepositoryKeys.txt +++ /dev/null @@ -1,50 +0,0 @@ -GET /user {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4836'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"404f762e873c553dc34e1b3926d75205"'), ('date', 'Sun, 04 Mar 2012 09:11:16 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"disk_usage":17432,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","following":24,"avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","public_gists":1,"public_repos":16,"hireable":false,"private_gists":2,"plan":{"private_repos":5,"collaborators":1,"name":"micro","space":614400},"blog":"http://vincent-jacques.net","location":"Paris, France","bio":"","collaborators":0,"company":"Criteo","total_private_repos":5,"url":"https://api.github.com/users/jacquev6","html_url":"https://github.com/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","owned_private_repos":5,"id":327146,"followers":12} - -GET /repos/jacquev6/TestPyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4835'), ('content-length', '1067'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"14e49b73728e4b2ba7978b158e43208c"'), ('date', 'Sun, 04 Mar 2012 09:11:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"watchers":1,"pushed_at":"2012-03-03T07:43:16Z","homepage":"http://vincent-jacques.net/PyGithub","mirror_url":null,"has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-03T07:53:19Z","forks":2,"fork":false,"svn_url":"https://github.com/jacquev6/TestPyGithub","language":null,"private":false,"size":84,"has_wiki":true,"url":"https://api.github.com/repos/jacquev6/TestPyGithub","html_url":"https://github.com/jacquev6/TestPyGithub","created_at":"2012-03-03T07:41:19Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"TestPyGithub","git_url":"git://github.com/jacquev6/TestPyGithub.git","clone_url":"https://github.com/jacquev6/TestPyGithub.git","id":3609314,"ssh_url":"git@github.com:jacquev6/TestPyGithub.git","description":"Guinea-pig for PyGithub testing","open_issues":16} - -GET /repos/jacquev6/TestPyGithub/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4834'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:11:17 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - -POST /repos/jacquev6/TestPyGithub/keys {} {"key": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==", "title": "Key created by PyGithub"} -201 -[('status', '201 Created'), ('content-length', '486'), ('x-ratelimit-remaining', '4833'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1696af2ea0b4279b6187ba82dcf6b15d"'), ('date', 'Sun, 04 Mar 2012 09:11:18 GMT'), ('content-type', 'application/json; charset=utf-8'), ('location', 'https://api.github.com/user/keys/2106802')] -{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","url":"https://api.github.com/user/keys/2106802","id":2106802,"title":"Key created by PyGithub"} - -GET /repos/jacquev6/TestPyGithub/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4832'), ('content-length', '488'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a571b30463f7c50a703c6b4e2a370749"'), ('date', 'Sun, 04 Mar 2012 09:11:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"Key created by PyGithub","url":"https://api.github.com/user/keys/2106802","id":2106802}] - -PATCH /repos/jacquev6/TestPyGithub/keys/2106802 {} {"key": "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==", "title": "Key edited by PyGithub"} -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4831'), ('content-length', '485'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"c6876fab221906eff51538e53112307c"'), ('date', 'Sun, 04 Mar 2012 09:11:19 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"Key edited by PyGithub","url":"https://api.github.com/user/keys/2106802","id":2106802} - -GET /repos/jacquev6/TestPyGithub/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4830'), ('content-length', '487'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"22fb7e12bf848434495fbca3124ffe96"'), ('date', 'Sun, 04 Mar 2012 09:11:20 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","title":"Key edited by PyGithub","url":"https://api.github.com/user/keys/2106802","id":2106802}] - -GET /repos/jacquev6/TestPyGithub/keys/2106802 {} null -200 -[('status', '200 OK'), ('content-length', '485'), ('x-ratelimit-remaining', '4829'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"48a67937f59e585ad8836092da10e881"'), ('date', 'Sun, 04 Mar 2012 09:11:21 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvborozfBBn2a+JETqPekTWZ1tmYjpfH9wTKFPLjIXQmxXjNye6HVgvi+iMI436RdoLsPEFDe3cjrQ6CJa7KzhRJKNTPh5EZbKI13CXfMGr7V1i3tOokXBFSRQKnDx2dj2hnswqxGUk2jXpgC/KA1q71yqnL45CBlWr50eDpwUIEPnmqSrPpRV/0ZGwIlh4o7+6HwPUF9aBhWj945WSkjZubR4UFWlDZl7ROafpkJHs2cQzaxtmBOZnu6dzmfyro0zJsvhZKD2K6d9eKgpDeKaw5rWr6FeOZPd4xyDaV1gctG0YEui8uuSPKhpcykgREUAFf+vmOKt+yXnOoq8P4vIQ==","url":"https://api.github.com/user/keys/2106802","id":2106802,"title":"Key edited by PyGithub"} - -DELETE /repos/jacquev6/TestPyGithub/keys/2106802 {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4828'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Sun, 04 Mar 2012 09:11:21 GMT')] - - -GET /repos/jacquev6/TestPyGithub/keys {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4827'), ('content-length', '2'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d751713988987e9331980363e24189ce"'), ('date', 'Sun, 04 Mar 2012 09:11:22 GMT'), ('content-type', 'application/json; charset=utf-8')] -[] - diff --git a/test/ReplayDataForIntegrationTest/Watch.txt b/test/ReplayDataForIntegrationTest/Watch.txt deleted file mode 100644 index f294af3d..00000000 --- a/test/ReplayDataForIntegrationTest/Watch.txt +++ /dev/null @@ -1,35 +0,0 @@ -GET /users/jacquev6 {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4870'), ('content-length', '801'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"fe79e5be4238ba969cd6085e1cf1ec34"'), ('date', 'Thu, 01 Mar 2012 20:39:30 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"total_private_repos":5,"disk_usage":17252,"type":"User","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","public_gists":4,"following":24,"html_url":"https://github.com/jacquev6","login":"jacquev6","owned_private_repos":5,"hireable":false,"private_gists":2,"collaborators":0,"bio":"","plan":{"private_repos":5,"collaborators":1,"name":"micro","space":614400},"location":"Paris, France","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","company":"Criteo","blog":"http://vincent-jacques.net","url":"https://api.github.com/users/jacquev6","created_at":"2010-07-09T06:10:06Z","name":"Vincent Jacques","email":"vincent@vincent-jacques.net","id":327146,"public_repos":15,"followers":12} - -GET /repos/jacquev6/PyGithub {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4869'), ('content-length', '1070'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"1abf08d542de3b2e4ce3a501b018010f"'), ('date', 'Thu, 01 Mar 2012 20:39:31 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"mirror_url":null,"has_downloads":true,"homepage":"http://vincent-jacques.net/PyGithub","has_issues":true,"master_branch":null,"forks":1,"updated_at":"2012-03-01T18:03:20Z","svn_url":"https://github.com/jacquev6/PyGithub","fork":false,"has_wiki":false,"language":"Python","private":false,"html_url":"https://github.com/jacquev6/PyGithub","size":496,"url":"https://api.github.com/repos/jacquev6/PyGithub","ssh_url":"git@github.com:jacquev6/PyGithub.git","clone_url":"https://github.com/jacquev6/PyGithub.git","created_at":"2012-02-25T12:53:47Z","owner":{"login":"jacquev6","url":"https://api.github.com/users/jacquev6","gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","id":327146},"name":"PyGithub","git_url":"git://github.com/jacquev6/PyGithub.git","open_issues":1,"id":3544490,"description":"Python library (soon) implementing the full Github API v3","watchers":6,"pushed_at":"2012-03-01T18:03:20Z"} - -DELETE /user/watched/jacquev6/PyGithub {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4868'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:39:31 GMT')] - - -GET /user/watched/jacquev6/PyGithub {} null -404 -[('status', '404 Not Found'), ('x-ratelimit-remaining', '4867'), ('content-length', '23'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"e66a7a6c91e2c26803f3f49feb7a883f"'), ('date', 'Thu, 01 Mar 2012 20:39:32 GMT'), ('content-type', 'application/json; charset=utf-8')] -{"message":"Not Found"} - -PUT /user/watched/jacquev6/PyGithub {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4866'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:39:33 GMT')] - - -GET /user/watched/jacquev6/PyGithub {} null -204 -[('status', '204 No Content'), ('x-ratelimit-remaining', '4865'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"d41d8cd98f00b204e9800998ecf8427e"'), ('date', 'Thu, 01 Mar 2012 20:39:33 GMT')] - - -GET /user/watched {} null -200 -[('status', '200 OK'), ('x-ratelimit-remaining', '4864'), ('content-length', '27331'), ('server', 'nginx/1.0.12'), ('connection', 'keep-alive'), ('x-ratelimit-limit', '5000'), ('etag', '"a5776d9118c4ea1e8c498a1997622bcb"'), ('date', 'Thu, 01 Mar 2012 20:39:34 GMT'), ('content-type', 'application/json; charset=utf-8')] -[{"watchers":1806,"pushed_at":"2012-02-29T05:39:00Z","html_url":"https://github.com/git/git","homepage":"http://git-scm.com","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-03-01T18:40:42Z","forks":387,"fork":false,"svn_url":"https://github.com/git/git","language":"C","private":false,"size":7972,"has_wiki":false,"url":"https://api.github.com/repos/git/git","created_at":"2008-07-23T14:21:26Z","owner":{"gravatar_id":"99e03910f53f19037807f6d2a605114f","avatar_url":"https://secure.gravatar.com/avatar/99e03910f53f19037807f6d2a605114f?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"git","url":"https://api.github.com/users/git","id":18133},"name":"git","clone_url":"https://github.com/git/git.git","mirror_url":null,"id":36502,"git_url":"git://github.com/git/git.git","ssh_url":"git@github.com:git/git.git","description":"Git Source Code Mirror","open_issues":5},{"watchers":45,"pushed_at":"2009-12-15T14:07:47Z","html_url":"https://github.com/moriyoshi/boost.php","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-27T13:14:47Z","forks":4,"fork":false,"svn_url":"https://github.com/moriyoshi/boost.php","language":"C++","private":false,"size":1331,"has_wiki":true,"url":"https://api.github.com/repos/moriyoshi/boost.php","created_at":"2008-07-29T03:01:07Z","owner":{"gravatar_id":"0bafbcfcfb548a4ac20406692858f68b","avatar_url":"https://secure.gravatar.com/avatar/0bafbcfcfb548a4ac20406692858f68b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"moriyoshi","url":"https://api.github.com/users/moriyoshi","id":18755},"name":"boost.php","clone_url":"https://github.com/moriyoshi/boost.php.git","mirror_url":null,"id":38097,"git_url":"git://github.com/moriyoshi/boost.php.git","ssh_url":"git@github.com:moriyoshi/boost.php.git","description":"Create your PHP extension in C++, in a minute.","open_issues":0},{"watchers":1897,"pushed_at":"2012-02-21T09:01:17Z","html_url":"https://github.com/capistrano/capistrano","homepage":"http://capify.org","has_downloads":false,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T16:50:50Z","forks":178,"fork":true,"svn_url":"https://github.com/capistrano/capistrano","language":"Ruby","private":false,"size":204,"has_wiki":true,"url":"https://api.github.com/repos/capistrano/capistrano","created_at":"2009-02-26T16:14:04Z","owner":{"gravatar_id":"885e1c523b7975c4003de162d8ee8fee","avatar_url":"https://secure.gravatar.com/avatar/885e1c523b7975c4003de162d8ee8fee?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"capistrano","url":"https://api.github.com/users/capistrano","id":58257},"name":"capistrano","clone_url":"https://github.com/capistrano/capistrano.git","mirror_url":null,"id":138312,"git_url":"git://github.com/capistrano/capistrano.git","ssh_url":"git@github.com:capistrano/capistrano.git","description":"Remote multi-server automation tool","open_issues":31},{"watchers":8,"pushed_at":"2010-05-28T07:23:06Z","html_url":"https://github.com/moriyoshi/boost.perl","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2011-10-03T23:45:58Z","forks":0,"fork":false,"svn_url":"https://github.com/moriyoshi/boost.perl","language":"C++","private":false,"size":512,"has_wiki":true,"url":"https://api.github.com/repos/moriyoshi/boost.perl","created_at":"2009-03-30T21:09:12Z","owner":{"gravatar_id":"0bafbcfcfb548a4ac20406692858f68b","avatar_url":"https://secure.gravatar.com/avatar/0bafbcfcfb548a4ac20406692858f68b?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"moriyoshi","url":"https://api.github.com/users/moriyoshi","id":18755},"name":"boost.perl","clone_url":"https://github.com/moriyoshi/boost.perl.git","mirror_url":null,"id":163431,"git_url":"git://github.com/moriyoshi/boost.perl.git","ssh_url":"git@github.com:moriyoshi/boost.perl.git","description":"Still a proof of concept...","open_issues":0},{"watchers":551,"pushed_at":"2011-10-15T13:24:35Z","html_url":"https://github.com/apenwarr/git-subtree","homepage":"","has_downloads":true,"has_issues":false,"master_branch":null,"updated_at":"2012-02-27T09:59:03Z","forks":56,"fork":false,"svn_url":"https://github.com/apenwarr/git-subtree","language":"Shell","private":false,"size":144,"has_wiki":false,"url":"https://api.github.com/repos/apenwarr/git-subtree","created_at":"2009-04-25T04:10:31Z","owner":{"gravatar_id":"918b627daf7d848cd40770ed6cd15233","avatar_url":"https://secure.gravatar.com/avatar/918b627daf7d848cd40770ed6cd15233?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"apenwarr","url":"https://api.github.com/users/apenwarr","id":20592},"name":"git-subtree","clone_url":"https://github.com/apenwarr/git-subtree.git","mirror_url":null,"id":185096,"git_url":"git://github.com/apenwarr/git-subtree.git","ssh_url":"git@github.com:apenwarr/git-subtree.git","description":"An experimental alternative to the git-submodule command. Merges and splits subtrees from your project into subprojects and back.","open_issues":7},{"watchers":140,"pushed_at":"2012-01-11T03:19:07Z","html_url":"https://github.com/cosmin/git-hg","homepage":"http://offbytwo.github.com/git-hg","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-16T11:52:23Z","forks":22,"fork":false,"svn_url":"https://github.com/cosmin/git-hg","language":"Shell","private":false,"size":192,"has_wiki":true,"url":"https://api.github.com/repos/cosmin/git-hg","created_at":"2009-05-14T20:23:01Z","owner":{"gravatar_id":"a8d35490b4016275e5bc3cc6cce8f878","avatar_url":"https://secure.gravatar.com/avatar/a8d35490b4016275e5bc3cc6cce8f878?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"cosmin","url":"https://api.github.com/users/cosmin","id":1358},"name":"git-hg","clone_url":"https://github.com/cosmin/git-hg.git","mirror_url":null,"id":201230,"git_url":"git://github.com/cosmin/git-hg.git","ssh_url":"git@github.com:cosmin/git-hg.git","description":"A git-hg utility for checking out and tracking a mercurial repo.","open_issues":0},{"watchers":7715,"pushed_at":"2012-03-01T17:01:24Z","html_url":"https://github.com/mxcl/homebrew","homepage":"http://mxcl.github.com/homebrew","has_downloads":false,"has_issues":true,"master_branch":"master","updated_at":"2012-03-01T19:09:26Z","forks":3576,"fork":false,"svn_url":"https://github.com/mxcl/homebrew","language":"Ruby","private":false,"size":15612,"has_wiki":true,"url":"https://api.github.com/repos/mxcl/homebrew","created_at":"2009-05-20T19:38:37Z","owner":{"gravatar_id":"25ff3dfe48d3847ecf9971aab99589fb","avatar_url":"https://secure.gravatar.com/avatar/25ff3dfe48d3847ecf9971aab99589fb?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"mxcl","url":"https://api.github.com/users/mxcl","id":58962},"name":"homebrew","clone_url":"https://github.com/mxcl/homebrew.git","mirror_url":null,"id":206084,"git_url":"git://github.com/mxcl/homebrew.git","ssh_url":"git@github.com:mxcl/homebrew.git","description":"The missing package manager for OS X.","open_issues":508},{"watchers":4,"pushed_at":"2010-11-25T02:39:53Z","html_url":"https://github.com/jamis/celtic_knot","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2011-10-12T04:36:53Z","forks":1,"fork":false,"svn_url":"https://github.com/jamis/celtic_knot","language":"Ruby","private":false,"size":1272,"has_wiki":true,"url":"https://api.github.com/repos/jamis/celtic_knot","created_at":"2009-05-24T23:23:10Z","owner":{"gravatar_id":"992fe8c19bbbc27f2b562a9f96efc03d","avatar_url":"https://secure.gravatar.com/avatar/992fe8c19bbbc27f2b562a9f96efc03d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jamis","url":"https://api.github.com/users/jamis","id":1627},"name":"celtic_knot","clone_url":"https://github.com/jamis/celtic_knot.git","mirror_url":null,"id":209230,"git_url":"git://github.com/jamis/celtic_knot.git","ssh_url":"git@github.com:jamis/celtic_knot.git","description":"A library for generating Celtic Knotwork designs from graphs","open_issues":0},{"watchers":47,"pushed_at":"2011-10-28T11:27:34Z","html_url":"https://github.com/jdavisp3/twisted-intro","homepage":"http://krondo.com/blog/?page_id=1327","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-23T20:51:10Z","forks":7,"fork":false,"svn_url":"https://github.com/jdavisp3/twisted-intro","language":"Python","private":false,"size":188,"has_wiki":true,"url":"https://api.github.com/repos/jdavisp3/twisted-intro","created_at":"2009-08-09T17:54:00Z","owner":{"gravatar_id":"fcc237fd34a8e504f7224df0c58cc0b3","avatar_url":"https://secure.gravatar.com/avatar/fcc237fd34a8e504f7224df0c58cc0b3?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jdavisp3","url":"https://api.github.com/users/jdavisp3","id":43582},"name":"twisted-intro","clone_url":"https://github.com/jdavisp3/twisted-intro.git","mirror_url":null,"id":273325,"git_url":"git://github.com/jdavisp3/twisted-intro.git","ssh_url":"git@github.com:jdavisp3/twisted-intro.git","description":"Source files used for an introduction to Twisted","open_issues":0},{"watchers":636,"pushed_at":"2012-02-13T17:39:33Z","html_url":"https://github.com/github/markup","homepage":"","has_downloads":false,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T20:04:40Z","forks":180,"fork":false,"svn_url":"https://github.com/github/markup","language":"Ruby","private":false,"size":348,"has_wiki":false,"url":"https://api.github.com/repos/github/markup","created_at":"2009-10-31T01:02:46Z","owner":{"gravatar_id":"61024896f291303615bcd4f7a0dcfb74","avatar_url":"https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"github","url":"https://api.github.com/users/github","id":9919},"name":"markup","clone_url":"https://github.com/github/markup.git","mirror_url":null,"id":355893,"git_url":"git://github.com/github/markup.git","ssh_url":"git@github.com:github/markup.git","description":"The code we use to render README.your_favorite_markup","open_issues":74},{"watchers":990,"pushed_at":"2012-02-07T20:22:02Z","html_url":"https://github.com/defunkt/hub","homepage":"http://defunkt.io/hub/","has_downloads":false,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T17:38:37Z","forks":74,"fork":false,"svn_url":"https://github.com/defunkt/hub","language":"Ruby","private":false,"size":212,"has_wiki":false,"url":"https://api.github.com/repos/defunkt/hub","created_at":"2009-12-05T22:15:25Z","owner":{"gravatar_id":"b8dbb1987e8e5318584865f880036796","avatar_url":"https://secure.gravatar.com/avatar/b8dbb1987e8e5318584865f880036796?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"defunkt","url":"https://api.github.com/users/defunkt","id":2},"name":"hub","clone_url":"https://github.com/defunkt/hub.git","mirror_url":null,"id":401025,"git_url":"git://github.com/defunkt/hub.git","ssh_url":"git@github.com:defunkt/hub.git","description":"hub introduces git to GitHub","open_issues":11},{"watchers":3491,"pushed_at":"2012-02-14T13:11:04Z","html_url":"https://github.com/nvie/gitflow","homepage":"http://nvie.com/posts/a-successful-git-branching-model/","has_downloads":true,"has_issues":true,"master_branch":"develop","updated_at":"2012-03-01T17:22:33Z","forks":265,"fork":false,"svn_url":"https://github.com/nvie/gitflow","language":"Shell","private":false,"size":4602,"has_wiki":true,"url":"https://api.github.com/repos/nvie/gitflow","created_at":"2010-01-20T23:14:12Z","owner":{"gravatar_id":"c5a7f21b46df698f3db31c37ed0cf55a","avatar_url":"https://secure.gravatar.com/avatar/c5a7f21b46df698f3db31c37ed0cf55a?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"nvie","url":"https://api.github.com/users/nvie","id":83844},"name":"gitflow","clone_url":"https://github.com/nvie/gitflow.git","mirror_url":null,"id":481366,"git_url":"git://github.com/nvie/gitflow.git","ssh_url":"git@github.com:nvie/gitflow.git","description":"Git extensions to provide high-level repository operations for Vincent Driessen's branching model.","open_issues":78},{"watchers":1159,"pushed_at":"2011-10-18T00:40:07Z","html_url":"https://github.com/lg/murder","homepage":"http://twitter.com","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T18:10:21Z","forks":42,"fork":false,"svn_url":"https://github.com/lg/murder","language":"Python","private":false,"size":1228,"has_wiki":true,"url":"https://api.github.com/repos/lg/murder","created_at":"2010-01-21T07:05:36Z","owner":{"gravatar_id":"f2583cecbd75c5999bf65d9eeb6a84f2","avatar_url":"https://secure.gravatar.com/avatar/f2583cecbd75c5999bf65d9eeb6a84f2?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"lg","url":"https://api.github.com/users/lg","id":181018},"name":"murder","clone_url":"https://github.com/lg/murder.git","mirror_url":null,"id":481811,"git_url":"git://github.com/lg/murder.git","ssh_url":"git@github.com:lg/murder.git","description":"Large scale server deploys using BitTorrent and the BitTornado library","open_issues":7},{"watchers":155,"pushed_at":"2012-03-01T20:12:25Z","html_url":"https://github.com/rtyley/agit","homepage":"https://market.android.com/details?id=com.madgag.agit","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T20:12:28Z","forks":27,"fork":false,"svn_url":"https://github.com/rtyley/agit","language":"Java","private":false,"size":184,"has_wiki":true,"url":"https://api.github.com/repos/rtyley/agit","created_at":"2010-08-29T21:45:54Z","owner":{"gravatar_id":"1cdc781dd667a5d4b61340591bf1bef4","avatar_url":"https://secure.gravatar.com/avatar/1cdc781dd667a5d4b61340591bf1bef4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"rtyley","url":"https://api.github.com/users/rtyley","id":52038},"name":"agit","clone_url":"https://github.com/rtyley/agit.git","mirror_url":null,"id":870849,"git_url":"git://github.com/rtyley/agit.git","ssh_url":"git@github.com:rtyley/agit.git","description":"Agit - Git client for Android","open_issues":36},{"watchers":145,"pushed_at":"2011-10-28T07:11:56Z","html_url":"https://github.com/schacon/git-pulls","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T09:39:31Z","forks":18,"fork":false,"svn_url":"https://github.com/schacon/git-pulls","language":"Ruby","private":false,"size":1004,"has_wiki":true,"url":"https://api.github.com/repos/schacon/git-pulls","created_at":"2010-12-27T20:39:24Z","owner":{"gravatar_id":"9375a9529679f1b42b567a640d775e7d","avatar_url":"https://secure.gravatar.com/avatar/9375a9529679f1b42b567a640d775e7d?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"schacon","url":"https://api.github.com/users/schacon","id":70},"name":"git-pulls","clone_url":"https://github.com/schacon/git-pulls.git","mirror_url":null,"id":1201343,"git_url":"git://github.com/schacon/git-pulls.git","ssh_url":"git@github.com:schacon/git-pulls.git","description":"command line tool to facilitate github pull requests","open_issues":10},{"watchers":3,"pushed_at":"2011-04-01T11:33:23Z","html_url":"https://github.com/emesik/django_mathlatex","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2011-11-03T17:46:24Z","forks":1,"fork":false,"svn_url":"https://github.com/emesik/django_mathlatex","language":"Python","private":false,"size":448,"has_wiki":true,"url":"https://api.github.com/repos/emesik/django_mathlatex","created_at":"2011-03-06T22:29:04Z","owner":{"gravatar_id":"0d0c6eda804f912d230df91577e29180","avatar_url":"https://secure.gravatar.com/avatar/0d0c6eda804f912d230df91577e29180?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"emesik","url":"https://api.github.com/users/emesik","id":407107},"name":"django_mathlatex","clone_url":"https://github.com/emesik/django_mathlatex.git","mirror_url":null,"id":1447846,"git_url":"git://github.com/emesik/django_mathlatex.git","ssh_url":"git@github.com:emesik/django_mathlatex.git","description":"Django template tag for rendering math formulas","open_issues":0},{"watchers":408,"pushed_at":"2012-02-08T00:38:52Z","html_url":"https://github.com/aliasaria/scrumblr","homepage":"http://scrumblr.ca","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T16:52:31Z","forks":35,"fork":false,"svn_url":"https://github.com/aliasaria/scrumblr","language":"JavaScript","private":false,"size":132,"has_wiki":true,"url":"https://api.github.com/repos/aliasaria/scrumblr","created_at":"2011-03-10T02:29:38Z","owner":{"gravatar_id":"a08f4e2d6ccccab586b502992c31e2ce","avatar_url":"https://secure.gravatar.com/avatar/a08f4e2d6ccccab586b502992c31e2ce?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"aliasaria","url":"https://api.github.com/users/aliasaria","id":213343},"name":"scrumblr","clone_url":"https://github.com/aliasaria/scrumblr.git","mirror_url":null,"id":1461917,"git_url":"git://github.com/aliasaria/scrumblr.git","ssh_url":"git@github.com:aliasaria/scrumblr.git","description":"Collaborative Online Scrum Tool Using Websockets, Node.js, jQuery, and CSS3","open_issues":11},{"watchers":175,"pushed_at":"2012-02-29T21:46:32Z","html_url":"https://github.com/github/developer.github.com","homepage":"http://developer.github.com","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-29T21:46:33Z","forks":75,"fork":false,"svn_url":"https://github.com/github/developer.github.com","language":"Ruby","private":false,"size":184,"has_wiki":true,"url":"https://api.github.com/repos/github/developer.github.com","created_at":"2011-04-26T19:20:56Z","owner":{"gravatar_id":"61024896f291303615bcd4f7a0dcfb74","avatar_url":"https://secure.gravatar.com/avatar/61024896f291303615bcd4f7a0dcfb74?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"github","url":"https://api.github.com/users/github","id":9919},"name":"developer.github.com","clone_url":"https://github.com/github/developer.github.com.git","mirror_url":null,"id":1666784,"git_url":"git://github.com/github/developer.github.com.git","ssh_url":"git@github.com:github/developer.github.com.git","description":"GitHub API documentation","open_issues":31},{"watchers":19,"pushed_at":"2011-11-22T18:10:52Z","html_url":"https://github.com/ChristopherMacGown/python-github3","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-27T21:59:32Z","forks":11,"fork":false,"svn_url":"https://github.com/ChristopherMacGown/python-github3","language":"Python","private":false,"size":236,"has_wiki":true,"url":"https://api.github.com/repos/ChristopherMacGown/python-github3","created_at":"2011-04-28T17:07:29Z","owner":{"gravatar_id":"4174216c1dc0f223ce608d5a3b66a585","avatar_url":"https://secure.gravatar.com/avatar/4174216c1dc0f223ce608d5a3b66a585?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"ChristopherMacGown","url":"https://api.github.com/users/ChristopherMacGown","id":43081},"name":"python-github3","clone_url":"https://github.com/ChristopherMacGown/python-github3.git","mirror_url":null,"id":1676748,"git_url":"git://github.com/ChristopherMacGown/python-github3.git","ssh_url":"git@github.com:ChristopherMacGown/python-github3.git","description":"Github API v3 library for Python.","open_issues":0},{"watchers":5,"pushed_at":"2012-02-02T09:38:42Z","html_url":"https://github.com/pjkersten/PlantUML","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-06T15:26:40Z","forks":2,"fork":false,"svn_url":"https://github.com/pjkersten/PlantUML","language":"PHP","private":false,"size":124,"has_wiki":true,"url":"https://api.github.com/repos/pjkersten/PlantUML","created_at":"2011-05-06T09:33:38Z","owner":{"gravatar_id":"6e33170f0701d1d1d8dd57c8f95368ef","avatar_url":"https://secure.gravatar.com/avatar/6e33170f0701d1d1d8dd57c8f95368ef?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"pjkersten","url":"https://api.github.com/users/pjkersten","id":771883},"name":"PlantUML","clone_url":"https://github.com/pjkersten/PlantUML.git","mirror_url":null,"id":1710505,"git_url":"git://github.com/pjkersten/PlantUML.git","ssh_url":"git@github.com:pjkersten/PlantUML.git","description":"PlantUML plugin for MediaWiki","open_issues":0},{"watchers":21918,"pushed_at":"2012-02-28T16:53:11Z","html_url":"https://github.com/twitter/bootstrap","homepage":"http://twitter.github.com/bootstrap","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T20:36:24Z","forks":4086,"fork":false,"svn_url":"https://github.com/twitter/bootstrap","language":"JavaScript","private":false,"size":2160,"has_wiki":true,"url":"https://api.github.com/repos/twitter/bootstrap","created_at":"2011-07-29T21:19:00Z","owner":{"gravatar_id":"74e977ae0a10f06057a119eef30c6660","avatar_url":"https://secure.gravatar.com/avatar/74e977ae0a10f06057a119eef30c6660?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"twitter","url":"https://api.github.com/users/twitter","id":50278},"name":"bootstrap","clone_url":"https://github.com/twitter/bootstrap.git","mirror_url":null,"id":2126244,"git_url":"git://github.com/twitter/bootstrap.git","ssh_url":"git@github.com:twitter/bootstrap.git","description":"HTML, CSS, and JS toolkit from Twitter","open_issues":176},{"watchers":6,"pushed_at":"2012-02-29T16:41:02Z","html_url":"https://github.com/AcmeSystems/playground","homepage":"http://www.acmesystems.it","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-29T16:41:02Z","forks":3,"fork":false,"svn_url":"https://github.com/AcmeSystems/playground","language":"Python","private":false,"size":176,"has_wiki":true,"url":"https://api.github.com/repos/AcmeSystems/playground","created_at":"2011-10-17T16:16:10Z","owner":{"gravatar_id":"af55714b265c4914c8bb8db49fc06da6","avatar_url":"https://secure.gravatar.com/avatar/af55714b265c4914c8bb8db49fc06da6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"AcmeSystems","url":"https://api.github.com/users/AcmeSystems","id":783524},"name":"playground","clone_url":"https://github.com/AcmeSystems/playground.git","mirror_url":null,"id":2593052,"git_url":"git://github.com/AcmeSystems/playground.git","ssh_url":"git@github.com:AcmeSystems/playground.git","description":"Small programming examples for the FOX Board G20","open_issues":0},{"watchers":382,"pushed_at":"2011-11-07T14:55:19Z","html_url":"https://github.com/juuso/BozoCrack","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-28T21:38:00Z","forks":38,"fork":false,"svn_url":"https://github.com/juuso/BozoCrack","language":"Ruby","private":false,"size":140,"has_wiki":true,"url":"https://api.github.com/repos/juuso/BozoCrack","created_at":"2011-11-07T13:02:08Z","owner":{"gravatar_id":"d3231546d42d67974fc51956a3b627f4","avatar_url":"https://secure.gravatar.com/avatar/d3231546d42d67974fc51956a3b627f4?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"juuso","url":"https://api.github.com/users/juuso","id":614446},"name":"BozoCrack","clone_url":"https://github.com/juuso/BozoCrack.git","mirror_url":null,"id":2726128,"git_url":"git://github.com/juuso/BozoCrack.git","ssh_url":"git@github.com:juuso/BozoCrack.git","description":"A silly & effective MD5 cracker in Ruby","open_issues":8},{"watchers":3,"pushed_at":"2012-03-01T18:35:21Z","html_url":"https://github.com/AcmeSystems/acme-public-website","homepage":"http://www.acmesystems.it","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T18:35:23Z","forks":2,"fork":false,"svn_url":"https://github.com/AcmeSystems/acme-public-website","language":"JavaScript","private":false,"size":344,"has_wiki":true,"url":"https://api.github.com/repos/AcmeSystems/acme-public-website","created_at":"2011-11-22T17:10:15Z","owner":{"gravatar_id":"af55714b265c4914c8bb8db49fc06da6","avatar_url":"https://secure.gravatar.com/avatar/af55714b265c4914c8bb8db49fc06da6?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"AcmeSystems","url":"https://api.github.com/users/AcmeSystems","id":783524},"name":"acme-public-website","clone_url":"https://github.com/AcmeSystems/acme-public-website.git","mirror_url":null,"id":2829366,"git_url":"git://github.com/AcmeSystems/acme-public-website.git","ssh_url":"git@github.com:AcmeSystems/acme-public-website.git","description":"Public pages on Acme Systems website","open_issues":0},{"watchers":2,"pushed_at":null,"html_url":"https://github.com/BeaverSoftware/FatherBeaver","homepage":"","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-02-16T21:51:15Z","forks":1,"fork":false,"svn_url":"https://github.com/BeaverSoftware/FatherBeaver","language":null,"private":false,"size":0,"has_wiki":true,"url":"https://api.github.com/repos/BeaverSoftware/FatherBeaver","created_at":"2012-02-09T19:32:21Z","owner":{"gravatar_id":"d563e337cac2fdc644e2aaaad1e23266","avatar_url":"https://secure.gravatar.com/avatar/d563e337cac2fdc644e2aaaad1e23266?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-orgs.png","login":"BeaverSoftware","url":"https://api.github.com/users/BeaverSoftware","id":1424031},"name":"FatherBeaver","clone_url":"https://github.com/BeaverSoftware/FatherBeaver.git","mirror_url":null,"id":3400397,"git_url":"git://github.com/BeaverSoftware/FatherBeaver.git","ssh_url":"git@github.com:BeaverSoftware/FatherBeaver.git","description":"","open_issues":0},{"watchers":6,"pushed_at":"2012-03-01T18:03:20Z","html_url":"https://github.com/jacquev6/PyGithub","homepage":"http://vincent-jacques.net/PyGithub","has_downloads":true,"has_issues":true,"master_branch":null,"updated_at":"2012-03-01T20:39:33Z","forks":1,"fork":false,"svn_url":"https://github.com/jacquev6/PyGithub","language":"Python","private":false,"size":496,"has_wiki":false,"url":"https://api.github.com/repos/jacquev6/PyGithub","created_at":"2012-02-25T12:53:47Z","owner":{"gravatar_id":"b68de5ae38616c296fa345d2b9df2225","avatar_url":"https://secure.gravatar.com/avatar/b68de5ae38616c296fa345d2b9df2225?d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png","login":"jacquev6","url":"https://api.github.com/users/jacquev6","id":327146},"name":"PyGithub","clone_url":"https://github.com/jacquev6/PyGithub.git","mirror_url":null,"id":3544490,"git_url":"git://github.com/jacquev6/PyGithub.git","ssh_url":"git@github.com:jacquev6/PyGithub.git","description":"Python library (soon) implementing the full Github API v3","open_issues":1}] -