tinybucket 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +10 -1
- data/Gemfile +8 -7
- data/README.md +28 -5
- data/Rakefile +1 -0
- data/lib/faraday_middleware/follow_oauth_redirects.rb +5 -2
- data/lib/tinybucket.rb +2 -0
- data/lib/tinybucket/api.rb +3 -0
- data/lib/tinybucket/api/base_api.rb +2 -0
- data/lib/tinybucket/api/branch_restrictions_api.rb +6 -5
- data/lib/tinybucket/api/branches_api.rb +48 -0
- data/lib/tinybucket/api/build_status_api.rb +15 -1
- data/lib/tinybucket/api/comments_api.rb +7 -6
- data/lib/tinybucket/api/commits_api.rb +25 -4
- data/lib/tinybucket/api/diff_api.rb +4 -3
- data/lib/tinybucket/api/helper.rb +3 -0
- data/lib/tinybucket/api/helper/api_helper.rb +2 -0
- data/lib/tinybucket/api/helper/branch_restrictions_helper.rb +2 -0
- data/lib/tinybucket/api/helper/branches_helper.rb +29 -0
- data/lib/tinybucket/api/helper/build_status_helper.rb +11 -0
- data/lib/tinybucket/api/helper/comments_helper.rb +2 -0
- data/lib/tinybucket/api/helper/commits_helper.rb +8 -0
- data/lib/tinybucket/api/helper/diff_helper.rb +2 -0
- data/lib/tinybucket/api/helper/pull_requests_helper.rb +2 -0
- data/lib/tinybucket/api/helper/repo_helper.rb +2 -0
- data/lib/tinybucket/api/helper/repos_helper.rb +2 -0
- data/lib/tinybucket/api/helper/team_helper.rb +2 -0
- data/lib/tinybucket/api/helper/user_helper.rb +2 -0
- data/lib/tinybucket/api/pull_requests_api.rb +4 -3
- data/lib/tinybucket/api/repo_api.rb +4 -3
- data/lib/tinybucket/api/repos_api.rb +3 -1
- data/lib/tinybucket/api/team_api.rb +4 -2
- data/lib/tinybucket/api/user_api.rb +3 -1
- data/lib/tinybucket/api_factory.rb +2 -0
- data/lib/tinybucket/client.rb +3 -2
- data/lib/tinybucket/config.rb +5 -1
- data/lib/tinybucket/connection.rb +21 -8
- data/lib/tinybucket/constants.rb +2 -0
- data/lib/tinybucket/enumerator.rb +2 -0
- data/lib/tinybucket/error.rb +2 -0
- data/lib/tinybucket/error/base_error.rb +2 -0
- data/lib/tinybucket/error/conflict.rb +2 -0
- data/lib/tinybucket/error/not_found.rb +2 -0
- data/lib/tinybucket/error/service_error.rb +2 -0
- data/lib/tinybucket/iterator.rb +4 -2
- data/lib/tinybucket/model.rb +3 -0
- data/lib/tinybucket/model/base.rb +2 -2
- data/lib/tinybucket/model/branch.rb +48 -0
- data/lib/tinybucket/model/branch_restriction.rb +4 -2
- data/lib/tinybucket/model/build_status.rb +3 -1
- data/lib/tinybucket/model/comment.rb +4 -2
- data/lib/tinybucket/model/commit.rb +6 -2
- data/lib/tinybucket/model/concerns.rb +2 -0
- data/lib/tinybucket/model/concerns/acceptable_attributes.rb +2 -0
- data/lib/tinybucket/model/concerns/api_callable.rb +2 -0
- data/lib/tinybucket/model/concerns/enumerable.rb +2 -0
- data/lib/tinybucket/model/concerns/reloadable.rb +2 -0
- data/lib/tinybucket/model/concerns/repository_keys.rb +2 -0
- data/lib/tinybucket/model/error_response.rb +4 -2
- data/lib/tinybucket/model/page.rb +4 -2
- data/lib/tinybucket/model/profile.rb +4 -2
- data/lib/tinybucket/model/pull_request.rb +4 -2
- data/lib/tinybucket/model/repository.rb +31 -5
- data/lib/tinybucket/model/team.rb +4 -2
- data/lib/tinybucket/null_logger.rb +2 -0
- data/lib/tinybucket/parser.rb +5 -0
- data/lib/tinybucket/parser/base_parser.rb +3 -2
- data/lib/tinybucket/parser/branch_parser.rb +13 -0
- data/lib/tinybucket/parser/branch_restriction_parser.rb +2 -0
- data/lib/tinybucket/parser/branch_restrictions_parser.rb +2 -0
- data/lib/tinybucket/parser/branches_parser.rb +11 -0
- data/lib/tinybucket/parser/build_status_parser.rb +2 -0
- data/lib/tinybucket/parser/builds_parser.rb +11 -0
- data/lib/tinybucket/parser/comment_parser.rb +2 -0
- data/lib/tinybucket/parser/comments_parser.rb +2 -0
- data/lib/tinybucket/parser/commit_parser.rb +2 -0
- data/lib/tinybucket/parser/commits_parser.rb +2 -0
- data/lib/tinybucket/parser/profile_parser.rb +2 -0
- data/lib/tinybucket/parser/profiles_parser.rb +2 -0
- data/lib/tinybucket/parser/pull_request_parser.rb +2 -0
- data/lib/tinybucket/parser/pull_requests_parser.rb +2 -0
- data/lib/tinybucket/parser/repo_parser.rb +2 -0
- data/lib/tinybucket/parser/repos_parser.rb +2 -0
- data/lib/tinybucket/parser/team_parser.rb +2 -0
- data/lib/tinybucket/parser/teams_parser.rb +2 -0
- data/lib/tinybucket/request.rb +2 -0
- data/lib/tinybucket/resource.rb +3 -0
- data/lib/tinybucket/resource/base.rb +6 -0
- data/lib/tinybucket/resource/branch_restrictions.rb +2 -0
- data/lib/tinybucket/resource/branches.rb +35 -0
- data/lib/tinybucket/resource/commit/base.rb +2 -0
- data/lib/tinybucket/resource/commit/build_statuses.rb +6 -3
- data/lib/tinybucket/resource/commit/comments.rb +2 -0
- data/lib/tinybucket/resource/commits.rb +13 -0
- data/lib/tinybucket/resource/forks.rb +2 -0
- data/lib/tinybucket/resource/pull_request/base.rb +2 -0
- data/lib/tinybucket/resource/pull_request/comments.rb +2 -0
- data/lib/tinybucket/resource/pull_request/commits.rb +2 -0
- data/lib/tinybucket/resource/pull_requests.rb +2 -0
- data/lib/tinybucket/resource/repos.rb +2 -0
- data/lib/tinybucket/resource/team/base.rb +2 -0
- data/lib/tinybucket/resource/team/followers.rb +2 -0
- data/lib/tinybucket/resource/team/following.rb +2 -0
- data/lib/tinybucket/resource/team/members.rb +2 -0
- data/lib/tinybucket/resource/team/repos.rb +2 -0
- data/lib/tinybucket/resource/user/base.rb +2 -0
- data/lib/tinybucket/resource/user/followers.rb +2 -0
- data/lib/tinybucket/resource/user/following.rb +2 -0
- data/lib/tinybucket/resource/user/repos.rb +2 -0
- data/lib/tinybucket/resource/watchers.rb +2 -0
- data/lib/tinybucket/response.rb +2 -0
- data/lib/tinybucket/response/handler.rb +2 -0
- data/lib/tinybucket/version.rb +3 -1
- data/tinybucket.gemspec +1 -1
- metadata +11 -193
- data/.coveralls.yml +0 -1
- data/.gitignore +0 -33
- data/.rspec +0 -1
- data/.travis.yml +0 -13
- data/Guardfile +0 -13
- data/spec/fixtures/branch_restriction.json +0 -17
- data/spec/fixtures/build_status.json +0 -16
- data/spec/fixtures/comment.json +0 -30
- data/spec/fixtures/commit.json +0 -83
- data/spec/fixtures/profile.json +0 -29
- data/spec/fixtures/pull_request.json +0 -106
- data/spec/fixtures/repositories/get.json +0 -78
- data/spec/fixtures/repositories/test_owner/get.json +0 -78
- data/spec/fixtures/repositories/test_owner/test_repo/branch-restrictions/1/get.json +0 -17
- data/spec/fixtures/repositories/test_owner/test_repo/branch-restrictions/get.json +0 -101
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/approve/post.json +0 -16
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/comments/1/get.json +0 -38
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/comments/get.json +0 -40
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/get.json +0 -83
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/statuses/build/post.json +0 -16
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/statuses/build/test_status/get.json +0 -16
- data/spec/fixtures/repositories/test_owner/test_repo/commit/1/statuses/build/test_status/put.json +0 -16
- data/spec/fixtures/repositories/test_owner/test_repo/commits/get.json +0 -73
- data/spec/fixtures/repositories/test_owner/test_repo/diff/1/get.json +0 -21
- data/spec/fixtures/repositories/test_owner/test_repo/forks/get.json +0 -78
- data/spec/fixtures/repositories/test_owner/test_repo/get.json +0 -71
- data/spec/fixtures/repositories/test_owner/test_repo/patch/1/get.json +0 -29
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/approve/delete.json +0 -3
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/approve/post.json +0 -3
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/comments/1/get.json +0 -30
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/comments/get.json +0 -44
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/commits/get.json +0 -66
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/decline/post.json +0 -116
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/diff/get.txt +0 -13
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/get.json +0 -164
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/1/merge/post.json +0 -123
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/get.json +0 -112
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/get_state_declined.json +0 -112
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/get_state_merged.json +0 -112
- data/spec/fixtures/repositories/test_owner/test_repo/pullrequests/get_state_open.json +0 -112
- data/spec/fixtures/repositories/test_owner/test_repo/watchers/get.json +0 -32
- data/spec/fixtures/repository.json +0 -72
- data/spec/fixtures/team.json +0 -32
- data/spec/fixtures/teams/test_team/followers/get.json +0 -36
- data/spec/fixtures/teams/test_team/following/get.json +0 -39
- data/spec/fixtures/teams/test_team/get.json +0 -32
- data/spec/fixtures/teams/test_team/members/get.json +0 -36
- data/spec/fixtures/teams/test_team/repositories/get.json +0 -125
- data/spec/fixtures/users/test_owner/followers/get.json +0 -65
- data/spec/fixtures/users/test_owner/following/get.json +0 -100
- data/spec/fixtures/users/test_owner/get.json +0 -29
- data/spec/lib/tinybucket/api/branch_restrictions_api_spec.rb +0 -77
- data/spec/lib/tinybucket/api/build_status_api_spec.rb +0 -65
- data/spec/lib/tinybucket/api/comments_api_spec.rb +0 -132
- data/spec/lib/tinybucket/api/commits_api_spec.rb +0 -152
- data/spec/lib/tinybucket/api/diff_api_spec.rb +0 -5
- data/spec/lib/tinybucket/api/pull_requests_api_spec.rb +0 -259
- data/spec/lib/tinybucket/api/repo_api_spec.rb +0 -99
- data/spec/lib/tinybucket/api/repos_api_spec.rb +0 -27
- data/spec/lib/tinybucket/api/team_api_spec.rb +0 -82
- data/spec/lib/tinybucket/api/user_api_spec.rb +0 -73
- data/spec/lib/tinybucket/api_factory_spec.rb +0 -18
- data/spec/lib/tinybucket/client_spec.rb +0 -100
- data/spec/lib/tinybucket/connection_spec.rb +0 -30
- data/spec/lib/tinybucket/error/service_error_spec.rb +0 -23
- data/spec/lib/tinybucket/model/branch_restriction_spec.rb +0 -35
- data/spec/lib/tinybucket/model/build_status_spec.rb +0 -66
- data/spec/lib/tinybucket/model/comment_spec.rb +0 -37
- data/spec/lib/tinybucket/model/commit_spec.rb +0 -108
- data/spec/lib/tinybucket/model/page_spec.rb +0 -28
- data/spec/lib/tinybucket/model/profile_spec.rb +0 -52
- data/spec/lib/tinybucket/model/pull_request_spec.rb +0 -141
- data/spec/lib/tinybucket/model/repository_spec.rb +0 -131
- data/spec/lib/tinybucket/model/team_spec.rb +0 -70
- data/spec/lib/tinybucket/null_logger_spec.rb +0 -53
- data/spec/lib/tinybucket/resource/branch_restrictions_spec.rb +0 -60
- data/spec/lib/tinybucket/resource/commit/build_statuses_spec.rb +0 -50
- data/spec/lib/tinybucket/resource/commit/comments_spec.rb +0 -49
- data/spec/lib/tinybucket/resource/commits_spec.rb +0 -43
- data/spec/lib/tinybucket/resource/forks_spec.rb +0 -36
- data/spec/lib/tinybucket/resource/pull_request/comments_spec.rb +0 -41
- data/spec/lib/tinybucket/resource/pull_request/commits_spec.rb +0 -41
- data/spec/lib/tinybucket/resource/pull_requests_spec.rb +0 -59
- data/spec/lib/tinybucket/resource/repos_spec.rb +0 -76
- data/spec/lib/tinybucket/resource/team/followers_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/team/following_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/team/members_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/team/repos_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/user/followers_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/user/following_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/user/repos_spec.rb +0 -27
- data/spec/lib/tinybucket/resource/watchers_spec.rb +0 -38
- data/spec/lib/tinybucket_spec.rb +0 -42
- data/spec/spec_helper.rb +0 -45
- data/spec/support/api_response_macros.rb +0 -74
- data/spec/support/fixture_macros.rb +0 -5
- data/spec/support/model_macros.rb +0 -103
| @@ -1,78 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "pagelen": 10,
         | 
