Commit Graph
1206 Commits
Author SHA1 Message Date
AKFish c89bebc729 Update GitTag.py 2013-08-21 15:52:57 +08:00
AKFish 1dbc2dd38f Update GitRef.py 2013-08-21 15:51:12 +08:00
AKFish b43de50dc4 Update GitBlob.py 2013-08-21 15:48:08 +08:00
AKFish dc8173a532 Update Gist*.py 2013-08-21 15:39:34 +08:00
AKFish c15cb6575b Update Download.py 2013-08-21 15:33:25 +08:00
AKFish 0c13da4592 Update ContentFile.py 2013-08-21 15:31:45 +08:00
AKFish ced048663b Update Comparision.py 2013-08-21 15:29:13 +08:00
AKFish 3b2e19488f Update CommitComment.py 2013-08-21 15:28:00 +08:00
AKFish ed32e78da1 Update Commit.py and GitCommit.py 2013-08-21 15:26:05 +08:00
AKFish 83c6495ec5 Update AuthorizationApplication.py 2013-08-21 15:10:54 +08:00
AKFish 0e19d8e04e Update Authorization.py 2013-08-21 15:09:34 +08:00
AKFish 28a49b94d8 Update AuthenticatedUser.py 2013-08-21 15:06:21 +08:00
AKFish 2f31828502 Update RepositoryKey.py 2013-08-21 15:04:34 +08:00
AKFish ca6189c3c9 Change CompletableGithubObject.__init__ without breaking build. 2013-08-21 14:49:20 +08:00
AKFish a1b65636df Clean up. NonCompletableGithubObject refactoring resolved. 2013-08-21 14:25:07 +08:00
AKFish 4a1a1d4068 Update Plan.py 2013-08-21 14:19:31 +08:00
AKFish b2c4519c06 Update PulllRequestPart.py 2013-08-21 14:15:09 +08:00
AKFish c7aeaddfa8 Fix PullRequestMergeStatus.py 2013-08-21 14:13:14 +08:00
AKFish deb0514b5e Update Hook.py 2013-08-21 14:10:37 +08:00
AKFish dcb6874745 Fix CommitStats.py 2013-08-21 14:09:11 +08:00
AKFish 6e11aa9cf0 Update Permissions.py 2013-08-21 14:07:10 +08:00
AKFish 12387505e2 Update Notification.py 2013-08-21 14:05:10 +08:00
AKFish d6170e36de Update IssuePullRequest.py 2013-08-21 14:03:57 +08:00
AKFish ac1585ee13 Update HookDescription.py. 2013-08-21 13:59:08 +08:00
AKFish 02435f3a9f Update GitTree.py 2013-08-21 13:30:39 +08:00
AKFish 274ab70f87 Update GitObject.py 2013-08-21 13:26:08 +08:00
AKFish 0879cbb6ff Update GitignoreTemplate.py 2013-08-21 13:23:21 +08:00
AKFish 4f1e05200d Update GitAuthor.py 2013-08-21 13:21:49 +08:00
AKFish c2dd9452ea Update Gist.py 2013-08-21 13:18:29 +08:00
AKFish bb56857b4d Update File.py 2013-08-21 13:15:25 +08:00
AKFish 6943f6da7f Update Branch.py 2013-08-21 13:10:32 +08:00
AKFish e8e8d174fb Update Event.py 2013-08-21 13:08:48 +08:00
AKFish 9f6562cb62 Update CommitStatus.py 2013-08-21 13:07:23 +08:00
AKFish b12c4b38c5 Update Tag.py 2013-08-21 13:05:41 +08:00
AKFish 0bc138b490 Change NonCompletableGithubObject without breaking build. 2013-08-21 12:32:41 +08:00
AKFish cfbe7fb0b0 Change GithubObject.__init__ without breaking build. 2013-08-21 11:21:15 +08:00
Vincent Jacques ae3455c8d7 Add test coverage for #182 2013-08-20 23:17:19 +02:00
Vincent Jacques 07c0871281 Merge branch 'topic/HandleNonJsonResponses' into develop 2013-08-20 22:54:16 +02:00
Vincent Jacques 67a7daa22b Improve coverage for #187 2013-08-19 23:35:02 +02:00
Vincent Jacques 20f1d36b80 Merge branch 'topic/AddParamsToRepositoryGetCommits' into develop 2013-08-19 14:27:10 +02:00
Vincent Jacques 629d012d8e Improve coverage 2013-08-19 14:26:39 +02:00
Vincent Jacques 4b70da0789 Merge branch 'topic/ImproveRateLimiting' into develop 2013-08-19 14:13:12 +02:00
Vincent Jacques 34f45427da Be explicit about test coverage lacking in Notification.py 2013-08-19 14:07:35 +02:00
Vincent Jacques df8df543c3 Merge branch 'develop' into topic/KnowYourParent 2013-08-15 08:20:01 +02:00
Adrian Petrescu e6520adb48 Adding since, until parameters to Repository.getCommits() 2013-08-06 21:14:39 -04:00
Ed Jackson 211e4633ee Minor enhancements to rate limiting information
If rate limiting information hasn't been retrieved already, it will be checked
rather than just assuming 5000 requests remaining of 5000.

Add an additional attribute `rate_limiting_resettime` to reflect github's new
X-RateLimit-Reset header. This integer value is a unix timestamp.

RateLimiting unit test updated accordingly.
2013-08-06 10:42:57 -05:00
davidbrai cb03b9e7d1 bugfix: returning real list instead of generator
Changed reversed(content) to content[::-1] in order to return
a real list and not a generator.
The code in PaginatedListBase.__grow does an iteration over
newElements when using `+=` and then returns them.
When using a generator, newElements would be empty when they are returned.
2013-08-03 16:49:10 +03:00
davidbrai 271f3f301e bug fix: empty nextUrl if no next/prev
Fixes a bug introduced in the previous commits.
Now testing a case where no lastUrl is returned.
Also fixing a regression where nextUrl wasn't erased properly.
2013-08-02 18:59:11 +03:00
davidbrai da6bd8c827 remove print #oops 2013-08-02 18:28:48 +03:00
davidbrai ef4cf44ebd support reverse iteration in PaginatedList
This uses the 'last' and 'prev' links in the HTTP headers.
The usage is repo.get_issues().reversed
2013-08-02 18:20:39 +03:00