| 3 | 
            -
              "values":  [
         | 
| 4 | 
            -
                 {
         | 
| 5 | 
            -
                  "scm": "git",
         | 
| 6 | 
            -
                  "has_wiki": false,
         | 
| 7 | 
            -
                  "description": "",
         | 
| 8 | 
            -
                  "links":  {
         | 
| 9 | 
            -
                    "watchers":  {
         | 
| 10 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/bnguyen/markdowndemo/watchers"
         | 
| 11 | 
            -
                    },
         | 
| 12 | 
            -
                    "commits":  {
         | 
| 13 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/bnguyen/markdowndemo/commits"
         | 
| 14 | 
            -
                    },
         | 
| 15 | 
            -
                    "self":  {
         | 
| 16 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/bnguyen/markdowndemo"
         | 
| 17 | 
            -
                    },
         | 
| 18 | 
            -
                    "html":  {
         | 
| 19 | 
            -
                      "href": "https://bitbucket.org/bnguyen/markdowndemo"
         | 
| 20 | 
            -
                    },
         | 
| 21 | 
            -
                    "avatar":  {
         | 
| 22 | 
            -
                      "href": "https://d3oaxc4q5k2d6q.cloudfront.net/m/f5a36db3429b/img/language-avatars/default_16.png"
         | 
| 23 | 
            -
                    },
         | 
| 24 | 
            -
                    "forks":  {
         | 
| 25 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/bnguyen/markdowndemo/forks"
         | 
| 26 | 
            -
                    },
         | 
| 27 | 
            -
                    "clone":  [
         | 
| 28 | 
            -
                       {
         | 
| 29 | 
            -
                        "href": "https://bitbucket.org/bnguyen/markdowndemo.git",
         | 
| 30 | 
            -
                        "name": "https"
         | 
| 31 | 
            -
                      },
         | 
| 32 | 
            -
                       {
         | 
| 33 | 
            -
                        "href": "ssh://git@bitbucket.org/bnguyen/markdowndemo.git",
         | 
| 34 | 
            -
                        "name": "ssh"
         | 
| 35 | 
            -
                      }
         | 
| 36 | 
            -
                    ],
         | 
| 37 | 
            -
                    "pullrequests":  {
         | 
| 38 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/bnguyen/markdowndemo/pullrequests"
         | 
| 39 | 
            -
                    }
         | 
| 40 | 
            -
                  },
         | 
| 41 | 
            -
                  "fork_policy": "allow_forks",
         | 
| 42 | 
            -
                  "language": "",
         | 
| 43 | 
            -
                  "created_on": "2013-10-14T20:50:02.321710+00:00",
         | 
| 44 | 
            -
                  "parent":  {
         | 
| 45 | 
            -
                    "links":  {
         | 
| 46 | 
            -
                      "self":  {
         | 
| 47 | 
            -
                        "href": "https://bitbucket.org/api/2.0/repositories/tutorials/markdowndemo"
         | 
| 48 | 
            -
                      },
         | 
| 49 | 
            -
                      "avatar":  {
         | 
| 50 | 
            -
                        "href": "https://d3oaxc4q5k2d6q.cloudfront.net/m/f5a36db3429b/img/language-avatars/default_16.png"
         | 
| 51 | 
            -
                      }
         | 
| 52 | 
            -
                    },
         | 
| 53 | 
            -
                    "full_name": "tutorials/markdowndemo",
         | 
| 54 | 
            -
                    "name": "MarkdownDemo"
         | 
| 55 | 
            -
                  },
         | 
| 56 | 
            -
                  "full_name": "bnguyen/markdowndemo",
         | 
| 57 | 
            -
                  "has_issues": false,
         | 
| 58 | 
            -
                  "owner":  {
         | 
| 59 | 
            -
                    "username": "bnguyen",
         | 
| 60 | 
            -
                    "display_name": "Brian Nguyen",
         | 
| 61 | 
            -
                    "links":  {
         | 
| 62 | 
            -
                      "self":  {
         | 
| 63 | 
            -
                        "href": "https://bitbucket.org/api/2.0/users/bnguyen"
         | 
| 64 | 
            -
                      },
         | 
| 65 | 
            -
                      "avatar":  {
         | 
| 66 | 
            -
                        "href": "https://secure.gravatar.com/avatar/f7a8180e50193e2b1ececace9ca8d162?d=https%3A%2F%2Fd3oaxc4q5k2d6q.cloudfront.net%2Fm%2Ff5a36db3429b%2Fimg%2Fdefault_avatar%2F32%2Fuser_blue.png&s=32"
         | 
| 67 | 
            -
                      }
         | 
| 68 | 
            -
                    }
         | 
| 69 | 
            -
                  },
         | 
| 70 | 
            -
                  "updated_on": "2013-10-14T20:50:02.382945+00:00",
         | 
| 71 | 
            -
                  "size": 860675,
         | 
| 72 | 
            -
                  "is_private": false,
         | 
| 73 | 
            -
                  "name": "markdowndemo"
         | 
| 74 | 
            -
                }
         | 
| 75 | 
            -
              ],
         | 
| 76 | 
            -
              "page": 1,
         | 
| 77 | 
            -
              "size": 1
         | 
| 78 | 
            -
            } 
         | 
| @@ -1,71 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "scm": "git",
         | 
| 3 | 
            -
              "has_wiki": false,
         | 
| 4 | 
            -
              "description": "",
         | 
| 5 | 
            -
              "links": {
         | 
| 6 | 
            -
                "watchers": {
         | 
| 7 | 
            -
                  "href": "https://api.bitbucket.org/2.0/repositories/evzijst/atlassian-connect-fork/watchers"
         | 
| 8 | 
            -
                },
         | 
| 9 | 
            -
                "commits": {
         | 
| 10 | 
            -
                  "href": "https://api.bitbucket.org/2.0/repositories/evzijst/atlassian-connect-fork/commits"
         | 
| 11 | 
            -
                },
         | 
| 12 | 
            -
                "self": {
         | 
| 13 | 
            -
                  "href": "https://api.bitbucket.org/2.0/repositories/evzijst/atlassian-connect-fork"
         | 
| 14 | 
            -
                },
         | 
| 15 | 
            -
                "html": {
         | 
| 16 | 
            -
                  "href": "https://bitbucket.org/evzijst/atlassian-connect-fork"
         | 
| 17 | 
            -
                },
         | 
| 18 | 
            -
                "avatar": {
         | 
| 19 | 
            -
                  "href": "https://bitbucket.org/m/3a846b46851a/img/language-avatars/default_16.png"
         | 
| 20 | 
            -
                },
         | 
| 21 | 
            -
                "forks": {
         | 
| 22 | 
            -
                  "href": "https://api.bitbucket.org/2.0/repositories/evzijst/atlassian-connect-fork/forks"
         | 
| 23 | 
            -
                },
         | 
| 24 | 
            -
                "clone": [
         | 
| 25 | 
            -
                  {
         | 
| 26 | 
            -
                    "href": "https://bitbucket.org/evzijst/atlassian-connect-fork.git",
         | 
| 27 | 
            -
                    "name": "https"
         | 
| 28 | 
            -
                  },
         | 
| 29 | 
            -
                  {
         | 
| 30 | 
            -
                    "href": "ssh://git@bitbucket.org/evzijst/atlassian-connect-fork.git",
         | 
| 31 | 
            -
                    "name": "ssh"
         | 
| 32 | 
            -
                  }
         | 
| 33 | 
            -
                ],
         | 
| 34 | 
            -
                "pullrequests": {
         | 
| 35 | 
            -
                  "href": "https://api.bitbucket.org/2.0/repositories/evzijst/atlassian-connect-fork/pullrequests"
         | 
| 36 | 
            -
                }
         | 
| 37 | 
            -
              },
         | 
| 38 | 
            -
              "fork_policy": "allow_forks",
         | 
| 39 | 
            -
              "language": "",
         | 
| 40 | 
            -
              "created_on": "2013-08-26T18:13:07.339080+00:00",
         | 
| 41 | 
            -
              "parent": {
         | 
| 42 | 
            -
                "links": {
         | 
| 43 | 
            -
                  "self": {
         | 
| 44 | 
            -
                    "href": "https://api.bitbucket.org/2.0/repositories/evzijst/atlassian-connect"
         | 
| 45 | 
            -
                  },
         | 
| 46 | 
            -
                  "avatar": {
         | 
| 47 | 
            -
                    "href": "https://bitbucket-assetroot.s3.amazonaws.com/m/3a846b46851a/img/language-avatars/default_16.png"
         | 
| 48 | 
            -
                  }
         | 
| 49 | 
            -
                },
         | 
| 50 | 
            -
                "full_name": "evzijst/atlassian-connect",
         | 
| 51 | 
            -
                "name": "atlassian-connect"
         | 
| 52 | 
            -
              },
         | 
| 53 | 
            -
              "full_name": "evzijst/atlassian-connect-fork",
         | 
| 54 | 
            -
              "has_issues": false,
         | 
| 55 | 
            -
              "owner": {
         | 
| 56 | 
            -
                "username": "evzijst",
         | 
| 57 | 
            -
                "display_name": "Erik van Zijst",
         | 
| 58 | 
            -
                "links": {
         | 
| 59 | 
            -
                  "self": {
         | 
| 60 | 
            -
                    "href": "https://api.bitbucket.org/2.0/users/evzijst"
         | 
| 61 | 
            -
                  },
         | 
| 62 | 
            -
                  "avatar": {
         | 
| 63 | 
            -
                    "href": "https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2013/Oct/28/evzijst-avatar-3454044670-3_avatar.png"
         | 
| 64 | 
            -
                  }
         | 
| 65 | 
            -
                }
         | 
| 66 | 
            -
              },
         | 
| 67 | 
            -
              "updated_on": "2013-08-26T18:13:07.514065+00:00",
         | 
| 68 | 
            -
              "size": 17657351,
         | 
| 69 | 
            -
              "is_private": false,
         | 
| 70 | 
            -
              "name": "atlassian-connect-fork"
         | 
| 71 | 
            -
            }
         | 
| @@ -1,29 +0,0 @@ | |
| 1 | 
            -
            # HG changeset patch
         | 
| 2 | 
            -
            # User Juan Borda <quiasmo.paprika@gmail.com>
         | 
| 3 | 
            -
            # Date 1384880449 18000
         | 
| 4 | 
            -
            # Node ID 6247bd81bdc2d254a6be8b00f28137aec7225cc2
         | 
| 5 | 
            -
            # Parent  68599fa0e4054272d09e2e69a0f3beb9af903192
         | 
| 6 | 
            -
            add churchill quote
         | 
| 7 | 
            -
             | 
| 8 | 
            -
            diff --git a/index.html b/index.html
         | 
| 9 | 
            -
            --- a/index.html
         | 
| 10 | 
            -
            +++ b/index.html
         | 
| 11 | 
            -
            @@ -55,7 +55,17 @@
         | 
| 12 | 
            -
             -->
         | 
| 13 | 
            -
             <!-- Quotes Table Start -->
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            -
         | 
| 16 | 
            -
            +   <tr>
         | 
| 17 | 
            -
            +       <td>
         | 
| 18 | 
            -
            +           <img src="http://4.bp.blogspot.com/-rTLW1af50AE/TnMnzam0g9I/AAAAAAAAAtk/y85tikqkPYg/s1600/estrategia_winston_churchill_diplomacia.jpg"/>
         | 
| 19 | 
            -
            +       </td>
         | 
| 20 | 
            -
            +       <td>
         | 
| 21 | 
            -
            +           <blockquote><p>"If you're going thru hell, keep going."</p>
         | 
| 22 | 
            -
            +           <cite>Wiston Churchill</cite>
         | 
| 23 | 
            -
            +           </blockquote>
         | 
| 24 | 
            -
            +       </td>
         | 
| 25 | 
            -
            +   </tr>
         | 
| 26 | 
            -
            +
         | 
| 27 | 
            -
                <tr>
         | 
| 28 | 
            -
                     <td>
         | 
| 29 | 
            -
                         <img src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Steve_Jobs_Headshot_2010-CROP.jpg/250px-Steve_Jobs_Headshot_2010-CROP.jpg"/>
         | 
| @@ -1,30 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "links": {
         | 
| 3 | 
            -
                "self": {
         | 
| 4 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2821/comments/839163"
         | 
| 5 | 
            -
                },
         | 
| 6 | 
            -
                "html": {
         | 
| 7 | 
            -
                  "href": "https://bitbucket.org/tutorials/tutorials.bitbucket.org/pull-request/2821/_/diff#comment-839163"
         | 
| 8 | 
            -
                }
         | 
| 9 | 
            -
              },
         | 
| 10 | 
            -
              "content": {
         | 
| 11 | 
            -
                "raw": "this is my first comment",
         | 
| 12 | 
            -
                "markup": "markdown",
         | 
| 13 | 
            -
                "html": "<p>this is my first comment</p>"
         | 
| 14 | 
            -
              },
         | 
| 15 | 
            -
              "created_on": "2013-11-19T21:19:24.138375+00:00",
         | 
| 16 | 
            -
              "user": {
         | 
| 17 | 
            -
                "username": "tutorials",
         | 
| 18 | 
            -
                "display_name": "first name last",
         | 
| 19 | 
            -
                "links": {
         | 
| 20 | 
            -
                  "self": {
         | 
| 21 | 
            -
                    "href": "https://bitbucket.org/api/2.0/users/tutorials"
         | 
| 22 | 
            -
                  },
         | 
| 23 | 
            -
                  "avatar": {
         | 
| 24 | 
            -
                    "href": "https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2013/Jul/17/tutorials-avatar-1826704565-4_avatar.png"
         | 
| 25 | 
            -
                  }
         | 
| 26 | 
            -
                }
         | 
| 27 | 
            -
              },
         | 
| 28 | 
            -
              "updated_on": "2013-11-19T21:19:24.141013+00:00",
         | 
| 29 | 
            -
              "id": 839163
         | 
| 30 | 
            -
            }
         | 
| @@ -1,44 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
                "pagelen": 1,
         | 
| 3 | 
            -
                "next": "https://api.bitbucket.org/2.0/repositories/test_owner/test_repo/pullrequests/1/comments?pagelen=1&page=2",
         | 
| 4 | 
            -
                "values": [{
         | 
| 5 | 
            -
                    "parent": {
         | 
| 6 | 
            -
                        "id": 25334,
         | 
| 7 | 
            -
                        "links": {
         | 
| 8 | 
            -
                            "self": {
         | 
| 9 | 
            -
                                "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/pullrequests/3767/comments/25334"
         | 
| 10 | 
            -
                            }
         | 
| 11 | 
            -
                        }
         | 
| 12 | 
            -
                    },
         | 
| 13 | 
            -
                    "links": {
         | 
| 14 | 
            -
                        "self": {
         | 
| 15 | 
            -
                            "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/pullrequests/3767/comments/25337"
         | 
| 16 | 
            -
                        },
         | 
| 17 | 
            -
                        "html": {
         | 
| 18 | 
            -
                            "href": "https://bitbucket.org/bitbucket/bitbucket/pull-request/3767/_/diff#comment-25337"
         | 
| 19 | 
            -
                        }
         | 
| 20 | 
            -
                    },
         | 
| 21 | 
            -
                    "content": {
         | 
| 22 | 
            -
                        "raw": "If we are leaving the email attached to the team account, Gravatar should still work fine. The problem would be they can't change the Gravatar associated account then.",
         | 
| 23 | 
            -
                        "markup": "markdown",
         | 
| 24 | 
            -
                        "html": "<p>If we are leaving the email attached to the team account, Gravatar should still work fine. The problem would be they can't change the Gravatar associated account then.</p>"
         | 
| 25 | 
            -
                    },
         | 
| 26 | 
            -
                    "created_on": "2013-11-07T17:11:20.986517+00:00",
         | 
| 27 | 
            -
                    "user": {
         | 
| 28 | 
            -
                        "username": "mfrauenholtz",
         | 
| 29 | 
            -
                        "display_name": "Michael Frauenholtz",
         | 
| 30 | 
            -
                        "links": {
         | 
| 31 | 
            -
                            "self": {
         | 
| 32 | 
            -
                                "href": "https://bitbucket.org/api/2.0/users/mfrauenholtz"
         | 
| 33 | 
            -
                            },
         | 
| 34 | 
            -
                            "avatar": {
         | 
| 35 | 
            -
                                "href": "https://bitbucket-staging-assetroot.s3.amazonaws.com/c/photos/2013/Aug/24/mfrauenholtz-avatar-1858533797-5_avatar.png"
         | 
| 36 | 
            -
                            }
         | 
| 37 | 
            -
                        }
         | 
| 38 | 
            -
                    },
         | 
| 39 | 
            -
                    "updated_on": "2013-11-07T17:11:20.989028+00:00",
         | 
| 40 | 
            -
                    "id": 25337
         | 
| 41 | 
            -
                }],
         | 
| 42 | 
            -
                "page": 1,
         | 
| 43 | 
            -
                "size": 4
         | 
| 44 | 
            -
            }
         | 
| @@ -1,66 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
                "pagelen": 1,
         | 
| 3 | 
            -
                "next": "https://api.bitbucket.org/2.0/repositories/test_owner/test_repo/pullrequests/1/commits?pagelen=1&page=2",
         | 
| 4 | 
            -
                "values": [{
         | 
| 5 | 
            -
                    "hash": "ad758aeba36fa4b9d258ac1667f55cfb811e6df3",
         | 
| 6 | 
            -
                    "links": {
         | 
| 7 | 
            -
                        "self": {
         | 
| 8 | 
            -
                            "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/commit/ad758aeba36fa4b9d258ac1667f55cfb811e6df3"
         | 
| 9 | 
            -
                        },
         | 
| 10 | 
            -
                        "comments": {
         | 
| 11 | 
            -
                            "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/commit/ad758aeba36fa4b9d258ac1667f55cfb811e6df3/comments"
         | 
| 12 | 
            -
                        },
         | 
| 13 | 
            -
                        "patch": {
         | 
| 14 | 
            -
                            "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/patch/ad758aeba36fa4b9d258ac1667f55cfb811e6df3"
         | 
| 15 | 
            -
                        },
         | 
| 16 | 
            -
                        "html": {
         | 
| 17 | 
            -
                            "href": "https://bitbucket.org/bitbucket/bitbucket/commits/ad758aeba36fa4b9d258ac1667f55cfb811e6df3"
         | 
| 18 | 
            -
                        },
         | 
| 19 | 
            -
                        "diff": {
         | 
| 20 | 
            -
                            "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/diff/ad758aeba36fa4b9d258ac1667f55cfb811e6df3"
         | 
| 21 | 
            -
                        },
         | 
| 22 | 
            -
                        "approve": {
         | 
| 23 | 
            -
                            "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/commit/ad758aeba36fa4b9d258ac1667f55cfb811e6df3/approve"
         | 
| 24 | 
            -
                        }
         | 
| 25 | 
            -
                    },
         | 
| 26 | 
            -
                    "repository": {
         | 
| 27 | 
            -
                        "links": {
         | 
| 28 | 
            -
                            "self": {
         | 
| 29 | 
            -
                                "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket"
         | 
| 30 | 
            -
                            },
         | 
| 31 | 
            -
                            "avatar": {
         | 
| 32 | 
            -
                                "href": "https://bitbucket-staging-assetroot.s3.amazonaws.com/c/photos/2013/Sep/27/bitbucket-logo-1832464563-7_avatar.png"
         | 
| 33 | 
            -
                            }
         | 
| 34 | 
            -
                        },
         | 
| 35 | 
            -
                        "full_name": "bitbucket/bitbucket",
         | 
| 36 | 
            -
                        "name": "bitbucket"
         | 
| 37 | 
            -
                    },
         | 
| 38 | 
            -
                    "author": {
         | 
| 39 | 
            -
                        "raw": "Erik van Zijst <erik.van.zijst@gmail.com>",
         | 
| 40 | 
            -
                        "user": {
         | 
| 41 | 
            -
                            "username": "erik",
         | 
| 42 | 
            -
                            "display_name": "Erik van Zijst",
         | 
| 43 | 
            -
                            "links": {
         | 
| 44 | 
            -
                                "self": {
         | 
| 45 | 
            -
                                    "href": "https://bitbucket.org/api/2.0/users/erik"
         | 
| 46 | 
            -
                                },
         | 
| 47 | 
            -
                                "avatar": {
         | 
| 48 | 
            -
                                    "href": "https://bitbucket-staging-assetroot.s3.amazonaws.com/c/photos/2013/Jul/31/erik-avatar-725122544-0_avatar.png"
         | 
| 49 | 
            -
                                }
         | 
| 50 | 
            -
                            }
         | 
| 51 | 
            -
                        }
         | 
| 52 | 
            -
                    },
         | 
| 53 | 
            -
                    "parents": [{
         | 
| 54 | 
            -
                        "hash": "16929c2f94828ca9d8adb5b91e7db7b274aae318",
         | 
| 55 | 
            -
                        "links": {
         | 
| 56 | 
            -
                            "self": {
         | 
| 57 | 
            -
                                "href": "https://bitbucket.org/api/2.0/repositories/bitbucket/bitbucket/commit/16929c2f94828ca9d8adb5b91e7db7b274aae318"
         | 
| 58 | 
            -
                            }
         | 
| 59 | 
            -
                        }
         | 
| 60 | 
            -
                    }],
         | 
| 61 | 
            -
                    "date": "2013-11-07T00:17:05+00:00",
         | 
| 62 | 
            -
                    "message": "Reorder imports. "
         | 
| 63 | 
            -
                }],
         | 
| 64 | 
            -
                "page": 1,
         | 
| 65 | 
            -
                "size": 11
         | 
| 66 | 
            -
            }
         | 
| @@ -1,116 +0,0 @@ | |
| 1 | 
            -
            {
         | 
| 2 | 
            -
              "description": "",
         | 
| 3 | 
            -
              "links": {
         | 
| 4 | 
            -
                "decline": {
         | 
| 5 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/decline"
         | 
| 6 | 
            -
                },
         | 
| 7 | 
            -
                "commits": {
         | 
| 8 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/commits"
         | 
| 9 | 
            -
                },
         | 
| 10 | 
            -
                "self": {
         | 
| 11 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820"
         | 
| 12 | 
            -
                },
         | 
| 13 | 
            -
                "comments": {
         | 
| 14 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/comments"
         | 
| 15 | 
            -
                },
         | 
| 16 | 
            -
                "merge": {
         | 
| 17 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/merge"
         | 
| 18 | 
            -
                },
         | 
| 19 | 
            -
                "html": {
         | 
| 20 | 
            -
                  "href": "https://bitbucket.org/tutorials/tutorials.bitbucket.org/pull-request/2820"
         | 
| 21 | 
            -
                },
         | 
| 22 | 
            -
                "activity": {
         | 
| 23 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/activity"
         | 
| 24 | 
            -
                },
         | 
| 25 | 
            -
                "diff": {
         | 
| 26 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/diff"
         | 
| 27 | 
            -
                },
         | 
| 28 | 
            -
                "approve": {
         | 
| 29 | 
            -
                  "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/pullrequests/2820/approve"
         | 
| 30 | 
            -
                }
         | 
| 31 | 
            -
              },
         | 
| 32 | 
            -
              "title": "test",
         | 
| 33 | 
            -
              "close_source_branch": false,
         | 
| 34 | 
            -
              "reviewers": [],
         | 
| 35 | 
            -
              "destination": {
         | 
| 36 | 
            -
                "commit": {
         | 
| 37 | 
            -
                  "hash": "cd2506b7e620",
         | 
| 38 | 
            -
                  "links": {
         | 
| 39 | 
            -
                    "self": {
         | 
| 40 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/commit/cd2506b7e620"
         | 
| 41 | 
            -
                    }
         | 
| 42 | 
            -
                  }
         | 
| 43 | 
            -
                },
         | 
| 44 | 
            -
                "repository": {
         | 
| 45 | 
            -
                  "links": {
         | 
| 46 | 
            -
                    "self": {
         | 
| 47 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org"
         | 
| 48 | 
            -
                    },
         | 
| 49 | 
            -
                    "avatar": {
         | 
| 50 | 
            -
                      "href": "https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2012/Nov/28/tutorials.bitbucket.org-logo-1456883302-9_avatar.png"
         | 
| 51 | 
            -
                    }
         | 
| 52 | 
            -
                  },
         | 
| 53 | 
            -
                  "full_name": "tutorials/tutorials.bitbucket.org",
         | 
| 54 | 
            -
                  "name": "tutorials.bitbucket.org"
         | 
| 55 | 
            -
                },
         | 
| 56 | 
            -
                "branch": {
         | 
| 57 | 
            -
                  "name": "default"
         | 
| 58 | 
            -
                }
         | 
| 59 | 
            -
              },
         | 
| 60 | 
            -
              "reason": "",
         | 
| 61 | 
            -
              "closed_by": {
         | 
| 62 | 
            -
                "username": "tutorials",
         | 
| 63 | 
            -
                "display_name": "first name last",
         | 
| 64 | 
            -
                "links": {
         | 
| 65 | 
            -
                  "self": {
         | 
| 66 | 
            -
                    "href": "https://bitbucket.org/api/2.0/users/tutorials"
         | 
| 67 | 
            -
                  },
         | 
| 68 | 
            -
                  "avatar": {
         | 
| 69 | 
            -
                    "href": "https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2013/Jul/17/tutorials-avatar-1826704565-4_avatar.png"
         | 
| 70 | 
            -
                  }
         | 
| 71 | 
            -
                }
         | 
| 72 | 
            -
              },
         | 
| 73 | 
            -
              "source": {
         | 
| 74 | 
            -
                "commit": {
         | 
| 75 | 
            -
                  "hash": "067c283803a7",
         | 
| 76 | 
            -
                  "links": {
         | 
| 77 | 
            -
                    "self": {
         | 
| 78 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org/commit/067c283803a7"
         | 
| 79 | 
            -
                    }
         | 
| 80 | 
            -
                  }
         | 
| 81 | 
            -
                },
         | 
| 82 | 
            -
                "repository": {
         | 
| 83 | 
            -
                  "links": {
         | 
| 84 | 
            -
                    "self": {
         | 
| 85 | 
            -
                      "href": "https://bitbucket.org/api/2.0/repositories/tutorials/tutorials.bitbucket.org"
         | 
| 86 | 
            -
                    },
         | 
| 87 | 
            -
                    "avatar": {
         | 
| 88 | 
            -
                      "href": "https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2012/Nov/28/tutorials.bitbucket.org-logo-1456883302-9_avatar.png"
         | 
| 89 | 
            -
                    }
         | 
| 90 | 
            -
                  },
         | 
| 91 | 
            -
                  "full_name": "tutorials/tutorials.bitbucket.org",
         | 
| 92 | 
            -
                  "name": "tutorials.bitbucket.org"
         | 
| 93 | 
            -
                },
         | 
| 94 | 
            -
                "branch": {
         | 
| 95 | 
            -
                  "name": "againwithatest"
         | 
| 96 | 
            -
                }
         | 
| 97 | 
            -
              },
         | 
| 98 | 
            -
              "state": "DECLINED",
         | 
| 99 | 
            -
              "author": {
         | 
| 100 | 
            -
                "username": "tutorials",
         | 
| 101 | 
            -
                "display_name": "first name last",
         | 
| 102 | 
            -
                "links": {
         | 
| 103 | 
            -
                  "self": {
         | 
| 104 | 
            -
                    "href": "https://bitbucket.org/api/2.0/users/tutorials"
         | 
| 105 | 
            -
                  },
         | 
| 106 | 
            -
                  "avatar": {
         | 
| 107 | 
            -
                    "href": "https://bitbucket-assetroot.s3.amazonaws.com/c/photos/2013/Jul/17/tutorials-avatar-1826704565-4_avatar.png"
         | 
| 108 | 
            -
                  }
         | 
| 109 | 
            -
                }
         | 
| 110 | 
            -
              },
         | 
| 111 | 
            -
              "created_on": "2013-11-19T21:13:26.746009+00:00",
         | 
| 112 | 
            -
              "participants": [],
         | 
| 113 | 
            -
              "updated_on": "2013-11-19T21:14:04.620150+00:00",
         | 
| 114 | 
            -
              "merge_commit": null,
         | 
| 115 | 
            -
              "id": 2820
         | 
| 116 | 
            -
            }
         |