Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1 | = Gerrit Code Review - /changes/ REST API |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 2 | |
| 3 | This page describes the change related REST endpoints. |
| 4 | Please also take note of the general information on the |
| 5 | link:rest-api.html[REST API]. |
| 6 | |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 7 | [[change-endpoints]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 8 | == Change Endpoints |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 9 | |
Edwin Kempin | 7620274 | 2013-02-15 13:51:50 +0100 | [diff] [blame] | 10 | [[list-changes]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 11 | === Query Changes |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 12 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 13 | 'GET /changes/' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 14 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 15 | |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 16 | Queries changes visible to the caller. The query string must be |
| 17 | provided by the `q` parameter. The `n` parameter can be used to limit |
| 18 | the returned results. |
| 19 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 20 | As result a list of link:#change-info[ChangeInfo] entries is returned. |
| 21 | The change output is sorted by the last update time, most recently |
| 22 | updated to oldest updated. |
| 23 | |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 24 | Query for open changes of watched projects: |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 25 | |
| 26 | .Request |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 27 | ---- |
Edwin Kempin | 2091edb | 2013-01-23 19:07:38 +0100 | [diff] [blame] | 28 | GET /changes/?q=status:open+is:watched&n=2 HTTP/1.0 |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 29 | ---- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 30 | |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 31 | .Response |
| 32 | ---- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 33 | HTTP/1.1 200 OK |
| 34 | Content-Disposition: attachment |
| 35 | Content-Type: application/json;charset=UTF-8 |
| 36 | |
| 37 | )]}' |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 38 | [ |
| 39 | { |
| 40 | "kind": "gerritcodereview#change", |
| 41 | "id": "demo~master~Idaf5e098d70898b7119f6f4af5a6c13343d64b57", |
| 42 | "project": "demo", |
| 43 | "branch": "master", |
| 44 | "change_id": "Idaf5e098d70898b7119f6f4af5a6c13343d64b57", |
| 45 | "subject": "One change", |
| 46 | "status": "NEW", |
| 47 | "created": "2012-07-17 07:18:30.854000000", |
| 48 | "updated": "2012-07-17 07:19:27.766000000", |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 49 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 50 | "insertions": 26, |
| 51 | "deletions": 10, |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 52 | "_sortkey": "001e7057000006dc", |
| 53 | "_number": 1756, |
| 54 | "owner": { |
| 55 | "name": "John Doe" |
| 56 | }, |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 57 | }, |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 58 | { |
| 59 | "kind": "gerritcodereview#change", |
| 60 | "id": "demo~master~I09c8041b5867d5b33170316e2abc34b79bbb8501", |
| 61 | "project": "demo", |
| 62 | "branch": "master", |
| 63 | "change_id": "I09c8041b5867d5b33170316e2abc34b79bbb8501", |
| 64 | "subject": "Another change", |
| 65 | "status": "NEW", |
| 66 | "created": "2012-07-17 07:18:30.884000000", |
| 67 | "updated": "2012-07-17 07:18:30.885000000", |
| 68 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 69 | "insertions": 12, |
| 70 | "deletions": 18, |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 71 | "_sortkey": "001e7056000006dd", |
| 72 | "_number": 1757, |
| 73 | "owner": { |
| 74 | "name": "John Doe" |
| 75 | }, |
| 76 | "_more_changes": true |
| 77 | } |
| 78 | ] |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 79 | ---- |
| 80 | |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 81 | If the `n` query parameter is supplied and additional changes exist |
| 82 | that match the query beyond the end, the last change object has a |
| 83 | `_more_changes: true` JSON field set. Callers can resume a query with |
Christian Aistleitner | 5536401 | 2013-02-17 12:18:22 +0100 | [diff] [blame] | 84 | the `N` query parameter, supplying the last change's `_sortkey` field |
| 85 | as the value. When going in the reverse direction with the `P` query |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 86 | parameter a `_more_changes: true` is put in the first change object if |
| 87 | there are results *before* the first change returned. |
| 88 | |
| 89 | Clients are allowed to specify more than one query by setting the `q` |
| 90 | parameter multiple times. In this case the result is an array of |
| 91 | arrays, one per query in the same order the queries were given in. |
| 92 | |
Edwin Kempin | a64c4b9 | 2013-01-23 11:30:40 +0100 | [diff] [blame] | 93 | .Query for the 25 most recent open changes of the projects that you watch |
| 94 | **** |
| 95 | get::/changes/?q=status:open+is:watched&n=25 |
| 96 | **** |
| 97 | |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 98 | Query that retrieves changes for a user's dashboard: |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 99 | |
| 100 | .Request |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 101 | ---- |
| 102 | GET /changes/?q=is:open+owner:self&q=is:open+reviewer:self+-owner:self&q=is:closed+owner:self+limit:5&o=LABELS HTTP/1.0 |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 103 | ---- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 104 | |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 105 | .Response |
| 106 | ---- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 107 | HTTP/1.1 200 OK |
| 108 | Content-Disposition: attachment |
| 109 | Content-Type: application/json;charset=UTF-8 |
| 110 | |
| 111 | )]}' |
| 112 | [ |
| 113 | [ |
| 114 | { |
| 115 | "kind": "gerritcodereview#change", |
| 116 | "id": "demo~master~Idaf5e098d70898b7119f6f4af5a6c13343d64b57", |
| 117 | "project": "demo", |
| 118 | "branch": "master", |
| 119 | "change_id": "Idaf5e098d70898b7119f6f4af5a6c13343d64b57", |
| 120 | "subject": "One change", |
| 121 | "status": "NEW", |
| 122 | "created": "2012-07-17 07:18:30.854000000", |
| 123 | "updated": "2012-07-17 07:19:27.766000000", |
Edwin Kempin | db1f0b8 | 2013-02-21 15:07:00 +0100 | [diff] [blame] | 124 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 125 | "insertions": 4, |
| 126 | "deletions": 7, |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 127 | "_sortkey": "001e7057000006dc", |
| 128 | "_number": 1756, |
| 129 | "owner": { |
| 130 | "name": "John Doe" |
| 131 | }, |
| 132 | "labels": { |
| 133 | "Verified": {}, |
| 134 | "Code-Review": {} |
| 135 | } |
| 136 | } |
| 137 | ], |
| 138 | [], |
| 139 | [] |
| 140 | ] |
| 141 | ---- |
| 142 | |
Edwin Kempin | a64c4b9 | 2013-01-23 11:30:40 +0100 | [diff] [blame] | 143 | .Query the changes for your user dashboard |
| 144 | **** |
| 145 | get::/changes/?q=is:open+owner:self&q=is:open+reviewer:self+-owner:self&q=is:closed+owner:self+limit:5&o=LABELS |
| 146 | **** |
| 147 | |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 148 | Additional fields can be obtained by adding `o` parameters, each |
| 149 | option requires more database lookups and slows down the query |
| 150 | response time to the client so they are generally disabled by |
| 151 | default. Optional fields are: |
| 152 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 153 | [[labels]] |
| 154 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 155 | * `LABELS`: a summary of each label required for submit, and |
| 156 | approvers that have granted (or rejected) with that label. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 157 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 158 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 159 | [[detailed-labels]] |
| 160 | -- |
Dave Borowitz | 4c7231a | 2013-01-30 16:18:59 -0800 | [diff] [blame] | 161 | * `DETAILED_LABELS`: detailed label information, including numeric |
Dave Borowitz | 992ddd7 | 2013-02-13 11:53:17 -0800 | [diff] [blame] | 162 | values of all existing approvals, recognized label values, values |
| 163 | permitted to be set by the current user, and reviewers that may be |
| 164 | removed by the current user. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 165 | -- |
Dave Borowitz | 4c7231a | 2013-01-30 16:18:59 -0800 | [diff] [blame] | 166 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 167 | [[current-revision]] |
| 168 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 169 | * `CURRENT_REVISION`: describe the current revision (patch set) |
| 170 | of the change, including the commit SHA-1 and URLs to fetch from. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 171 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 172 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 173 | [[all-revisions]] |
| 174 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 175 | * `ALL_REVISIONS`: describe all revisions, not just current. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 176 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 177 | |
Edwin Kempin | ea62148 | 2013-10-16 12:58:24 +0200 | [diff] [blame] | 178 | [[download_commands]] |
| 179 | -- |
| 180 | * `DOWNLOAD_COMMANDS`: include the `commands` field in the |
| 181 | link:#fetch-info[FetchInfo] for revisions. Only valid when the |
| 182 | `CURRENT_REVISION` or `ALL_REVISIONS` option is selected. |
| 183 | -- |
| 184 | |
David Ostrovsky | 17d0d33 | 2013-09-30 21:36:09 +0200 | [diff] [blame] | 185 | [[draft_comments]] |
| 186 | -- |
| 187 | * `DRAFT_COMMENTS`: include the `has_draft_comments` field for |
| 188 | revisions. Only valid when the `CURRENT_REVISION` or `ALL_REVISIONS` |
| 189 | option is selected. |
Dave Borowitz | 685bad9 | 2013-10-03 11:24:07 -0700 | [diff] [blame] | 190 | -- |
David Ostrovsky | 17d0d33 | 2013-09-30 21:36:09 +0200 | [diff] [blame] | 191 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 192 | [[current-commit]] |
| 193 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 194 | * `CURRENT_COMMIT`: parse and output all header fields from the |
David Pursehouse | 98006e8 | 2013-10-02 10:15:52 +0900 | [diff] [blame] | 195 | commit object, including message. Only valid when the |
| 196 | `CURRENT_REVISION` or `ALL_REVISIONS` option is selected. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 197 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 198 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 199 | [[all-commits]] |
| 200 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 201 | * `ALL_COMMITS`: parse and output all header fields from the |
| 202 | output revisions. If only `CURRENT_REVISION` was requested |
| 203 | then only the current revision's commit data will be output. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 204 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 205 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 206 | [[current-files]] |
| 207 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 208 | * `CURRENT_FILES`: list files modified by the commit, including |
| 209 | basic line counts inserted/deleted per file. Only valid when |
David Pursehouse | 98006e8 | 2013-10-02 10:15:52 +0900 | [diff] [blame] | 210 | the `CURRENT_REVISION` or `ALL_REVISIONS` option is selected. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 211 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 212 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 213 | [[all-files]] |
| 214 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 215 | * `ALL_FILES`: list files modified by the commit, including |
| 216 | basic line counts inserted/deleted per file. If only the |
David Pursehouse | 98006e8 | 2013-10-02 10:15:52 +0900 | [diff] [blame] | 217 | `CURRENT_REVISION` was requested then only that commit's |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 218 | modified files will be output. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 219 | -- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 220 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 221 | [[detailed-accounts]] |
| 222 | -- |
Edwin Kempin | 4a00e22 | 2013-10-16 14:34:24 +0200 | [diff] [blame] | 223 | * `DETAILED_ACCOUNTS`: include `_account_id`, `email` and `username` |
| 224 | fields when referencing accounts. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 225 | -- |
Dave Borowitz | 8926a88 | 2013-02-01 14:32:48 -0800 | [diff] [blame] | 226 | |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 227 | [[messages]] |
| 228 | -- |
| 229 | * `MESSAGES`: include messages associated with the change. |
| 230 | -- |
| 231 | |
Shawn Pearce | dc4a9b2 | 2013-07-12 10:54:38 -0700 | [diff] [blame] | 232 | [[actions]] |
| 233 | -- |
| 234 | * `CURRENT_ACTIONS`: include information on available actions |
| 235 | for the change and its current revision. The caller must be |
| 236 | authenticated to obtain the available actions. |
| 237 | -- |
| 238 | |
Shawn Pearce | 414c5ff | 2013-09-06 21:51:02 -0700 | [diff] [blame] | 239 | [[reviewed]] |
| 240 | -- |
| 241 | * `REVIEWED`: include the `reviewed` field if the caller is |
| 242 | authenticated and has commented on the current revision. |
| 243 | -- |
| 244 | |
Sven Selberg | ae1a10c | 2014-02-14 14:24:29 +0100 | [diff] [blame] | 245 | [[patch-set-links]] |
| 246 | -- |
Edwin Kempin | 4eac964 | 2014-04-11 16:07:27 +0200 | [diff] [blame] | 247 | * `PATCHSET_LINKS`: include the `web_links` field. |
Sven Selberg | ae1a10c | 2014-02-14 14:24:29 +0100 | [diff] [blame] | 248 | -- |
| 249 | |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 250 | .Request |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 251 | ---- |
Edwin Kempin | ea62148 | 2013-10-16 12:58:24 +0200 | [diff] [blame] | 252 | GET /changes/?q=97&o=CURRENT_REVISION&o=CURRENT_COMMIT&o=CURRENT_FILES&o=DOWNLOAD_COMMANDS HTTP/1.0 |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 253 | ---- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 254 | |
Edwin Kempin | 3744083 | 2013-02-06 11:36:00 +0100 | [diff] [blame] | 255 | .Response |
| 256 | ---- |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 257 | HTTP/1.1 200 OK |
| 258 | Content-Disposition: attachment |
| 259 | Content-Type: application/json;charset=UTF-8 |
| 260 | |
| 261 | )]}' |
| 262 | [ |
| 263 | { |
| 264 | "kind": "gerritcodereview#change", |
| 265 | "id": "demo~master~I7ea46d2e2ee5c64c0d807677859cfb7d90b8966a", |
| 266 | "project": "gerrit", |
| 267 | "branch": "master", |
| 268 | "change_id": "I7ea46d2e2ee5c64c0d807677859cfb7d90b8966a", |
| 269 | "subject": "Use an EventBus to manage star icons", |
| 270 | "status": "NEW", |
| 271 | "created": "2012-04-25 00:52:25.580000000", |
| 272 | "updated": "2012-04-25 00:52:25.586000000", |
Edwin Kempin | db1f0b8 | 2013-02-21 15:07:00 +0100 | [diff] [blame] | 273 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 274 | "insertions": 16, |
| 275 | "deletions": 7, |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 276 | "_sortkey": "001c9bf400000061", |
| 277 | "_number": 97, |
| 278 | "owner": { |
| 279 | "name": "Shawn Pearce" |
| 280 | }, |
| 281 | "current_revision": "184ebe53805e102605d11f6b143486d15c23a09c", |
| 282 | "revisions": { |
| 283 | "184ebe53805e102605d11f6b143486d15c23a09c": { |
| 284 | "_number": 1, |
| 285 | "fetch": { |
| 286 | "git": { |
| 287 | "url": "git://localhost/gerrit", |
Edwin Kempin | ea62148 | 2013-10-16 12:58:24 +0200 | [diff] [blame] | 288 | "ref": "refs/changes/97/97/1", |
| 289 | "commands": { |
| 290 | "Checkout": "git fetch git://localhost/gerrit refs/changes/97/97/1 \u0026\u0026 git checkout FETCH_HEAD", |
| 291 | "Cherry-Pick": "git fetch git://localhost/gerrit refs/changes/97/97/1 \u0026\u0026 git cherry-pick FETCH_HEAD", |
| 292 | "Format-Patch": "git fetch git://localhost/gerrit refs/changes/97/97/1 \u0026\u0026 git format-patch -1 --stdout FETCH_HEAD", |
| 293 | "Pull": "git pull git://localhost/gerrit refs/changes/97/97/1" |
| 294 | } |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 295 | }, |
| 296 | "http": { |
Edwin Kempin | ea62148 | 2013-10-16 12:58:24 +0200 | [diff] [blame] | 297 | "url": "http://myuser@127.0.0.1:8080/gerrit", |
| 298 | "ref": "refs/changes/97/97/1", |
| 299 | "commands": { |
| 300 | "Checkout": "git fetch http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1 \u0026\u0026 git checkout FETCH_HEAD", |
| 301 | "Cherry-Pick": "git fetch http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1 \u0026\u0026 git cherry-pick FETCH_HEAD", |
| 302 | "Format-Patch": "git fetch http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1 \u0026\u0026 git format-patch -1 --stdout FETCH_HEAD", |
| 303 | "Pull": "git pull http://myuser@127.0.0.1:8080/gerrit refs/changes/97/97/1" |
| 304 | } |
| 305 | }, |
| 306 | "ssh": { |
| 307 | "url": "ssh://myuser@*:29418/gerrit", |
| 308 | "ref": "refs/changes/97/97/1", |
| 309 | "commands": { |
| 310 | "Checkout": "git fetch ssh://myuser@*:29418/gerrit refs/changes/97/97/1 \u0026\u0026 git checkout FETCH_HEAD", |
| 311 | "Cherry-Pick": "git fetch ssh://myuser@*:29418/gerrit refs/changes/97/97/1 \u0026\u0026 git cherry-pick FETCH_HEAD", |
| 312 | "Format-Patch": "git fetch ssh://myuser@*:29418/gerrit refs/changes/97/97/1 \u0026\u0026 git format-patch -1 --stdout FETCH_HEAD", |
| 313 | "Pull": "git pull ssh://myuser@*:29418/gerrit refs/changes/97/97/1" |
| 314 | } |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 315 | } |
| 316 | }, |
| 317 | "commit": { |
| 318 | "parents": [ |
| 319 | { |
| 320 | "commit": "1eee2c9d8f352483781e772f35dc586a69ff5646", |
| 321 | "subject": "Migrate contributor agreements to All-Projects." |
| 322 | } |
| 323 | ], |
| 324 | "author": { |
| 325 | "name": "Shawn O. Pearce", |
| 326 | "email": "sop@google.com", |
| 327 | "date": "2012-04-24 18:08:08.000000000", |
| 328 | "tz": -420 |
| 329 | }, |
| 330 | "committer": { |
| 331 | "name": "Shawn O. Pearce", |
| 332 | "email": "sop@google.com", |
| 333 | "date": "2012-04-24 18:08:08.000000000", |
| 334 | "tz": -420 |
| 335 | }, |
| 336 | "subject": "Use an EventBus to manage star icons", |
| 337 | "message": "Use an EventBus to manage star icons\n\nImage widgets that need to ..." |
| 338 | }, |
| 339 | "files": { |
| 340 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeCache.java": { |
| 341 | "lines_deleted": 8 |
| 342 | }, |
| 343 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeDetailCache.java": { |
| 344 | "lines_inserted": 1 |
| 345 | }, |
| 346 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeScreen.java": { |
| 347 | "lines_inserted": 11, |
| 348 | "lines_deleted": 19 |
| 349 | }, |
| 350 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/ChangeTable.java": { |
| 351 | "lines_inserted": 23, |
| 352 | "lines_deleted": 20 |
| 353 | }, |
| 354 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarCache.java": { |
| 355 | "status": "D", |
| 356 | "lines_deleted": 139 |
| 357 | }, |
| 358 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/changes/StarredChanges.java": { |
| 359 | "status": "A", |
| 360 | "lines_inserted": 204 |
| 361 | }, |
| 362 | "gerrit-gwtui/src/main/java/com/google/gerrit/client/ui/Screen.java": { |
| 363 | "lines_deleted": 9 |
| 364 | } |
| 365 | } |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | ] |
| 370 | ---- |
| 371 | |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 372 | [[get-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 373 | === Get Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 374 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 375 | 'GET /changes/link:#change-id[\{change-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 376 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 377 | |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 378 | Retrieves a change. |
| 379 | |
Dave Borowitz | 0314f73 | 2013-10-03 09:34:30 -0700 | [diff] [blame] | 380 | Additional fields can be obtained by adding `o` parameters, each |
| 381 | option requires more database lookups and slows down the query |
| 382 | response time to the client so they are generally disabled by |
| 383 | default. Fields are described in link:#list-changes[Query Changes]. |
| 384 | |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 385 | .Request |
| 386 | ---- |
| 387 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940 HTTP/1.0 |
| 388 | ---- |
| 389 | |
| 390 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 391 | describes the change. |
| 392 | |
| 393 | .Response |
| 394 | ---- |
| 395 | HTTP/1.1 200 OK |
| 396 | Content-Disposition: attachment |
| 397 | Content-Type: application/json;charset=UTF-8 |
| 398 | |
| 399 | )]}' |
| 400 | { |
| 401 | "kind": "gerritcodereview#change", |
| 402 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 403 | "project": "myProject", |
| 404 | "branch": "master", |
| 405 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 406 | "subject": "Implementing Feature X", |
| 407 | "status": "NEW", |
| 408 | "created": "2013-02-01 09:59:32.126000000", |
| 409 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 410 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 411 | "insertions": 34, |
| 412 | "deletions": 101, |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 413 | "_sortkey": "0023412400000f7d", |
| 414 | "_number": 3965, |
| 415 | "owner": { |
| 416 | "name": "John Doe" |
| 417 | } |
| 418 | } |
| 419 | ---- |
| 420 | |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 421 | [[get-change-detail]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 422 | === Get Change Detail |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 423 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 424 | 'GET /changes/link:#change-id[\{change-id\}]/detail' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 425 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 426 | |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 427 | Retrieves a change with link:#labels[labels], link:#detailed-labels[ |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 428 | detailed labels], link:#detailed-accounts[detailed accounts], and |
| 429 | link:#messages[messages]. |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 430 | |
Shawn Pearce | 7f3dccf | 2013-07-06 19:24:29 -0700 | [diff] [blame] | 431 | Additional fields can be obtained by adding `o` parameters, each |
| 432 | option requires more database lookups and slows down the query |
| 433 | response time to the client so they are generally disabled by |
| 434 | default. Fields are described in link:#list-changes[Query Changes]. |
| 435 | |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 436 | .Request |
| 437 | ---- |
| 438 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/detail HTTP/1.0 |
| 439 | ---- |
| 440 | |
| 441 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 442 | describes the change. |
| 443 | |
| 444 | .Response |
| 445 | ---- |
| 446 | HTTP/1.1 200 OK |
| 447 | Content-Disposition: attachment |
| 448 | Content-Type: application/json;charset=UTF-8 |
| 449 | |
| 450 | )]}' |
| 451 | { |
| 452 | "kind": "gerritcodereview#change", |
| 453 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 454 | "project": "myProject", |
| 455 | "branch": "master", |
| 456 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 457 | "subject": "Implementing Feature X", |
| 458 | "status": "NEW", |
| 459 | "created": "2013-02-01 09:59:32.126000000", |
| 460 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 461 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 462 | "insertions": 126, |
| 463 | "deletions": 11, |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 464 | "_sortkey": "0023412400000f7d", |
| 465 | "_number": 3965, |
| 466 | "owner": { |
| 467 | "_account_id": 1000096, |
| 468 | "name": "John Doe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 469 | "email": "john.doe@example.com", |
| 470 | "username": "jdoe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 471 | }, |
| 472 | "labels": { |
| 473 | "Verified": { |
| 474 | "all": [ |
| 475 | { |
| 476 | "value": 0, |
| 477 | "_account_id": 1000096, |
| 478 | "name": "John Doe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 479 | "email": "john.doe@example.com", |
| 480 | "username": "jdoe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 481 | }, |
| 482 | { |
| 483 | "value": 0, |
| 484 | "_account_id": 1000097, |
| 485 | "name": "Jane Roe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 486 | "email": "jane.roe@example.com", |
| 487 | "username": "jroe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 488 | } |
| 489 | ], |
| 490 | "values": { |
| 491 | "-1": "Fails", |
| 492 | " 0": "No score", |
| 493 | "+1": "Verified" |
| 494 | } |
| 495 | }, |
| 496 | "Code-Review": { |
| 497 | "recommended": { |
| 498 | "_account_id": 1000097, |
| 499 | "name": "Jane Roe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 500 | "email": "jane.roe@example.com", |
| 501 | "username": "jroe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 502 | }, |
| 503 | "disliked": { |
| 504 | "_account_id": 1000096, |
| 505 | "name": "John Doe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 506 | "email": "john.doe@example.com", |
| 507 | "username": "jdoe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 508 | }, |
| 509 | "all": [ |
| 510 | { |
| 511 | "value": -1, |
| 512 | "_account_id": 1000096, |
| 513 | "name": "John Doe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 514 | "email": "john.doe@example.com", |
| 515 | "username": "jdoe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 516 | }, |
| 517 | { |
| 518 | "value": 1, |
| 519 | "_account_id": 1000097, |
| 520 | "name": "Jane Roe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 521 | "email": "jane.roe@example.com", |
| 522 | "username": "jroe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 523 | } |
| 524 | ] |
| 525 | "values": { |
Paul Fertser | 2474e52 | 2014-01-23 10:00:59 +0400 | [diff] [blame] | 526 | "-2": "This shall not be merged", |
| 527 | "-1": "I would prefer this is not merged as is", |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 528 | " 0": "No score", |
| 529 | "+1": "Looks good to me, but someone else must approve", |
| 530 | "+2": "Looks good to me, approved" |
| 531 | } |
| 532 | } |
| 533 | }, |
| 534 | "permitted_labels": { |
| 535 | "Verified": [ |
| 536 | "-1", |
| 537 | " 0", |
| 538 | "+1" |
| 539 | ], |
| 540 | "Code-Review": [ |
| 541 | "-2", |
| 542 | "-1", |
| 543 | " 0", |
| 544 | "+1", |
| 545 | "+2" |
| 546 | ] |
| 547 | }, |
| 548 | "removable_reviewers": [ |
| 549 | { |
| 550 | "_account_id": 1000096, |
| 551 | "name": "John Doe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 552 | "email": "john.doe@example.com", |
| 553 | "username": "jdoe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 554 | }, |
| 555 | { |
| 556 | "_account_id": 1000097, |
| 557 | "name": "Jane Roe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 558 | "email": "jane.roe@example.com", |
| 559 | "username": "jroe" |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 560 | } |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 561 | ], |
| 562 | "messages": [ |
| 563 | { |
| 564 | "id": "YH-egE", |
| 565 | "author": { |
| 566 | "_account_id": 1000096, |
| 567 | "name": "John Doe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 568 | "email": "john.doe@example.com", |
| 569 | "username": "jdoe" |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 570 | }, |
| 571 | "updated": "2013-03-23 21:34:02.419000000", |
| 572 | "message": "Patch Set 1:\n\nThis is the first message.", |
| 573 | "revision_number": 1 |
| 574 | }, |
| 575 | { |
| 576 | "id": "WEEdhU", |
| 577 | "author": { |
| 578 | "_account_id": 1000097, |
| 579 | "name": "Jane Roe", |
Edwin Kempin | 65886f0 | 2013-10-16 15:03:17 +0200 | [diff] [blame] | 580 | "email": "jane.roe@example.com", |
| 581 | "username": "jroe" |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 582 | }, |
| 583 | "updated": "2013-03-23 21:36:52.332000000", |
| 584 | "message": "Patch Set 1:\n\nThis is the second message.\n\nWith a line break.", |
| 585 | "revision_number": 1 |
| 586 | } |
Edwin Kempin | 8e49220 | 2013-02-21 15:38:25 +0100 | [diff] [blame] | 587 | ] |
| 588 | } |
| 589 | ---- |
| 590 | |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 591 | [[get-topic]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 592 | === Get Topic |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 593 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 594 | 'GET /changes/link:#change-id[\{change-id\}]/topic' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 595 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 596 | |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 597 | Retrieves the topic of a change. |
| 598 | |
| 599 | .Request |
| 600 | ---- |
| 601 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/topic HTTP/1.0 |
| 602 | ---- |
| 603 | |
| 604 | .Response |
| 605 | ---- |
| 606 | HTTP/1.1 200 OK |
| 607 | Content-Disposition: attachment |
| 608 | Content-Type: application/json;charset=UTF-8 |
| 609 | |
| 610 | )]}' |
| 611 | "Documentation" |
| 612 | ---- |
| 613 | |
| 614 | If the change does not have a topic an empty string is returned. |
| 615 | |
| 616 | [[set-topic]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 617 | === Set Topic |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 618 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 619 | 'PUT /changes/link:#change-id[\{change-id\}]/topic' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 620 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 621 | |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 622 | Sets the topic of a change. |
| 623 | |
| 624 | The new topic must be provided in the request body inside a |
| 625 | link:#topic-input[TopicInput] entity. |
| 626 | |
| 627 | .Request |
| 628 | ---- |
| 629 | PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/topic HTTP/1.0 |
| 630 | Content-Type: application/json;charset=UTF-8 |
| 631 | |
| 632 | { |
| 633 | "topic": "Documentation" |
| 634 | } |
| 635 | ---- |
| 636 | |
| 637 | As response the new topic is returned. |
| 638 | |
| 639 | .Response |
| 640 | ---- |
| 641 | HTTP/1.1 200 OK |
| 642 | Content-Disposition: attachment |
| 643 | Content-Type: application/json;charset=UTF-8 |
| 644 | |
| 645 | )]}' |
| 646 | "Documentation" |
| 647 | ---- |
| 648 | |
| 649 | If the topic was deleted the response is "`204 No Content`". |
| 650 | |
| 651 | [[delete-topic]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 652 | === Delete Topic |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 653 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 654 | 'DELETE /changes/link:#change-id[\{change-id\}]/topic' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 655 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 656 | |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 657 | Deletes the topic of a change. |
| 658 | |
| 659 | The request body does not need to include a link:#topic-input[ |
| 660 | TopicInput] entity if no review comment is added. |
| 661 | |
| 662 | Please note that some proxies prohibit request bodies for DELETE |
| 663 | requests. In this case, if you want to specify a commit message, use |
| 664 | link:#set-topic[PUT] to delete the topic. |
| 665 | |
| 666 | .Request |
| 667 | ---- |
| 668 | DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/topic HTTP/1.0 |
| 669 | ---- |
| 670 | |
| 671 | .Response |
| 672 | ---- |
| 673 | HTTP/1.1 204 No Content |
| 674 | ---- |
| 675 | |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 676 | [[abandon-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 677 | === Abandon Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 678 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 679 | 'POST /changes/link:#change-id[\{change-id\}]/abandon' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 680 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 681 | |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 682 | Abandons a change. |
| 683 | |
| 684 | The request body does not need to include a link:#abandon-input[ |
| 685 | AbandonInput] entity if no review comment is added. |
| 686 | |
| 687 | .Request |
| 688 | ---- |
| 689 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/abandon HTTP/1.0 |
| 690 | ---- |
| 691 | |
| 692 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 693 | describes the abandoned change. |
| 694 | |
| 695 | .Response |
| 696 | ---- |
| 697 | HTTP/1.1 200 OK |
| 698 | Content-Disposition: attachment |
| 699 | Content-Type: application/json;charset=UTF-8 |
| 700 | |
| 701 | )]}' |
| 702 | { |
| 703 | "kind": "gerritcodereview#change", |
| 704 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 705 | "project": "myProject", |
| 706 | "branch": "master", |
| 707 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 708 | "subject": "Implementing Feature X", |
| 709 | "status": "ABANDONED", |
| 710 | "created": "2013-02-01 09:59:32.126000000", |
| 711 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 712 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 713 | "insertions": 3, |
| 714 | "deletions": 310, |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 715 | "_sortkey": "0023412400000f7d", |
| 716 | "_number": 3965, |
| 717 | "owner": { |
| 718 | "name": "John Doe" |
| 719 | } |
| 720 | } |
| 721 | ---- |
| 722 | |
| 723 | If the change cannot be abandoned because the change state doesn't |
| 724 | allow abandoning of the change, the response is "`409 Conflict`" and |
| 725 | the error message is contained in the response body. |
| 726 | |
| 727 | .Response |
| 728 | ---- |
| 729 | HTTP/1.1 409 Conflict |
| 730 | Content-Disposition: attachment |
| 731 | Content-Type: text/plain;charset=UTF-8 |
| 732 | |
| 733 | change is merged |
| 734 | ---- |
| 735 | |
| 736 | [[restore-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 737 | === Restore Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 738 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 739 | 'POST /changes/link:#change-id[\{change-id\}]/restore' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 740 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 741 | |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 742 | Restores a change. |
| 743 | |
| 744 | The request body does not need to include a link:#restore-input[ |
| 745 | RestoreInput] entity if no review comment is added. |
| 746 | |
| 747 | .Request |
| 748 | ---- |
| 749 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/restore HTTP/1.0 |
| 750 | ---- |
| 751 | |
| 752 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 753 | describes the restored change. |
| 754 | |
| 755 | .Response |
| 756 | ---- |
| 757 | HTTP/1.1 200 OK |
| 758 | Content-Disposition: attachment |
| 759 | Content-Type: application/json;charset=UTF-8 |
| 760 | |
| 761 | )]}' |
| 762 | { |
| 763 | "kind": "gerritcodereview#change", |
| 764 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 765 | "project": "myProject", |
| 766 | "branch": "master", |
| 767 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 768 | "subject": "Implementing Feature X", |
| 769 | "status": "NEW", |
| 770 | "created": "2013-02-01 09:59:32.126000000", |
| 771 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 772 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 773 | "insertions": 2, |
| 774 | "deletions": 13, |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 775 | "_sortkey": "0023412400000f7d", |
| 776 | "_number": 3965, |
| 777 | "owner": { |
| 778 | "name": "John Doe" |
| 779 | } |
| 780 | } |
| 781 | ---- |
| 782 | |
| 783 | If the change cannot be restored because the change state doesn't |
| 784 | allow restoring the change, the response is "`409 Conflict`" and |
| 785 | the error message is contained in the response body. |
| 786 | |
| 787 | .Response |
| 788 | ---- |
| 789 | HTTP/1.1 409 Conflict |
| 790 | Content-Disposition: attachment |
| 791 | Content-Type: text/plain;charset=UTF-8 |
| 792 | |
| 793 | change is new |
| 794 | ---- |
| 795 | |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 796 | [[rebase-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 797 | === Rebase Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 798 | -- |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 799 | 'POST /changes/link:#change-id[\{change-id\}]/rebase' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 800 | -- |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 801 | |
| 802 | Rebases a change. |
| 803 | |
| 804 | .Request |
| 805 | ---- |
| 806 | POST /changes/myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2/rebase HTTP/1.0 |
| 807 | ---- |
| 808 | |
| 809 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 810 | describes the rebased change. Information about the current patch set |
| 811 | is included. |
| 812 | |
| 813 | .Response |
| 814 | ---- |
| 815 | HTTP/1.1 200 OK |
| 816 | Content-Disposition: attachment |
| 817 | Content-Type: application/json;charset=UTF-8 |
| 818 | |
| 819 | )]}' |
| 820 | { |
| 821 | "kind": "gerritcodereview#change", |
| 822 | "id": "myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2", |
| 823 | "project": "myProject", |
| 824 | "branch": "master", |
| 825 | "change_id": "I3ea943139cb62e86071996f2480e58bf3eeb9dd2", |
| 826 | "subject": "Implement Feature X", |
| 827 | "status": "NEW", |
| 828 | "created": "2013-02-01 09:59:32.126000000", |
| 829 | "updated": "2013-02-21 11:16:36.775000000", |
| 830 | "mergeable": false, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 831 | "insertions": 33, |
| 832 | "deletions": 9, |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 833 | "_sortkey": "0024cf9a000012bf", |
| 834 | "_number": 4799, |
| 835 | "owner": { |
| 836 | "name": "John Doe" |
| 837 | }, |
| 838 | "current_revision": "27cc4558b5a3d3387dd11ee2df7a117e7e581822", |
| 839 | "revisions": { |
| 840 | "27cc4558b5a3d3387dd11ee2df7a117e7e581822": { |
| 841 | "_number": 2, |
| 842 | "fetch": { |
| 843 | "http": { |
| 844 | "url": "http://gerrit:8080/myProject", |
| 845 | "ref": "refs/changes/99/4799/2" |
| 846 | } |
| 847 | }, |
| 848 | "commit": { |
| 849 | "parents": [ |
| 850 | { |
| 851 | "commit": "b4003890dadd406d80222bf1ad8aca09a4876b70", |
| 852 | "subject": "Implement Feature A" |
| 853 | } |
| 854 | ], |
| 855 | "author": { |
| 856 | "name": "John Doe", |
| 857 | "email": "john.doe@example.com", |
| 858 | "date": "2013-05-07 15:21:27.000000000", |
| 859 | "tz": 120 |
| 860 | }, |
| 861 | "committer": { |
| 862 | "name": "Gerrit Code Review", |
| 863 | "email": "gerrit-server@example.com", |
| 864 | "date": "2013-05-07 15:35:43.000000000", |
| 865 | "tz": 120 |
| 866 | }, |
| 867 | "subject": "Implement Feature X", |
| 868 | "message": "Implement Feature X\n\nAdded feature X." |
| 869 | } |
| 870 | } |
| 871 | } |
| 872 | ---- |
| 873 | |
| 874 | If the change cannot be rebased, e.g. due to conflicts, the response is |
| 875 | "`409 Conflict`" and the error message is contained in the response |
| 876 | body. |
| 877 | |
| 878 | .Response |
| 879 | ---- |
| 880 | HTTP/1.1 409 Conflict |
| 881 | Content-Disposition: attachment |
| 882 | Content-Type: text/plain;charset=UTF-8 |
| 883 | |
| 884 | The change could not be rebased due to a path conflict during merge. |
| 885 | ---- |
| 886 | |
Edwin Kempin | d2ec415 | 2013-02-22 12:17:19 +0100 | [diff] [blame] | 887 | [[revert-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 888 | === Revert Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 889 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 890 | 'POST /changes/link:#change-id[\{change-id\}]/revert' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 891 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 892 | |
Edwin Kempin | d2ec415 | 2013-02-22 12:17:19 +0100 | [diff] [blame] | 893 | Reverts a change. |
| 894 | |
| 895 | The request body does not need to include a link:#revert-input[ |
| 896 | RevertInput] entity if no review comment is added. |
| 897 | |
| 898 | .Request |
| 899 | ---- |
| 900 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revert HTTP/1.0 |
| 901 | ---- |
| 902 | |
| 903 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 904 | describes the reverting change. |
| 905 | |
| 906 | .Response |
| 907 | ---- |
| 908 | HTTP/1.1 200 OK |
| 909 | Content-Disposition: attachment |
| 910 | Content-Type: application/json;charset=UTF-8 |
| 911 | |
| 912 | )]}' |
| 913 | { |
| 914 | "kind": "gerritcodereview#change", |
| 915 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 916 | "project": "myProject", |
| 917 | "branch": "master", |
| 918 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 919 | "subject": "Revert \"Implementing Feature X\"", |
| 920 | "status": "NEW", |
| 921 | "created": "2013-02-01 09:59:32.126000000", |
| 922 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | d2ec415 | 2013-02-22 12:17:19 +0100 | [diff] [blame] | 923 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 924 | "insertions": 6, |
| 925 | "deletions": 4, |
Edwin Kempin | d2ec415 | 2013-02-22 12:17:19 +0100 | [diff] [blame] | 926 | "_sortkey": "0023412400000f7d", |
| 927 | "_number": 3965, |
| 928 | "owner": { |
| 929 | "name": "John Doe" |
| 930 | } |
| 931 | } |
| 932 | ---- |
| 933 | |
| 934 | If the change cannot be reverted because the change state doesn't |
| 935 | allow reverting the change, the response is "`409 Conflict`" and |
| 936 | the error message is contained in the response body. |
| 937 | |
| 938 | .Response |
| 939 | ---- |
| 940 | HTTP/1.1 409 Conflict |
| 941 | Content-Disposition: attachment |
| 942 | Content-Type: text/plain;charset=UTF-8 |
| 943 | |
| 944 | change is new |
| 945 | ---- |
| 946 | |
Edwin Kempin | 0eddba0 | 2013-02-22 15:30:12 +0100 | [diff] [blame] | 947 | [[submit-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 948 | === Submit Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 949 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 950 | 'POST /changes/link:#change-id[\{change-id\}]/submit' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 951 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 952 | |
Edwin Kempin | 0eddba0 | 2013-02-22 15:30:12 +0100 | [diff] [blame] | 953 | Submits a change. |
| 954 | |
| 955 | The request body only needs to include a link:#submit-input[ |
| 956 | SubmitInput] entity if the request should wait for the merge to |
| 957 | complete. |
| 958 | |
| 959 | .Request |
| 960 | ---- |
| 961 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/submit HTTP/1.0 |
| 962 | Content-Type: application/json;charset=UTF-8 |
| 963 | |
| 964 | { |
| 965 | "wait_for_merge": true |
| 966 | } |
| 967 | ---- |
| 968 | |
| 969 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 970 | describes the submitted/merged change. |
| 971 | |
| 972 | .Response |
| 973 | ---- |
| 974 | HTTP/1.1 200 OK |
| 975 | Content-Disposition: attachment |
| 976 | Content-Type: application/json;charset=UTF-8 |
| 977 | |
| 978 | )]}' |
| 979 | { |
| 980 | "kind": "gerritcodereview#change", |
| 981 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 982 | "project": "myProject", |
| 983 | "branch": "master", |
| 984 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 985 | "subject": "Implementing Feature X", |
| 986 | "status": "MERGED", |
| 987 | "created": "2013-02-01 09:59:32.126000000", |
| 988 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | 0eddba0 | 2013-02-22 15:30:12 +0100 | [diff] [blame] | 989 | "_sortkey": "0023412400000f7d", |
| 990 | "_number": 3965, |
| 991 | "owner": { |
| 992 | "name": "John Doe" |
| 993 | } |
| 994 | } |
| 995 | ---- |
| 996 | |
| 997 | If the change cannot be submitted because the submit rule doesn't allow |
| 998 | submitting the change, the response is "`409 Conflict`" and the error |
| 999 | message is contained in the response body. |
| 1000 | |
| 1001 | .Response |
| 1002 | ---- |
| 1003 | HTTP/1.1 409 Conflict |
| 1004 | Content-Disposition: attachment |
| 1005 | Content-Type: text/plain;charset=UTF-8 |
| 1006 | |
| 1007 | blocked by Verified |
| 1008 | ---- |
| 1009 | |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1010 | [[publish-draft-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1011 | === Publish Draft Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1012 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1013 | 'POST /changes/link:#change-id[\{change-id\}]/publish' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1014 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1015 | |
| 1016 | Publishes a draft change. |
| 1017 | |
| 1018 | .Request |
| 1019 | ---- |
| 1020 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/publish HTTP/1.0 |
| 1021 | Content-Type: application/json;charset=UTF-8 |
| 1022 | ---- |
| 1023 | |
| 1024 | .Response |
| 1025 | ---- |
| 1026 | HTTP/1.1 204 No Content |
| 1027 | ---- |
| 1028 | |
| 1029 | [[delete-draft-change]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1030 | === Delete Draft Change |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1031 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1032 | 'DELETE /changes/link:#change-id[\{change-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1033 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1034 | |
| 1035 | Deletes a draft change. |
| 1036 | |
| 1037 | .Request |
| 1038 | ---- |
| 1039 | DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940 HTTP/1.0 |
| 1040 | Content-Type: application/json;charset=UTF-8 |
| 1041 | ---- |
| 1042 | |
| 1043 | .Response |
| 1044 | ---- |
| 1045 | HTTP/1.1 204 No Content |
| 1046 | ---- |
| 1047 | |
David Ostrovsky | 83e8aee | 2013-09-30 22:37:26 +0200 | [diff] [blame] | 1048 | [[get-included-in]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1049 | === Get Included In |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1050 | -- |
David Ostrovsky | 83e8aee | 2013-09-30 22:37:26 +0200 | [diff] [blame] | 1051 | 'GET /changes/link:#change-id[\{change-id\}]/in' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1052 | -- |
David Ostrovsky | 83e8aee | 2013-09-30 22:37:26 +0200 | [diff] [blame] | 1053 | |
| 1054 | Retrieves the branches and tags in which a change is included. As result |
| 1055 | an link:#included-in-info[IncludedInInfo] entity is returned. |
| 1056 | |
| 1057 | .Request |
| 1058 | ---- |
| 1059 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/in HTTP/1.0 |
| 1060 | ---- |
| 1061 | |
| 1062 | .Response |
| 1063 | ---- |
| 1064 | HTTP/1.1 200 OK |
| 1065 | Content-Disposition: attachment |
| 1066 | Content-Type: application/json;charset=UTF-8 |
| 1067 | |
| 1068 | )]}' |
| 1069 | { |
| 1070 | "kind": "gerritcodereview#includedininfo", |
| 1071 | "branches": [ |
| 1072 | "master" |
| 1073 | ], |
| 1074 | "tags": [] |
| 1075 | } |
| 1076 | ---- |
| 1077 | |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 1078 | [[reviewer-endpoints]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1079 | == Reviewer Endpoints |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 1080 | |
| 1081 | [[list-reviewers]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1082 | === List Reviewers |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1083 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1084 | 'GET /changes/link:#change-id[\{change-id\}]/reviewers/' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1085 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1086 | |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 1087 | Lists the reviewers of a change. |
| 1088 | |
| 1089 | As result a list of link:#reviewer-info[ReviewerInfo] entries is returned. |
| 1090 | |
| 1091 | .Request |
| 1092 | ---- |
| 1093 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers/ HTTP/1.0 |
| 1094 | ---- |
| 1095 | |
| 1096 | .Response |
| 1097 | ---- |
| 1098 | HTTP/1.1 200 OK |
| 1099 | Content-Disposition: attachment |
| 1100 | Content-Type: application/json;charset=UTF-8 |
| 1101 | |
| 1102 | )]}' |
| 1103 | [ |
| 1104 | { |
| 1105 | "kind": "gerritcodereview#reviewer", |
| 1106 | "approvals": { |
| 1107 | "Verified": "+1", |
| 1108 | "Code-Review": "+2" |
| 1109 | }, |
| 1110 | "_account_id": 1000096, |
| 1111 | "name": "John Doe", |
| 1112 | "email": "john.doe@example.com" |
| 1113 | }, |
| 1114 | { |
| 1115 | "kind": "gerritcodereview#reviewer", |
| 1116 | "approvals": { |
| 1117 | "Verified": " 0", |
| 1118 | "Code-Review": "-1" |
| 1119 | }, |
| 1120 | "_account_id": 1000097, |
| 1121 | "name": "Jane Roe", |
| 1122 | "email": "jane.roe@example.com" |
| 1123 | } |
| 1124 | ] |
| 1125 | ---- |
| 1126 | |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 1127 | [[suggest-reviewers]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1128 | === Suggest Reviewers |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1129 | -- |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 1130 | 'GET /changes/link:#change-id[\{change-id\}]/suggest_reviewers?q=J&n=5' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1131 | -- |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 1132 | |
| 1133 | Suggest the reviewers for a given query `q` and result limit `n`. If result |
| 1134 | limit is not passed, then the default 10 is used. |
| 1135 | |
| 1136 | As result a list of link:#suggested-reviewer-info[SuggestedReviewerInfo] entries is returned. |
| 1137 | |
| 1138 | .Request |
| 1139 | ---- |
| 1140 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/suggest_reviewers?q=J HTTP/1.0 |
| 1141 | ---- |
| 1142 | |
| 1143 | .Response |
| 1144 | ---- |
| 1145 | HTTP/1.1 200 OK |
| 1146 | Content-Disposition: attachment |
| 1147 | Content-Type: application/json;charset=UTF-8 |
| 1148 | |
| 1149 | )]}' |
| 1150 | [ |
| 1151 | { |
| 1152 | "kind": "gerritcodereview#suggestedreviewer", |
| 1153 | "account": { |
| 1154 | "_account_id": 1000097, |
| 1155 | "name": "Jane Roe", |
| 1156 | "email": "jane.roe@example.com" |
| 1157 | } |
| 1158 | }, |
| 1159 | { |
| 1160 | "kind": "gerritcodereview#suggestedreviewer", |
| 1161 | "group": { |
| 1162 | "id": "4fd581c0657268f2bdcc26699fbf9ddb76e3a279", |
| 1163 | "name": "Joiner" |
| 1164 | } |
| 1165 | } |
| 1166 | ] |
| 1167 | ---- |
| 1168 | |
Edwin Kempin | a3d02ef | 2013-02-22 16:31:53 +0100 | [diff] [blame] | 1169 | [[get-reviewer]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1170 | === Get Reviewer |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1171 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1172 | 'GET /changes/link:#change-id[\{change-id\}]/reviewers/link:rest-api-accounts.html#account-id[\{account-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1173 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1174 | |
Edwin Kempin | a3d02ef | 2013-02-22 16:31:53 +0100 | [diff] [blame] | 1175 | Retrieves a reviewer of a change. |
| 1176 | |
| 1177 | As response a link:#reviewer-info[ReviewerInfo] entity is returned that |
| 1178 | describes the reviewer. |
| 1179 | |
| 1180 | .Request |
| 1181 | ---- |
| 1182 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers/john.doe@example.com HTTP/1.0 |
| 1183 | ---- |
| 1184 | |
| 1185 | .Response |
| 1186 | ---- |
| 1187 | HTTP/1.1 200 OK |
| 1188 | Content-Disposition: attachment |
| 1189 | Content-Type: application/json;charset=UTF-8 |
| 1190 | |
| 1191 | )]}' |
| 1192 | { |
| 1193 | "kind": "gerritcodereview#reviewer", |
| 1194 | "approvals": { |
| 1195 | "Verified": "+1", |
| 1196 | "Code-Review": "+2" |
| 1197 | }, |
| 1198 | "_account_id": 1000096, |
| 1199 | "name": "John Doe", |
| 1200 | "email": "john.doe@example.com" |
| 1201 | } |
| 1202 | ---- |
| 1203 | |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 1204 | [[add-reviewer]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1205 | === Add Reviewer |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1206 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1207 | 'POST /changes/link:#change-id[\{change-id\}]/reviewers' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1208 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1209 | |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 1210 | Adds one user or all members of one group as reviewer to the change. |
| 1211 | |
| 1212 | The reviewer to be added to the change must be provided in the request |
| 1213 | body as a link:#reviewer-input[ReviewerInput] entity. |
| 1214 | |
| 1215 | .Request |
| 1216 | ---- |
| 1217 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers HTTP/1.0 |
| 1218 | Content-Type: application/json;charset=UTF-8 |
| 1219 | |
| 1220 | { |
| 1221 | "reviewer": "john.doe@example.com" |
| 1222 | } |
| 1223 | ---- |
| 1224 | |
| 1225 | As response an link:#add-reviewer-result[AddReviewerResult] entity is |
| 1226 | returned that describes the newly added reviewers. |
| 1227 | |
| 1228 | .Response |
| 1229 | ---- |
| 1230 | HTTP/1.1 200 OK |
| 1231 | Content-Disposition: attachment |
| 1232 | Content-Type: application/json;charset=UTF-8 |
| 1233 | |
| 1234 | )]}' |
| 1235 | { |
| 1236 | "reviewers": [ |
| 1237 | { |
| 1238 | "kind": "gerritcodereview#reviewer", |
| 1239 | "approvals": { |
| 1240 | "Verified": " 0", |
| 1241 | "Code-Review": " 0" |
| 1242 | }, |
| 1243 | "_account_id": 1000096, |
| 1244 | "name": "John Doe", |
| 1245 | "email": "john.doe@example.com" |
| 1246 | } |
| 1247 | ] |
| 1248 | } |
| 1249 | ---- |
| 1250 | |
| 1251 | If a group is specified, adding the group members as reviewers is an |
| 1252 | atomic operation. This means if an error is returned, none of the |
| 1253 | members are added as reviewer. |
| 1254 | |
| 1255 | If a group with many members is added as reviewer a confirmation may be |
| 1256 | required. |
| 1257 | |
| 1258 | .Request |
| 1259 | ---- |
| 1260 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers HTTP/1.0 |
| 1261 | Content-Type: application/json;charset=UTF-8 |
| 1262 | |
| 1263 | { |
| 1264 | "reviewer": "MyProjectVerifiers" |
| 1265 | } |
| 1266 | ---- |
| 1267 | |
| 1268 | .Response |
| 1269 | ---- |
| 1270 | HTTP/1.1 200 OK |
| 1271 | Content-Disposition: attachment |
| 1272 | Content-Type: application/json;charset=UTF-8 |
| 1273 | |
| 1274 | )]}' |
| 1275 | { |
| 1276 | "error": "The group My Group has 15 members. Do you want to add them all as reviewers?", |
| 1277 | "confirm": true |
| 1278 | } |
| 1279 | ---- |
| 1280 | |
| 1281 | To confirm the addition of the reviewers, resend the request with the |
Edwin Kempin | 08da43d | 2013-02-26 11:06:58 +0100 | [diff] [blame] | 1282 | `confirmed` flag being set. |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 1283 | |
| 1284 | .Request |
| 1285 | ---- |
| 1286 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers HTTP/1.0 |
| 1287 | Content-Type: application/json;charset=UTF-8 |
| 1288 | |
| 1289 | { |
| 1290 | "reviewer": "MyProjectVerifiers", |
Edwin Kempin | 08da43d | 2013-02-26 11:06:58 +0100 | [diff] [blame] | 1291 | "confirmed": true |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 1292 | } |
| 1293 | ---- |
| 1294 | |
Edwin Kempin | 5330107 | 2013-02-25 12:57:07 +0100 | [diff] [blame] | 1295 | [[delete-reviewer]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1296 | === Delete Reviewer |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1297 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1298 | 'DELETE /changes/link:#change-id[\{change-id\}]/reviewers/link:rest-api-accounts.html#account-id[\{account-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1299 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1300 | |
Edwin Kempin | 5330107 | 2013-02-25 12:57:07 +0100 | [diff] [blame] | 1301 | Deletes a reviewer from a change. |
| 1302 | |
| 1303 | .Request |
| 1304 | ---- |
| 1305 | DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/reviewers/John%20Doe HTTP/1.0 |
| 1306 | ---- |
| 1307 | |
| 1308 | .Response |
| 1309 | ---- |
| 1310 | HTTP/1.1 204 No Content |
| 1311 | ---- |
| 1312 | |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1313 | [[revision-endpoints]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1314 | == Revision Endpoints |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1315 | |
Shawn Pearce | 728ba88 | 2013-07-08 23:13:08 -0700 | [diff] [blame] | 1316 | [[get-commit]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1317 | === Get Commit |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1318 | -- |
Shawn Pearce | 728ba88 | 2013-07-08 23:13:08 -0700 | [diff] [blame] | 1319 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/commit' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1320 | -- |
Shawn Pearce | 728ba88 | 2013-07-08 23:13:08 -0700 | [diff] [blame] | 1321 | |
| 1322 | Retrieves a parsed commit of a revision. |
| 1323 | |
| 1324 | .Request |
| 1325 | ---- |
| 1326 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/commit HTTP/1.0 |
| 1327 | ---- |
| 1328 | |
| 1329 | As response a link:#commit-info[CommitInfo] entity is returned that |
| 1330 | describes the revision. |
| 1331 | |
| 1332 | .Response |
| 1333 | ---- |
| 1334 | HTTP/1.1 200 OK |
| 1335 | Content-Disposition: attachment |
| 1336 | Content-Type: application/json;charset=UTF-8 |
| 1337 | |
| 1338 | )]}' |
| 1339 | { |
| 1340 | "kind": "gerritcodereview#commit", |
| 1341 | "parents": [ |
| 1342 | { |
| 1343 | "commit": "1eee2c9d8f352483781e772f35dc586a69ff5646", |
| 1344 | "subject": "Migrate contributor agreements to All-Projects." |
| 1345 | } |
| 1346 | ], |
| 1347 | "author": { |
| 1348 | "name": "Shawn O. Pearce", |
| 1349 | "email": "sop@google.com", |
| 1350 | "date": "2012-04-24 18:08:08.000000000", |
| 1351 | "tz": -420 |
| 1352 | }, |
| 1353 | "committer": { |
| 1354 | "name": "Shawn O. Pearce", |
| 1355 | "email": "sop@google.com", |
| 1356 | "date": "2012-04-24 18:08:08.000000000", |
| 1357 | "tz": -420 |
| 1358 | }, |
| 1359 | "subject": "Use an EventBus to manage star icons", |
| 1360 | "message": "Use an EventBus to manage star icons\n\nImage widgets that need to ..." |
| 1361 | } |
| 1362 | ---- |
| 1363 | |
| 1364 | |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1365 | [[get-review]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1366 | === Get Review |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1367 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1368 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/review' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1369 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1370 | |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1371 | Retrieves a review of a revision. |
| 1372 | |
| 1373 | .Request |
| 1374 | ---- |
| 1375 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/review HTTP/1.0 |
| 1376 | ---- |
| 1377 | |
| 1378 | As response a link:#change-info[ChangeInfo] entity with |
| 1379 | link:#detailed-labels[detailed labels] and link:#detailed-accounts[ |
| 1380 | detailed accounts] is returned that describes the review of the |
| 1381 | revision. The revision for which the review is retrieved is contained |
| 1382 | in the `revisions` field. In addition the `current_revision` field is |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 1383 | set if the revision for which the review is retrieved is the current |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1384 | revision of the change. Please note that the returned labels are always |
| 1385 | for the current patch set. |
| 1386 | |
| 1387 | .Response |
| 1388 | ---- |
| 1389 | HTTP/1.1 200 OK |
| 1390 | Content-Disposition: attachment |
| 1391 | Content-Type: application/json;charset=UTF-8 |
| 1392 | |
| 1393 | )]}' |
| 1394 | { |
| 1395 | "kind": "gerritcodereview#change", |
| 1396 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 1397 | "project": "myProject", |
| 1398 | "branch": "master", |
| 1399 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9940", |
| 1400 | "subject": "Implementing Feature X", |
| 1401 | "status": "NEW", |
| 1402 | "created": "2013-02-01 09:59:32.126000000", |
| 1403 | "updated": "2013-02-21 11:16:36.775000000", |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1404 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 1405 | "insertions": 34, |
| 1406 | "deletions": 45, |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1407 | "_sortkey": "0023412400000f7d", |
| 1408 | "_number": 3965, |
| 1409 | "owner": { |
| 1410 | "_account_id": 1000096, |
| 1411 | "name": "John Doe", |
| 1412 | "email": "john.doe@example.com" |
| 1413 | }, |
| 1414 | "labels": { |
| 1415 | "Verified": { |
| 1416 | "all": [ |
| 1417 | { |
| 1418 | "value": 0, |
| 1419 | "_account_id": 1000096, |
| 1420 | "name": "John Doe", |
| 1421 | "email": "john.doe@example.com" |
| 1422 | }, |
| 1423 | { |
| 1424 | "value": 0, |
| 1425 | "_account_id": 1000097, |
| 1426 | "name": "Jane Roe", |
| 1427 | "email": "jane.roe@example.com" |
| 1428 | } |
| 1429 | ], |
| 1430 | "values": { |
| 1431 | "-1": "Fails", |
| 1432 | " 0": "No score", |
| 1433 | "+1": "Verified" |
| 1434 | } |
| 1435 | }, |
| 1436 | "Code-Review": { |
| 1437 | "all": [ |
| 1438 | { |
| 1439 | "value": -1, |
| 1440 | "_account_id": 1000096, |
| 1441 | "name": "John Doe", |
| 1442 | "email": "john.doe@example.com" |
| 1443 | }, |
| 1444 | { |
| 1445 | "value": 1, |
| 1446 | "_account_id": 1000097, |
| 1447 | "name": "Jane Roe", |
| 1448 | "email": "jane.roe@example.com" |
| 1449 | } |
| 1450 | ] |
| 1451 | "values": { |
Paul Fertser | 2474e52 | 2014-01-23 10:00:59 +0400 | [diff] [blame] | 1452 | "-2": "This shall not be merged", |
| 1453 | "-1": "I would prefer this is not merged as is", |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 1454 | " 0": "No score", |
| 1455 | "+1": "Looks good to me, but someone else must approve", |
| 1456 | "+2": "Looks good to me, approved" |
| 1457 | } |
| 1458 | } |
| 1459 | }, |
| 1460 | "permitted_labels": { |
| 1461 | "Verified": [ |
| 1462 | "-1", |
| 1463 | " 0", |
| 1464 | "+1" |
| 1465 | ], |
| 1466 | "Code-Review": [ |
| 1467 | "-2", |
| 1468 | "-1", |
| 1469 | " 0", |
| 1470 | "+1", |
| 1471 | "+2" |
| 1472 | ] |
| 1473 | }, |
| 1474 | "removable_reviewers": [ |
| 1475 | { |
| 1476 | "_account_id": 1000096, |
| 1477 | "name": "John Doe", |
| 1478 | "email": "john.doe@example.com" |
| 1479 | }, |
| 1480 | { |
| 1481 | "_account_id": 1000097, |
| 1482 | "name": "Jane Roe", |
| 1483 | "email": "jane.roe@example.com" |
| 1484 | } |
| 1485 | ], |
| 1486 | "current_revision": "674ac754f91e64a0efb8087e59a176484bd534d1", |
| 1487 | "revisions": { |
| 1488 | "674ac754f91e64a0efb8087e59a176484bd534d1": { |
| 1489 | "_number": 2, |
| 1490 | "fetch": { |
| 1491 | "http": { |
| 1492 | "url": "http://gerrit/myProject", |
| 1493 | "ref": "refs/changes/65/3965/2" |
| 1494 | } |
| 1495 | } |
| 1496 | } |
| 1497 | } |
| 1498 | ---- |
| 1499 | |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 1500 | [[set-review]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1501 | === Set Review |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1502 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1503 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/review' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1504 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1505 | |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 1506 | Sets a review on a revision. |
| 1507 | |
| 1508 | The review must be provided in the request body as a |
| 1509 | link:#review-input[ReviewInput] entity. |
| 1510 | |
| 1511 | .Request |
| 1512 | ---- |
| 1513 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/review HTTP/1.0 |
| 1514 | Content-Type: application/json;charset=UTF-8 |
| 1515 | |
| 1516 | { |
| 1517 | "message": "Some nits need to be fixed.", |
| 1518 | "labels": { |
| 1519 | "Code-Review": -1 |
| 1520 | }, |
| 1521 | "comments": { |
| 1522 | "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": [ |
| 1523 | { |
| 1524 | "line": 23, |
| 1525 | "message": "[nit] trailing whitespace" |
| 1526 | }, |
| 1527 | { |
| 1528 | "line": 49, |
| 1529 | "message": "[nit] s/conrtol/control" |
| 1530 | } |
| 1531 | ] |
| 1532 | } |
| 1533 | } |
| 1534 | ---- |
| 1535 | |
| 1536 | As response a link:#review-info[ReviewInfo] entity is returned that |
| 1537 | describes the applied labels. |
| 1538 | |
| 1539 | .Response |
| 1540 | ---- |
| 1541 | HTTP/1.1 200 OK |
| 1542 | Content-Disposition: attachment |
| 1543 | Content-Type: application/json;charset=UTF-8 |
| 1544 | |
| 1545 | )]}' |
| 1546 | { |
| 1547 | "labels": { |
| 1548 | "Code-Review": -1 |
| 1549 | } |
| 1550 | } |
| 1551 | ---- |
| 1552 | |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 1553 | [[rebase-revision]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1554 | === Rebase Revision |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1555 | -- |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 1556 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/rebase' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1557 | -- |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 1558 | |
| 1559 | Rebases a revision. |
| 1560 | |
| 1561 | .Request |
| 1562 | ---- |
| 1563 | POST /changes/myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/rebase HTTP/1.0 |
| 1564 | ---- |
| 1565 | |
| 1566 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 1567 | describes the rebased change. Information about the current patch set |
| 1568 | is included. |
| 1569 | |
| 1570 | .Response |
| 1571 | ---- |
| 1572 | HTTP/1.1 200 OK |
| 1573 | Content-Disposition: attachment |
| 1574 | Content-Type: application/json;charset=UTF-8 |
| 1575 | |
| 1576 | )]}' |
| 1577 | { |
| 1578 | "kind": "gerritcodereview#change", |
| 1579 | "id": "myProject~master~I3ea943139cb62e86071996f2480e58bf3eeb9dd2", |
| 1580 | "project": "myProject", |
| 1581 | "branch": "master", |
| 1582 | "change_id": "I3ea943139cb62e86071996f2480e58bf3eeb9dd2", |
| 1583 | "subject": "Implement Feature X", |
| 1584 | "status": "NEW", |
| 1585 | "created": "2013-02-01 09:59:32.126000000", |
| 1586 | "updated": "2013-02-21 11:16:36.775000000", |
| 1587 | "mergeable": false, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 1588 | "insertions": 21, |
| 1589 | "deletions": 21, |
Edwin Kempin | cdae63b | 2013-03-15 15:06:59 +0100 | [diff] [blame] | 1590 | "_sortkey": "0024cf9a000012bf", |
| 1591 | "_number": 4799, |
| 1592 | "owner": { |
| 1593 | "name": "John Doe" |
| 1594 | }, |
| 1595 | "current_revision": "27cc4558b5a3d3387dd11ee2df7a117e7e581822", |
| 1596 | "revisions": { |
| 1597 | "27cc4558b5a3d3387dd11ee2df7a117e7e581822": { |
| 1598 | "_number": 2, |
| 1599 | "fetch": { |
| 1600 | "http": { |
| 1601 | "url": "http://gerrit:8080/myProject", |
| 1602 | "ref": "refs/changes/99/4799/2" |
| 1603 | } |
| 1604 | }, |
| 1605 | "commit": { |
| 1606 | "parents": [ |
| 1607 | { |
| 1608 | "commit": "b4003890dadd406d80222bf1ad8aca09a4876b70", |
| 1609 | "subject": "Implement Feature A" |
| 1610 | } |
| 1611 | ], |
| 1612 | "author": { |
| 1613 | "name": "John Doe", |
| 1614 | "email": "john.doe@example.com", |
| 1615 | "date": "2013-05-07 15:21:27.000000000", |
| 1616 | "tz": 120 |
| 1617 | }, |
| 1618 | "committer": { |
| 1619 | "name": "Gerrit Code Review", |
| 1620 | "email": "gerrit-server@example.com", |
| 1621 | "date": "2013-05-07 15:35:43.000000000", |
| 1622 | "tz": 120 |
| 1623 | }, |
| 1624 | "subject": "Implement Feature X", |
| 1625 | "message": "Implement Feature X\n\nAdded feature X." |
| 1626 | } |
| 1627 | } |
| 1628 | } |
| 1629 | ---- |
| 1630 | |
| 1631 | If the revision cannot be rebased, e.g. due to conflicts, the response is |
| 1632 | "`409 Conflict`" and the error message is contained in the response |
| 1633 | body. |
| 1634 | |
| 1635 | .Response |
| 1636 | ---- |
| 1637 | HTTP/1.1 409 Conflict |
| 1638 | Content-Disposition: attachment |
| 1639 | Content-Type: text/plain;charset=UTF-8 |
| 1640 | |
| 1641 | The change could not be rebased due to a path conflict during merge. |
| 1642 | ---- |
| 1643 | |
Edwin Kempin | 14b5811 | 2013-02-26 16:30:19 +0100 | [diff] [blame] | 1644 | [[submit-revision]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1645 | === Submit Revision |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1646 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1647 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/submit' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1648 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1649 | |
Edwin Kempin | 14b5811 | 2013-02-26 16:30:19 +0100 | [diff] [blame] | 1650 | Submits a revision. |
| 1651 | |
| 1652 | The request body only needs to include a link:#submit-input[ |
| 1653 | SubmitInput] entity if the request should wait for the merge to |
| 1654 | complete. |
| 1655 | |
| 1656 | .Request |
| 1657 | ---- |
| 1658 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/submit HTTP/1.0 |
| 1659 | Content-Type: application/json;charset=UTF-8 |
| 1660 | |
| 1661 | { |
| 1662 | "wait_for_merge": true |
| 1663 | } |
| 1664 | ---- |
| 1665 | |
| 1666 | As response a link:#submit-info[SubmitInfo] entity is returned that |
| 1667 | describes the status of the submitted change. |
| 1668 | |
| 1669 | .Response |
| 1670 | ---- |
| 1671 | HTTP/1.1 200 OK |
| 1672 | Content-Disposition: attachment |
| 1673 | Content-Type: application/json;charset=UTF-8 |
| 1674 | |
| 1675 | )]}' |
| 1676 | { |
| 1677 | "status": "MERGED" |
| 1678 | } |
| 1679 | ---- |
| 1680 | |
| 1681 | If the revision cannot be submitted, e.g. because the submit rule |
| 1682 | doesn't allow submitting the revision or the revision is not the |
| 1683 | current revision, the response is "`409 Conflict`" and the error |
| 1684 | message is contained in the response body. |
| 1685 | |
| 1686 | .Response |
| 1687 | ---- |
| 1688 | HTTP/1.1 409 Conflict |
| 1689 | Content-Type: text/plain;charset=UTF-8 |
| 1690 | |
| 1691 | "revision 674ac754f91e64a0efb8087e59a176484bd534d1 is not current revision" |
| 1692 | ---- |
| 1693 | |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1694 | [[publish-draft-revision]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1695 | === Publish Draft Revision |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1696 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1697 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/publish' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1698 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1699 | |
| 1700 | Publishes a draft revision. |
| 1701 | |
| 1702 | .Request |
| 1703 | ---- |
| 1704 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/publish HTTP/1.0 |
| 1705 | Content-Type: application/json;charset=UTF-8 |
| 1706 | ---- |
| 1707 | |
| 1708 | .Response |
| 1709 | ---- |
| 1710 | HTTP/1.1 204 No Content |
| 1711 | ---- |
| 1712 | |
| 1713 | [[delete-draft-revision]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1714 | === Delete Draft Revision |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1715 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1716 | 'DELETE /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1717 | -- |
David Ostrovsky | 0d69c23 | 2013-09-10 23:10:23 +0200 | [diff] [blame] | 1718 | |
| 1719 | Deletes a draft revision. |
| 1720 | |
| 1721 | .Request |
| 1722 | ---- |
| 1723 | DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1 HTTP/1.0 |
| 1724 | Content-Type: application/json;charset=UTF-8 |
| 1725 | ---- |
| 1726 | |
| 1727 | .Response |
| 1728 | ---- |
| 1729 | HTTP/1.1 204 No Content |
| 1730 | ---- |
| 1731 | |
Edwin Kempin | 257d70f | 2013-03-28 14:31:14 +0100 | [diff] [blame] | 1732 | [[get-patch]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1733 | === Get Patch |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1734 | -- |
Edwin Kempin | 257d70f | 2013-03-28 14:31:14 +0100 | [diff] [blame] | 1735 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/patch' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1736 | -- |
Edwin Kempin | 257d70f | 2013-03-28 14:31:14 +0100 | [diff] [blame] | 1737 | |
| 1738 | Gets the formatted patch for one revision. |
| 1739 | |
| 1740 | .Request |
| 1741 | ---- |
| 1742 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/patch HTTP/1.0 |
| 1743 | ---- |
| 1744 | |
Shawn Pearce | 98361f7 | 2013-05-10 16:27:36 -0700 | [diff] [blame] | 1745 | The formatted patch is returned as text encoded inside base64: |
Edwin Kempin | 257d70f | 2013-03-28 14:31:14 +0100 | [diff] [blame] | 1746 | |
| 1747 | .Response |
| 1748 | ---- |
| 1749 | HTTP/1.1 200 OK |
| 1750 | Content-Disposition: attachment |
Shawn Pearce | 98361f7 | 2013-05-10 16:27:36 -0700 | [diff] [blame] | 1751 | Content-Type: text/plain;charset=ISO-8859-1 |
| 1752 | X-FYI-Content-Encoding: base64 |
| 1753 | X-FYI-Content-Type: application/mbox |
Edwin Kempin | 257d70f | 2013-03-28 14:31:14 +0100 | [diff] [blame] | 1754 | |
Shawn Pearce | 98361f7 | 2013-05-10 16:27:36 -0700 | [diff] [blame] | 1755 | RnJvbSA3ZGFkY2MxNTNmZGVhMTdhYTg0ZmYzMmE2ZTI0NWRiYjY... |
Edwin Kempin | 257d70f | 2013-03-28 14:31:14 +0100 | [diff] [blame] | 1756 | ---- |
| 1757 | |
David Ostrovsky | 973f38b | 2013-08-22 00:24:51 -0700 | [diff] [blame] | 1758 | Adding query parameter `zip` (for example `/changes/.../patch?zip`) |
| 1759 | returns the patch as a single file inside of a ZIP archive. Clients |
| 1760 | can expand the ZIP to obtain the plain text patch, avoiding the |
| 1761 | need for a base64 decoding step. This option implies `download`. |
| 1762 | |
| 1763 | Query parameter `download` (e.g. `/changes/.../patch?download`) |
| 1764 | will suggest the browser save the patch as `commitsha1.diff.base64`, |
| 1765 | for later processing by command line tools. |
| 1766 | |
Shawn Pearce | 3a2a247 | 2013-07-17 16:40:45 -0700 | [diff] [blame] | 1767 | [[get-mergeable]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1768 | === Get Mergeable |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1769 | -- |
Shawn Pearce | 3a2a247 | 2013-07-17 16:40:45 -0700 | [diff] [blame] | 1770 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/mergeable' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1771 | -- |
Shawn Pearce | 3a2a247 | 2013-07-17 16:40:45 -0700 | [diff] [blame] | 1772 | |
| 1773 | Gets the method the server will use to submit (merge) the change and |
| 1774 | an indicator if the change is currently mergeable. |
| 1775 | |
| 1776 | .Request |
| 1777 | ---- |
| 1778 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/mergeable HTTP/1.0 |
| 1779 | ---- |
| 1780 | |
| 1781 | .Response |
| 1782 | ---- |
| 1783 | HTTP/1.1 200 OK |
| 1784 | Content-Disposition: attachment |
| 1785 | Content-Type: application/json;charset=UTF-8 |
| 1786 | |
| 1787 | )]}' |
| 1788 | { |
| 1789 | submit_type: "MERGE_IF_NECESSARY", |
| 1790 | mergeable: true, |
| 1791 | } |
| 1792 | ---- |
| 1793 | |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1794 | [[get-submit-type]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1795 | === Get Submit Type |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1796 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1797 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/submit_type' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1798 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1799 | |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 1800 | Gets the method the server will use to submit (merge) the change. |
| 1801 | |
| 1802 | .Request |
| 1803 | ---- |
| 1804 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/submit_type HTTP/1.0 |
| 1805 | ---- |
| 1806 | |
| 1807 | .Response |
| 1808 | ---- |
| 1809 | HTTP/1.1 200 OK |
| 1810 | Content-Disposition: attachment |
| 1811 | Content-Type: application/json;charset=UTF-8 |
| 1812 | |
| 1813 | )]}' |
| 1814 | "MERGE_IF_NECESSARY" |
| 1815 | ---- |
| 1816 | |
| 1817 | [[test-submit-type]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1818 | === Test Submit Type |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1819 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1820 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/test.submit_type' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1821 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1822 | |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 1823 | Tests the submit_type Prolog rule in the project, or the one given. |
| 1824 | |
| 1825 | Request body may be either the Prolog code as `text/plain` or a |
| 1826 | link:#rule-input[RuleInput] object. The query parameter `filters` |
| 1827 | may be set to `SKIP` to bypass parent project filters while testing |
| 1828 | a project-specific rule. |
| 1829 | |
| 1830 | .Request |
| 1831 | ---- |
| 1832 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/test.submit_type HTTP/1.0 |
| 1833 | Content-Type: text/plain;charset-UTF-8 |
| 1834 | |
| 1835 | submit_type(cherry_pick). |
| 1836 | ---- |
| 1837 | |
| 1838 | .Response |
| 1839 | ---- |
| 1840 | HTTP/1.1 200 OK |
| 1841 | Content-Disposition: attachment |
| 1842 | Content-Type: application/json;charset=UTF-8 |
| 1843 | |
| 1844 | )]}' |
Shawn Pearce | 7076f4e | 2013-08-20 22:11:51 -0700 | [diff] [blame] | 1845 | "CHERRY_PICK" |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 1846 | ---- |
| 1847 | |
| 1848 | [[test-submit-rule]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1849 | === Test Submit Rule |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1850 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1851 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/test.submit_rule' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1852 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1853 | |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 1854 | Tests the submit_rule Prolog rule in the project, or the one given. |
| 1855 | |
| 1856 | Request body may be either the Prolog code as `text/plain` or a |
| 1857 | link:#rule-input[RuleInput] object. The query parameter `filters` |
| 1858 | may be set to `SKIP` to bypass parent project filters while testing |
| 1859 | a project-specific rule. |
| 1860 | |
| 1861 | .Request |
| 1862 | ---- |
Shawn Pearce | a3cce71 | 2014-03-21 08:16:11 -0700 | [diff] [blame] | 1863 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/current/test.submit_rule?filters=SKIP HTTP/1.0 |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 1864 | Content-Type: text/plain;charset-UTF-8 |
| 1865 | |
| 1866 | submit_rule(submit(R)) :- |
| 1867 | R = label('Any-Label-Name', reject(_)). |
| 1868 | ---- |
| 1869 | |
| 1870 | The response is a list of link:#submit-record[SubmitRecord] entries |
| 1871 | describing the permutations that satisfy the tested submit rule. |
| 1872 | |
| 1873 | .Response |
| 1874 | ---- |
| 1875 | HTTP/1.1 200 OK |
| 1876 | Content-Disposition: attachment |
| 1877 | Content-Type: application/json;charset=UTF-8 |
| 1878 | |
| 1879 | )]}' |
| 1880 | [ |
| 1881 | { |
| 1882 | "status": "NOT_READY", |
| 1883 | "reject": { |
| 1884 | "Any-Label-Name": {} |
| 1885 | } |
| 1886 | } |
| 1887 | ] |
| 1888 | ---- |
| 1889 | |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 1890 | [[list-drafts]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1891 | === List Drafts |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1892 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1893 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1894 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1895 | |
Edwin Kempin | 3ca5719 | 2013-02-27 07:44:01 +0100 | [diff] [blame] | 1896 | Lists the draft comments of a revision that belong to the calling |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 1897 | user. |
| 1898 | |
| 1899 | As result a map is returned that maps the file path to a list of |
| 1900 | link:#comment-info[CommentInfo] entries. The entries in the map are |
| 1901 | sorted by file path. |
| 1902 | |
| 1903 | .Request |
| 1904 | ---- |
| 1905 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/ HTTP/1.0 |
| 1906 | ---- |
| 1907 | |
| 1908 | .Response |
| 1909 | ---- |
| 1910 | HTTP/1.1 200 OK |
| 1911 | Content-Disposition: attachment |
| 1912 | Content-Type: application/json;charset=UTF-8 |
| 1913 | |
| 1914 | )]}' |
| 1915 | { |
| 1916 | "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": [ |
| 1917 | { |
| 1918 | "kind": "gerritcodereview#comment", |
| 1919 | "id": "TvcXrmjM", |
| 1920 | "line": 23, |
| 1921 | "message": "[nit] trailing whitespace", |
| 1922 | "updated": "2013-02-26 15:40:43.986000000" |
| 1923 | }, |
| 1924 | { |
| 1925 | "kind": "gerritcodereview#comment", |
| 1926 | "id": "TveXwFiA", |
| 1927 | "line": 49, |
| 1928 | "in_reply_to": "TfYX-Iuo", |
| 1929 | "message": "Done", |
| 1930 | "updated": "2013-02-26 15:40:45.328000000" |
| 1931 | } |
| 1932 | ] |
| 1933 | } |
| 1934 | ---- |
| 1935 | |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 1936 | [[create-draft]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1937 | === Create Draft |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1938 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1939 | 'PUT /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1940 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1941 | |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 1942 | Creates a draft comment on a revision. |
| 1943 | |
| 1944 | The new draft comment must be provided in the request body inside a |
| 1945 | link:#comment-input[CommentInput] entity. |
| 1946 | |
| 1947 | .Request |
| 1948 | ---- |
| 1949 | PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts HTTP/1.0 |
| 1950 | Content-Type: application/json;charset=UTF-8 |
| 1951 | |
| 1952 | { |
| 1953 | "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 1954 | "line": 23, |
| 1955 | "message": "[nit] trailing whitespace" |
| 1956 | } |
| 1957 | ---- |
| 1958 | |
| 1959 | As response a link:#comment-info[CommentInfo] entity is returned that |
| 1960 | describes the draft comment. |
| 1961 | |
| 1962 | .Response |
| 1963 | ---- |
| 1964 | HTTP/1.1 200 OK |
| 1965 | Content-Disposition: attachment |
| 1966 | Content-Type: application/json;charset=UTF-8 |
| 1967 | |
| 1968 | )]}' |
| 1969 | { |
| 1970 | "kind": "gerritcodereview#comment", |
| 1971 | "id": "TvcXrmjM", |
| 1972 | "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 1973 | "line": 23, |
| 1974 | "message": "[nit] trailing whitespace", |
| 1975 | "updated": "2013-02-26 15:40:43.986000000" |
| 1976 | } |
| 1977 | ---- |
| 1978 | |
Edwin Kempin | 3ca5719 | 2013-02-27 07:44:01 +0100 | [diff] [blame] | 1979 | [[get-draft]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 1980 | === Get Draft |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1981 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1982 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/link:#draft-id[\{draft-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 1983 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 1984 | |
Edwin Kempin | 3ca5719 | 2013-02-27 07:44:01 +0100 | [diff] [blame] | 1985 | Retrieves a draft comment of a revision that belongs to the calling |
| 1986 | user. |
| 1987 | |
| 1988 | .Request |
| 1989 | ---- |
| 1990 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/TvcXrmjM HTTP/1.0 |
| 1991 | ---- |
| 1992 | |
| 1993 | As response a link:#comment-info[CommentInfo] entity is returned that |
| 1994 | describes the draft comment. |
| 1995 | |
| 1996 | .Response |
| 1997 | ---- |
| 1998 | HTTP/1.1 200 OK |
| 1999 | Content-Disposition: attachment |
| 2000 | Content-Type: application/json;charset=UTF-8 |
| 2001 | |
| 2002 | )]}' |
| 2003 | { |
| 2004 | "kind": "gerritcodereview#comment", |
| 2005 | "id": "TvcXrmjM", |
| 2006 | "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2007 | "line": 23, |
| 2008 | "message": "[nit] trailing whitespace", |
| 2009 | "updated": "2013-02-26 15:40:43.986000000" |
| 2010 | } |
| 2011 | ---- |
| 2012 | |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 2013 | [[update-draft]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2014 | === Update Draft |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2015 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 2016 | 'PUT /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/link:#draft-id[\{draft-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2017 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 2018 | |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 2019 | Updates a draft comment on a revision. |
| 2020 | |
| 2021 | The new draft comment must be provided in the request body inside a |
| 2022 | link:#comment-input[CommentInput] entity. |
| 2023 | |
| 2024 | .Request |
| 2025 | ---- |
| 2026 | PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/TvcXrmjM HTTP/1.0 |
| 2027 | Content-Type: application/json;charset=UTF-8 |
| 2028 | |
| 2029 | { |
| 2030 | "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2031 | "line": 23, |
| 2032 | "message": "[nit] trailing whitespace" |
| 2033 | } |
| 2034 | ---- |
| 2035 | |
| 2036 | As response a link:#comment-info[CommentInfo] entity is returned that |
| 2037 | describes the draft comment. |
| 2038 | |
| 2039 | .Response |
| 2040 | ---- |
| 2041 | HTTP/1.1 200 OK |
| 2042 | Content-Disposition: attachment |
| 2043 | Content-Type: application/json;charset=UTF-8 |
| 2044 | |
| 2045 | )]}' |
| 2046 | { |
| 2047 | "kind": "gerritcodereview#comment", |
| 2048 | "id": "TvcXrmjM", |
| 2049 | "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2050 | "line": 23, |
| 2051 | "message": "[nit] trailing whitespace", |
| 2052 | "updated": "2013-02-26 15:40:43.986000000" |
| 2053 | } |
| 2054 | ---- |
| 2055 | |
| 2056 | [[delete-draft]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2057 | === Delete Draft |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2058 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 2059 | 'DELETE /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/drafts/link:#draft-id[\{draft-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2060 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 2061 | |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 2062 | Deletes a draft comment from a revision. |
| 2063 | |
| 2064 | .Request |
| 2065 | ---- |
| 2066 | DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/drafts/TvcXrmjM HTTP/1.0 |
| 2067 | ---- |
| 2068 | |
| 2069 | .Response |
| 2070 | ---- |
| 2071 | HTTP/1.1 204 No Content |
| 2072 | ---- |
| 2073 | |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2074 | [[list-comments]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2075 | === List Comments |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2076 | -- |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2077 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/comments/' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2078 | -- |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2079 | |
| 2080 | Lists the published comments of a revision. |
| 2081 | |
| 2082 | As result a map is returned that maps the file path to a list of |
| 2083 | link:#comment-info[CommentInfo] entries. The entries in the map are |
| 2084 | sorted by file path. |
| 2085 | |
| 2086 | .Request |
| 2087 | ---- |
| 2088 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/comments/ HTTP/1.0 |
| 2089 | ---- |
| 2090 | |
| 2091 | .Response |
| 2092 | ---- |
| 2093 | HTTP/1.1 200 OK |
| 2094 | Content-Disposition: attachment |
| 2095 | Content-Type: application/json;charset=UTF-8 |
| 2096 | |
| 2097 | )]}' |
| 2098 | { |
| 2099 | "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": [ |
| 2100 | { |
| 2101 | "kind": "gerritcodereview#comment", |
| 2102 | "id": "TvcXrmjM", |
| 2103 | "line": 23, |
| 2104 | "message": "[nit] trailing whitespace", |
| 2105 | "updated": "2013-02-26 15:40:43.986000000", |
| 2106 | "author": { |
| 2107 | "_account_id": 1000096, |
| 2108 | "name": "John Doe", |
| 2109 | "email": "john.doe@example.com" |
| 2110 | } |
| 2111 | }, |
| 2112 | { |
| 2113 | "kind": "gerritcodereview#comment", |
| 2114 | "id": "TveXwFiA", |
| 2115 | "line": 49, |
| 2116 | "in_reply_to": "TfYX-Iuo", |
| 2117 | "message": "Done", |
| 2118 | "updated": "2013-02-26 15:40:45.328000000", |
| 2119 | "author": { |
| 2120 | "_account_id": 1000097, |
| 2121 | "name": "Jane Roe", |
| 2122 | "email": "jane.roe@example.com" |
| 2123 | } |
| 2124 | } |
| 2125 | ] |
| 2126 | } |
| 2127 | ---- |
| 2128 | |
| 2129 | [[get-comment]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2130 | === Get Comment |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2131 | -- |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2132 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/comments/link:#comment-id[\{comment-id\}]' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2133 | -- |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2134 | |
| 2135 | Retrieves a published comment of a revision. |
| 2136 | |
| 2137 | .Request |
| 2138 | ---- |
| 2139 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/comments/TvcXrmjM HTTP/1.0 |
| 2140 | ---- |
| 2141 | |
| 2142 | As response a link:#comment-info[CommentInfo] entity is returned that |
| 2143 | describes the published comment. |
| 2144 | |
| 2145 | .Response |
| 2146 | ---- |
| 2147 | HTTP/1.1 200 OK |
| 2148 | Content-Disposition: attachment |
| 2149 | Content-Type: application/json;charset=UTF-8 |
| 2150 | |
| 2151 | )]}' |
| 2152 | { |
| 2153 | "kind": "gerritcodereview#comment", |
| 2154 | "id": "TvcXrmjM", |
| 2155 | "path": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2156 | "line": 23, |
| 2157 | "message": "[nit] trailing whitespace", |
| 2158 | "updated": "2013-02-26 15:40:43.986000000", |
| 2159 | "author": { |
| 2160 | "_account_id": 1000096, |
| 2161 | "name": "John Doe", |
| 2162 | "email": "john.doe@example.com" |
| 2163 | } |
| 2164 | } |
| 2165 | ---- |
| 2166 | |
Edwin Kempin | 682ac71 | 2013-05-14 13:40:46 +0200 | [diff] [blame] | 2167 | [[list-files]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2168 | === List Files |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2169 | -- |
Edwin Kempin | 682ac71 | 2013-05-14 13:40:46 +0200 | [diff] [blame] | 2170 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2171 | -- |
Edwin Kempin | 682ac71 | 2013-05-14 13:40:46 +0200 | [diff] [blame] | 2172 | |
| 2173 | Lists the files that were modified, added or deleted in a revision. |
| 2174 | |
| 2175 | .Request |
| 2176 | ---- |
| 2177 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/ HTTP/1.0 |
| 2178 | ---- |
| 2179 | |
| 2180 | As result a map is returned that maps the file path to a list of |
| 2181 | link:#file-info[FileInfo] entries. The entries in the map are |
| 2182 | sorted by file path. |
| 2183 | |
| 2184 | .Response |
| 2185 | ---- |
| 2186 | HTTP/1.1 200 OK |
| 2187 | Content-Disposition: attachment |
| 2188 | Content-Type: application/json;charset=UTF-8 |
| 2189 | |
| 2190 | )]}' |
| 2191 | { |
| 2192 | "/COMMIT_MSG": { |
| 2193 | "status": "A", |
| 2194 | "lines_inserted": 7 |
| 2195 | }, |
| 2196 | "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java": { |
| 2197 | "lines_inserted": 5, |
| 2198 | "lines_deleted": 3 |
| 2199 | } |
| 2200 | } |
| 2201 | ---- |
| 2202 | |
Shawn Pearce | 984747d | 2013-07-18 00:42:16 -0700 | [diff] [blame] | 2203 | The request parameter `reviewed` changes the response to return a list |
| 2204 | of the paths the caller has marked as reviewed. Clients that also |
| 2205 | need the FileInfo should make two requests. |
| 2206 | |
| 2207 | .Request |
| 2208 | ---- |
| 2209 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/?reviewed HTTP/1.0 |
| 2210 | ---- |
| 2211 | |
| 2212 | .Response |
| 2213 | ---- |
| 2214 | HTTP/1.1 200 OK |
| 2215 | Content-Disposition: attachment |
| 2216 | Content-Type: application/json;charset=UTF-8 |
| 2217 | |
| 2218 | )]}' |
| 2219 | [ |
| 2220 | "/COMMIT_MSG", |
| 2221 | "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2222 | ] |
| 2223 | ---- |
| 2224 | |
Edwin Kempin | aef44b0 | 2013-05-07 16:15:55 +0200 | [diff] [blame] | 2225 | [[get-content]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2226 | === Get Content |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2227 | -- |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2228 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/content' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2229 | -- |
Edwin Kempin | aef44b0 | 2013-05-07 16:15:55 +0200 | [diff] [blame] | 2230 | |
| 2231 | Gets the content of a file from a certain revision. |
| 2232 | |
| 2233 | .Request |
| 2234 | ---- |
| 2235 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/content HTTP/1.0 |
| 2236 | ---- |
| 2237 | |
| 2238 | The content is returned as base64 encoded string. |
| 2239 | |
| 2240 | .Response |
| 2241 | ---- |
| 2242 | HTTP/1.1 200 OK |
| 2243 | Content-Disposition: attachment |
| 2244 | Content-Type: text/plain;charset=UTF-8 |
| 2245 | |
| 2246 | Ly8gQ29weXJpZ2h0IChDKSAyMDEwIFRoZSBBbmRyb2lkIE9wZW4gU291cmNlIFByb2plY... |
| 2247 | ---- |
| 2248 | |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2249 | [[get-diff]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2250 | === Get Diff |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2251 | -- |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2252 | 'GET /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/diff' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2253 | -- |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2254 | |
| 2255 | Gets the diff of a file from a certain revision. |
| 2256 | |
| 2257 | .Request |
| 2258 | ---- |
| 2259 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/diff HTTP/1.0 |
| 2260 | ---- |
| 2261 | |
| 2262 | As response a link:#diff-info[DiffInfo] entity is returned that describes the diff. |
| 2263 | |
| 2264 | .Response |
| 2265 | ---- |
| 2266 | HTTP/1.1 200 OK |
| 2267 | Content-Disposition: attachment |
| 2268 | Content-Type: application/json;charset=UTF-8 |
| 2269 | |
| 2270 | )] |
| 2271 | { |
| 2272 | "meta_a": { |
| 2273 | "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2274 | "content_type": "text/x-java-source", |
| 2275 | "lines": 372 |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2276 | }, |
| 2277 | "meta_b": { |
| 2278 | "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2279 | "content_type": "text/x-java-source", |
| 2280 | "lines": 578 |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2281 | }, |
| 2282 | "change_type": "MODIFIED", |
| 2283 | "diff_header": [ |
| 2284 | "diff --git a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2285 | "index 59b7670..9faf81c 100644", |
| 2286 | "--- a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2287 | "+++ b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java" |
| 2288 | ], |
| 2289 | "content": [ |
| 2290 | { |
| 2291 | "ab": [ |
| 2292 | "// Copyright (C) 2010 The Android Open Source Project", |
| 2293 | "//", |
| 2294 | "// Licensed under the Apache License, Version 2.0 (the \"License\");", |
| 2295 | "// you may not use this file except in compliance with the License.", |
| 2296 | "// You may obtain a copy of the License at", |
| 2297 | "//", |
| 2298 | "// http://www.apache.org/licenses/LICENSE-2.0", |
| 2299 | "//", |
| 2300 | "// Unless required by applicable law or agreed to in writing, software", |
| 2301 | "// distributed under the License is distributed on an \"AS IS\" BASIS,", |
| 2302 | "// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", |
| 2303 | "// See the License for the specific language governing permissions and", |
| 2304 | "// limitations under the License." |
| 2305 | ] |
| 2306 | }, |
| 2307 | { |
| 2308 | "b": [ |
| 2309 | "//", |
| 2310 | "// Add some more lines in the header." |
| 2311 | ] |
| 2312 | }, |
| 2313 | { |
| 2314 | "ab": [ |
| 2315 | "", |
| 2316 | "package com.google.gerrit.server.project;", |
| 2317 | "", |
| 2318 | "import com.google.common.collect.Maps;", |
| 2319 | ... |
| 2320 | ] |
| 2321 | } |
| 2322 | ... |
| 2323 | ] |
| 2324 | } |
| 2325 | ---- |
| 2326 | |
| 2327 | If the `intraline` parameter is specified, intraline differences are included in the diff. |
| 2328 | |
| 2329 | .Request |
| 2330 | ---- |
| 2331 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/b6b9c10649b9041884046119ab794374470a1b45/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/diff?intraline HTTP/1.0 |
| 2332 | ---- |
| 2333 | |
| 2334 | .Response |
| 2335 | ---- |
| 2336 | HTTP/1.1 200 OK |
| 2337 | Content-Disposition: attachment |
| 2338 | Content-Type: application/json;charset=UTF-8 |
| 2339 | |
| 2340 | )] |
| 2341 | { |
| 2342 | "meta_a": { |
| 2343 | "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2344 | "content_type": "text/x-java-source", |
| 2345 | "lines": 372 |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2346 | }, |
| 2347 | "meta_b": { |
| 2348 | "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2349 | "content_type": "text/x-java-source", |
| 2350 | "lines": 578 |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2351 | }, |
| 2352 | "change_type": "MODIFIED", |
| 2353 | "diff_header": [ |
| 2354 | "diff --git a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2355 | "index 59b7670..9faf81c 100644", |
| 2356 | "--- a/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
| 2357 | "+++ b/gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java" |
| 2358 | ], |
| 2359 | "content": [ |
| 2360 | ... |
| 2361 | { |
| 2362 | "a": [ |
| 2363 | "/** Manages access control for Git references (aka branches, tags). */" |
| 2364 | ], |
| 2365 | "b": [ |
| 2366 | "/** Manages access control for the Git references (aka branches, tags). */" |
| 2367 | ], |
| 2368 | "edit_a": [], |
| 2369 | "edit_b": [ |
| 2370 | [ |
| 2371 | 31, |
| 2372 | 4 |
| 2373 | ] |
| 2374 | ] |
| 2375 | } |
| 2376 | ] |
| 2377 | } |
| 2378 | ---- |
| 2379 | |
| 2380 | The `base` parameter can be specified to control the base patch set from which the diff should |
| 2381 | be generated. |
| 2382 | |
| 2383 | .Request |
| 2384 | ---- |
| 2385 | GET /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/b6b9c10649b9041884046119ab794374470a1b45/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/diff?base=2 HTTP/1.0 |
| 2386 | ---- |
| 2387 | |
| 2388 | .Response |
| 2389 | ---- |
| 2390 | HTTP/1.1 200 OK |
| 2391 | Content-Disposition: attachment |
| 2392 | Content-Type: application/json;charset=UTF-8 |
| 2393 | |
| 2394 | )] |
| 2395 | { |
| 2396 | "meta_a": { |
| 2397 | "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2398 | "content_type": "text/x-java-source", |
| 2399 | "lines": 578 |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2400 | }, |
| 2401 | "meta_b": { |
| 2402 | "name": "gerrit-server/src/main/java/com/google/gerrit/server/project/RefControl.java", |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2403 | "content_type": "text/x-java-source", |
| 2404 | "lines": 578 |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2405 | }, |
| 2406 | "change_type": "MODIFIED", |
| 2407 | "content": [ |
| 2408 | { |
| 2409 | "skip": 578 |
| 2410 | } |
| 2411 | ] |
| 2412 | } |
| 2413 | ---- |
| 2414 | |
| 2415 | The `ignore-whitespace` parameter can be specified to control how whitespace differences are |
| 2416 | reported in the result. Valid values are `NONE`, `TRAILING`, `CHANGED` or `ALL`. |
| 2417 | |
| 2418 | The `context` parameter can be specified to control the number of lines of surrounding context |
| 2419 | in the diff. Valid values are `ALL` or number of lines. |
| 2420 | |
Edwin Kempin | 9300e4c | 2013-02-27 08:42:06 +0100 | [diff] [blame] | 2421 | [[set-reviewed]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2422 | === Set Reviewed |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2423 | -- |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2424 | 'PUT /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/reviewed' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2425 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 2426 | |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2427 | Marks a file of a revision as reviewed by the calling user. |
Edwin Kempin | 9300e4c | 2013-02-27 08:42:06 +0100 | [diff] [blame] | 2428 | |
| 2429 | .Request |
| 2430 | ---- |
| 2431 | PUT /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/reviewed HTTP/1.0 |
| 2432 | ---- |
| 2433 | |
| 2434 | .Response |
| 2435 | ---- |
| 2436 | HTTP/1.1 201 Created |
| 2437 | ---- |
| 2438 | |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2439 | If the file was already marked as reviewed by the calling user the |
Edwin Kempin | 9300e4c | 2013-02-27 08:42:06 +0100 | [diff] [blame] | 2440 | response is "`200 OK`". |
| 2441 | |
| 2442 | [[delete-reviewed]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2443 | === Delete Reviewed |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2444 | -- |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2445 | 'DELETE /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/files/link:#file-id[\{file-id\}]/reviewed' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2446 | -- |
Edwin Kempin | 50d3d9b | 2013-03-06 16:38:26 +0100 | [diff] [blame] | 2447 | |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2448 | Deletes the reviewed flag of the calling user from a file of a revision. |
Edwin Kempin | 9300e4c | 2013-02-27 08:42:06 +0100 | [diff] [blame] | 2449 | |
| 2450 | .Request |
| 2451 | ---- |
| 2452 | DELETE /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/files/gerrit-server%2Fsrc%2Fmain%2Fjava%2Fcom%2Fgoogle%2Fgerrit%2Fserver%2Fproject%2FRefControl.java/reviewed HTTP/1.0 |
| 2453 | ---- |
| 2454 | |
| 2455 | .Response |
| 2456 | ---- |
| 2457 | HTTP/1.1 204 No Content |
| 2458 | ---- |
| 2459 | |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2460 | [[cherry-pick]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2461 | === Cherry Pick Revision |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2462 | -- |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2463 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/cherrypick' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2464 | -- |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2465 | |
| 2466 | Cherry picks a revision to a destination branch. |
| 2467 | |
| 2468 | The commit message and destination branch must be provided in the request body inside a |
| 2469 | link:#cherrypick-input[CherryPickInput] entity. |
| 2470 | |
| 2471 | .Request |
| 2472 | ---- |
| 2473 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/cherrypick HTTP/1.0 |
| 2474 | Content-Type: application/json;charset=UTF-8 |
| 2475 | |
| 2476 | { |
Gustaf Lundh | 98df5b5 | 2013-05-07 19:22:13 +0100 | [diff] [blame] | 2477 | "message" : "Implementing Feature X", |
| 2478 | "destination" : "release-branch" |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2479 | } |
| 2480 | ---- |
| 2481 | |
| 2482 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 2483 | describes the resulting cherry picked change. |
| 2484 | |
| 2485 | .Response |
| 2486 | ---- |
| 2487 | HTTP/1.1 200 OK |
| 2488 | Content-Disposition: attachment |
| 2489 | Content-Type: application/json;charset=UTF-8 |
| 2490 | |
| 2491 | )]}' |
| 2492 | { |
| 2493 | "kind": "gerritcodereview#change", |
| 2494 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9941", |
| 2495 | "project": "myProject", |
| 2496 | "branch": "release-branch", |
| 2497 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9941", |
| 2498 | "subject": "Implementing Feature X", |
| 2499 | "status": "NEW", |
| 2500 | "created": "2013-02-01 09:59:32.126000000", |
| 2501 | "updated": "2013-02-21 11:16:36.775000000", |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2502 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 2503 | "insertions": 12, |
| 2504 | "deletions": 11, |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2505 | "_sortkey": "0023412400000f7d", |
| 2506 | "_number": 3965, |
| 2507 | "owner": { |
| 2508 | "name": "John Doe" |
| 2509 | } |
| 2510 | } |
| 2511 | ---- |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 2512 | |
David Ostrovsky | ae15e050 | 2013-08-19 08:06:07 +0200 | [diff] [blame] | 2513 | [[message]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2514 | === Edit Commit Message |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2515 | -- |
David Ostrovsky | ae15e050 | 2013-08-19 08:06:07 +0200 | [diff] [blame] | 2516 | 'POST /changes/link:#change-id[\{change-id\}]/revisions/link:#revision-id[\{revision-id\}]/message' |
Yuxuan 'fishy' Wang | d85b687 | 2013-11-15 11:47:46 -0800 | [diff] [blame] | 2517 | -- |
David Ostrovsky | ae15e050 | 2013-08-19 08:06:07 +0200 | [diff] [blame] | 2518 | |
| 2519 | Edit commit message. |
| 2520 | |
| 2521 | The commit message must be provided in the request body inside a |
| 2522 | link:#cherrypick-input[CherryPickInput] entity. |
| 2523 | |
| 2524 | .Request |
| 2525 | ---- |
| 2526 | POST /changes/myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940/revisions/674ac754f91e64a0efb8087e59a176484bd534d1/message HTTP/1.0 |
| 2527 | Content-Type: application/json;charset=UTF-8 |
| 2528 | |
| 2529 | { |
| 2530 | "message" : "Reword Implementing Feature X", |
| 2531 | } |
| 2532 | ---- |
| 2533 | |
| 2534 | As response a link:#change-info[ChangeInfo] entity is returned that |
| 2535 | describes the change. |
| 2536 | |
| 2537 | .Response |
| 2538 | ---- |
| 2539 | HTTP/1.1 200 OK |
| 2540 | Content-Disposition: attachment |
| 2541 | Content-Type: application/json;charset=UTF-8 |
| 2542 | |
| 2543 | )]}' |
| 2544 | { |
| 2545 | "kind": "gerritcodereview#change", |
| 2546 | "id": "myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9941", |
| 2547 | "project": "myProject", |
| 2548 | "branch": "release-branch", |
| 2549 | "change_id": "I8473b95934b5732ac55d26311a706c9c2bde9941", |
| 2550 | "subject": "Reword Implementing Feature X", |
| 2551 | "status": "NEW", |
| 2552 | "created": "2013-02-01 09:59:32.126000000", |
| 2553 | "updated": "2013-02-21 11:16:36.775000000", |
David Ostrovsky | ae15e050 | 2013-08-19 08:06:07 +0200 | [diff] [blame] | 2554 | "mergeable": true, |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 2555 | "insertions": 261, |
| 2556 | "deletions": 101, |
David Ostrovsky | ae15e050 | 2013-08-19 08:06:07 +0200 | [diff] [blame] | 2557 | "_sortkey": "0023412400000f7d", |
| 2558 | "_number": 3965, |
| 2559 | "owner": { |
| 2560 | "name": "John Doe" |
| 2561 | } |
| 2562 | } |
| 2563 | ---- |
| 2564 | |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 2565 | [[ids]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2566 | == IDs |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 2567 | |
Edwin Kempin | a3d02ef | 2013-02-22 16:31:53 +0100 | [diff] [blame] | 2568 | [[account-id]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2569 | === link:rest-api-accounts.html#account-id[\{account-id\}] |
Edwin Kempin | a3d02ef | 2013-02-22 16:31:53 +0100 | [diff] [blame] | 2570 | -- |
| 2571 | -- |
| 2572 | |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 2573 | [[change-id]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2574 | === \{change-id\} |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 2575 | Identifier that uniquely identifies one change. |
| 2576 | |
| 2577 | This can be: |
| 2578 | |
| 2579 | * an ID of the change in the format "'$$<project>~<branch>~<Change-Id>$$'", |
| 2580 | where for the branch the `refs/heads/` prefix can be omitted |
| 2581 | ("$$myProject~master~I8473b95934b5732ac55d26311a706c9c2bde9940$$") |
| 2582 | * a Change-Id if it uniquely identifies one change |
| 2583 | ("I8473b95934b5732ac55d26311a706c9c2bde9940") |
| 2584 | * a legacy numeric change ID ("4247") |
| 2585 | |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2586 | [[comment-id]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2587 | === \{comment-id\} |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2588 | UUID of a published comment. |
| 2589 | |
Edwin Kempin | 3ca5719 | 2013-02-27 07:44:01 +0100 | [diff] [blame] | 2590 | [[draft-id]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2591 | === \{draft-id\} |
Edwin Kempin | 3ca5719 | 2013-02-27 07:44:01 +0100 | [diff] [blame] | 2592 | UUID of a draft comment. |
Edwin Kempin | ff9e6e3 | 2013-02-21 13:07:11 +0100 | [diff] [blame] | 2593 | |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2594 | [[file-id]] |
| 2595 | \{file-id\} |
Edwin Kempin | 9300e4c | 2013-02-27 08:42:06 +0100 | [diff] [blame] | 2596 | ~~~~~~~~~~~~ |
Edwin Kempin | bea55a5 | 2013-05-14 13:53:39 +0200 | [diff] [blame] | 2597 | The path of the file. |
Edwin Kempin | 9300e4c | 2013-02-27 08:42:06 +0100 | [diff] [blame] | 2598 | |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 2599 | [[revision-id]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2600 | === \{revision-id\} |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 2601 | Identifier that uniquely identifies one revision of a change. |
| 2602 | |
| 2603 | This can be: |
| 2604 | |
Shawn Pearce | 9c0722a | 2013-03-02 15:30:31 -0800 | [diff] [blame] | 2605 | * the literal `current` to name the current patch set/revision |
Edwin Kempin | da6e5fa | 2013-02-25 14:48:12 +0100 | [diff] [blame] | 2606 | * a commit ID ("674ac754f91e64a0efb8087e59a176484bd534d1") |
| 2607 | * an abbreviated commit ID that uniquely identifies one revision of the |
| 2608 | change ("674ac754"), at least 4 digits are required |
| 2609 | * a legacy numeric patch number ("1" for first patch set of the change) |
| 2610 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2611 | [[json-entities]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2612 | == JSON Entities |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2613 | |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 2614 | [[abandon-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2615 | === AbandonInput |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 2616 | The `AbandonInput` entity contains information for abandoning a change. |
| 2617 | |
| 2618 | [options="header",width="50%",cols="1,^1,5"] |
| 2619 | |=========================== |
| 2620 | |Field Name ||Description |
| 2621 | |`message` |optional| |
| 2622 | Message to be added as review comment to the change when abandoning the |
| 2623 | change. |
| 2624 | |=========================== |
| 2625 | |
Shawn Pearce | dc4a9b2 | 2013-07-12 10:54:38 -0700 | [diff] [blame] | 2626 | [[action-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2627 | === ActionInfo |
Shawn Pearce | dc4a9b2 | 2013-07-12 10:54:38 -0700 | [diff] [blame] | 2628 | The `ActionInfo` entity describes a REST API call the client can |
| 2629 | make to manipulate a resource. These are frequently implemented by |
| 2630 | plugins and may be discovered at runtime. |
| 2631 | |
| 2632 | [options="header",width="50%",cols="1,^1,5"] |
| 2633 | |==================================== |
| 2634 | |Field Name ||Description |
| 2635 | |`method` |optional| |
| 2636 | HTTP method to use with the action. Most actions use `POST`, `PUT` |
| 2637 | or `DELETE` to cause state changes. |
| 2638 | |`label` |optional| |
| 2639 | Short title to display to a user describing the action. In the |
| 2640 | Gerrit web interface the label is used as the text on the button |
| 2641 | presented in the UI. |
| 2642 | |`title` |optional| |
| 2643 | Longer text to display describing the action. In a web UI this |
| 2644 | should be the title attribute of the element, displaying when |
| 2645 | the user hovers the mouse. |
| 2646 | |`enabled` |optional| |
| 2647 | If true the action is permitted at this time and the caller is |
| 2648 | likely allowed to execute it. This may change if state is updated |
| 2649 | at the server or permissions are modified. Not present if false. |
Shawn Pearce | dc4a9b2 | 2013-07-12 10:54:38 -0700 | [diff] [blame] | 2650 | |==================================== |
| 2651 | |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 2652 | [[add-reviewer-result]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2653 | === AddReviewerResult |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 2654 | The `AddReviewerResult` entity describes the result of adding a |
| 2655 | reviewer to a change. |
| 2656 | |
| 2657 | [options="header",width="50%",cols="1,^1,5"] |
| 2658 | |=========================== |
| 2659 | |Field Name ||Description |
| 2660 | |`reviewers` |optional| |
| 2661 | The newly added reviewers as a list of link:#reviewer-info[ |
| 2662 | ReviewerInfo] entities. |
| 2663 | |`error` |optional| |
| 2664 | Error message explaining why the reviewer could not be added. + |
| 2665 | If a group was specified in the input and an error is returned, it |
| 2666 | means that none of the members were added as reviewer. |
| 2667 | |`confirm` |`false` if not set| |
| 2668 | Whether adding the reviewer requires confirmation. |
| 2669 | |=========================== |
| 2670 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2671 | [[approval-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2672 | === ApprovalInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2673 | The `ApprovalInfo` entity contains information about an approval from a |
| 2674 | user for a label on a change. |
| 2675 | |
Edwin Kempin | 963dfd0 | 2013-02-27 12:39:32 +0100 | [diff] [blame] | 2676 | `ApprovalInfo` has the same fields as |
| 2677 | link:rest-api-accounts.html#account-info[AccountInfo]. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2678 | In addition `ApprovalInfo` has the following fields: |
| 2679 | |
| 2680 | [options="header",width="50%",cols="1,^1,5"] |
| 2681 | |=========================== |
| 2682 | |Field Name ||Description |
Dave Borowitz | a30db91 | 2013-03-22 14:20:33 -0700 | [diff] [blame] | 2683 | |`value` |optional| |
| 2684 | The vote that the user has given for the label. If present and zero, the |
| 2685 | user is permitted to vote on the label. If absent, the user is not |
| 2686 | permitted to vote on that label. |
Gustaf Lundh | 2e07d502 | 2013-05-08 17:07:42 +0100 | [diff] [blame] | 2687 | |`date` |optional| |
| 2688 | The time and date describing when the approval was made. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2689 | |=========================== |
| 2690 | |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 2691 | [[group-base-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2692 | === GroupBaseInfo |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 2693 | The `GroupBaseInfo` entity contains base information about the group. |
| 2694 | |
| 2695 | [options="header",width="50%",cols="1,6"] |
| 2696 | |========================== |
| 2697 | |Field Name |Description |
| 2698 | |`id` |The id of the group. |
| 2699 | |`name` |The name of the group. |
| 2700 | |========================== |
| 2701 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2702 | [[change-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2703 | === ChangeInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2704 | The `ChangeInfo` entity contains information about a change. |
| 2705 | |
| 2706 | [options="header",width="50%",cols="1,^1,5"] |
| 2707 | |================================== |
| 2708 | |Field Name ||Description |
| 2709 | |`kind` ||`gerritcodereview#change` |
| 2710 | |`id` || |
| 2711 | The ID of the change in the format "'<project>\~<branch>~<Change-Id>'", |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 2712 | where 'project', 'branch' and 'Change-Id' are URL encoded. For 'branch' the |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2713 | `refs/heads/` prefix is omitted. |
| 2714 | |`project` ||The name of the project. |
| 2715 | |`branch` || |
| 2716 | The name of the target branch. + |
| 2717 | The `refs/heads/` prefix is omitted. |
Edwin Kempin | cd6c01a1 | 2013-02-21 14:58:52 +0100 | [diff] [blame] | 2718 | |`topic` |optional|The topic to which this change belongs. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2719 | |`change_id` ||The Change-Id of the change. |
| 2720 | |`subject` || |
| 2721 | The subject of the change (header line of the commit message). |
| 2722 | |`status` || |
| 2723 | The status of the change (`NEW`, `SUBMITTED`, `MERGED`, `ABANDONED`, |
| 2724 | `DRAFT`). |
| 2725 | |`created` || |
| 2726 | The link:rest-api.html#timestamp[timestamp] of when the change was |
| 2727 | created. |
| 2728 | |`updated` || |
| 2729 | The link:rest-api.html#timestamp[timestamp] of when the change was last |
| 2730 | updated. |
| 2731 | |`starred` |not set if `false`| |
| 2732 | Whether the calling user has starred this change. |
| 2733 | |`reviewed` |not set if `false`| |
| 2734 | Whether the change was reviewed by the calling user. |
Shawn Pearce | 414c5ff | 2013-09-06 21:51:02 -0700 | [diff] [blame] | 2735 | Only set if link:#reviewed[reviewed] is requested. |
Edwin Kempin | baf70e1 | 2013-02-27 10:36:13 +0100 | [diff] [blame] | 2736 | |`mergeable` |optional| |
| 2737 | Whether the change is mergeable. + |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 2738 | Not set for merged changes. |
Edwin Kempin | a6b6eaf | 2013-11-23 11:05:58 +0100 | [diff] [blame] | 2739 | |`insertions` || |
| 2740 | Number of inserted lines. |
| 2741 | |`deletions` || |
| 2742 | Number of deleted lines. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2743 | |`_sortkey` ||The sortkey of the change. |
| 2744 | |`_number` ||The legacy numeric ID of the change. |
| 2745 | |`owner` || |
Edwin Kempin | 963dfd0 | 2013-02-27 12:39:32 +0100 | [diff] [blame] | 2746 | The owner of the change as an link:rest-api-accounts.html#account-info[ |
| 2747 | AccountInfo] entity. |
Shawn Pearce | 12e5159 | 2013-07-13 22:08:40 -0700 | [diff] [blame] | 2748 | |`actions` |optional| |
| 2749 | Actions the caller might be able to perform on this revision. The |
| 2750 | information is a map of view name to link:#action-info[ActionInfo] |
| 2751 | entities. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2752 | |`labels` |optional| |
| 2753 | The labels of the change as a map that maps the label names to |
| 2754 | link:#label-info[LabelInfo] entries. + |
| 2755 | Only set if link:#labels[labels] or link:#detailed-labels[detailed |
| 2756 | labels] are requested. |
| 2757 | |`permitted_labels` |optional| |
| 2758 | A map of the permitted labels that maps a label name to the list of |
| 2759 | values that are allowed for that label. + |
| 2760 | Only set if link:#detailed-labels[detailed labels] are requested. |
| 2761 | |`removable_reviewers`|optional| |
| 2762 | The reviewers that can be removed by the calling user as a list of |
Edwin Kempin | 963dfd0 | 2013-02-27 12:39:32 +0100 | [diff] [blame] | 2763 | link:rest-api-accounts.html#account-info[AccountInfo] entities. + |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2764 | Only set if link:#detailed-labels[detailed labels] are requested. |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 2765 | |`messages`|optional| |
Shawn Pearce | 414c5ff | 2013-09-06 21:51:02 -0700 | [diff] [blame] | 2766 | Messages associated with the change as a list of |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 2767 | link:#change-message-info[ChangeMessageInfo] entities. + |
| 2768 | Only set if link:#messages[messages] are requested. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2769 | |`current_revision` |optional| |
| 2770 | The commit ID of the current patch set of this change. + |
| 2771 | Only set if link:#current-revision[the current revision] is requested |
| 2772 | or if link:#all-revisions[all revisions] are requested. |
| 2773 | |`revisions` |optional| |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 2774 | All patch sets of this change as a map that maps the commit ID of the |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2775 | patch set to a link:#revision-info[RevisionInfo] entity. + |
Dave Borowitz | 0adf270 | 2014-01-22 10:41:52 -0800 | [diff] [blame] | 2776 | Only set if link:#current-revision[the current revision] is requested |
| 2777 | (in which case it will only contain a key for the current revision) or |
| 2778 | if link:#all-revisions[all revisions] are requested. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2779 | |`_more_changes` |optional, not set if `false`| |
| 2780 | Whether the query would deliver more results if not limited. + |
| 2781 | Only set on either the last or the first change that is returned. |
| 2782 | |================================== |
| 2783 | |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 2784 | [[change-message-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2785 | === ChangeMessageInfo |
John Spurlock | 74a70cc | 2013-03-23 16:41:50 -0400 | [diff] [blame] | 2786 | The `ChangeMessageInfo` entity contains information about a message |
| 2787 | attached to a change. |
| 2788 | |
| 2789 | [options="header",width="50%",cols="1,^1,5"] |
| 2790 | |================================== |
| 2791 | |Field Name ||Description |
| 2792 | |`id` ||The ID of the message. |
| 2793 | |`author` |optional| |
| 2794 | Author of the message as an |
| 2795 | link:rest-api-accounts.html#account-info[AccountInfo] entity. + |
| 2796 | Unset if written by the Gerrit system. |
| 2797 | |`date` || |
| 2798 | The link:rest-api.html#timestamp[timestamp] this message was posted. |
| 2799 | |`message` ||The text left by the user. |
| 2800 | |`_revision_number` |optional| |
| 2801 | Which patchset (if any) generated this message. |
| 2802 | |================================== |
| 2803 | |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2804 | [[cherrypick-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2805 | === CherryPickInput |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2806 | The `CherryPickInput` entity contains information for cherry-picking a change to a new branch. |
| 2807 | |
| 2808 | [options="header",width="50%",cols="1,6"] |
| 2809 | |=========================== |
| 2810 | |Field Name |Description |
| 2811 | |`message` |Commit message for the cherry-picked change |
David Ostrovsky | 9345ebc | 2014-04-28 23:19:55 +0200 | [diff] [blame^] | 2812 | |`destination` |Destination branch |
Gustaf Lundh | 019fb26 | 2012-11-28 14:20:22 +0100 | [diff] [blame] | 2813 | |=========================== |
| 2814 | |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 2815 | [[comment-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2816 | === CommentInfo |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 2817 | The `CommentInfo` entity contains information about an inline comment. |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 2818 | |
| 2819 | [options="header",width="50%",cols="1,^1,5"] |
| 2820 | |=========================== |
| 2821 | |Field Name ||Description |
| 2822 | |`kind` ||`gerritcodereview#comment` |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2823 | |`id` ||The URL encoded UUID of the comment. |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 2824 | |`path` |optional| |
| 2825 | The path of the file for which the inline comment was done. + |
| 2826 | Not set if returned in a map where the key is the file path. |
| 2827 | |`side` |optional| |
| 2828 | The side on which the comment was added. + |
| 2829 | Allowed values are `REVISION` and `PARENT`. + |
| 2830 | If not set, the default is `REVISION`. |
| 2831 | |`line` |optional| |
| 2832 | The number of the line for which the comment was done. + |
Michael Zhou | 596c768 | 2013-08-25 05:43:34 -0400 | [diff] [blame] | 2833 | If range is set, this equals the end line of the range. + |
| 2834 | If neither line nor range is set, it's a file comment. |
| 2835 | |`range` |optional| |
| 2836 | The range of the comment as a link:rest-api.html#comment-range[CommentRange] |
| 2837 | entity. |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 2838 | |`in_reply_to` |optional| |
| 2839 | The URL encoded UUID of the comment to which this comment is a reply. |
| 2840 | |`message` |optional|The comment message. |
| 2841 | |`updated` || |
| 2842 | The link:rest-api.html#timestamp[timestamp] of when this comment was |
| 2843 | written. |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2844 | |`author` |optional| |
David Pursehouse | c633a57 | 2013-08-26 14:01:59 +0900 | [diff] [blame] | 2845 | The author of the message as an |
John Spurlock | 5e402f0 | 2013-03-24 11:35:04 -0400 | [diff] [blame] | 2846 | link:rest-api-accounts.html#account-info[AccountInfo] entity. + |
| 2847 | Unset for draft comments, assumed to be the calling user. |
Edwin Kempin | cb6724a | 2013-02-26 16:58:51 +0100 | [diff] [blame] | 2848 | |=========================== |
| 2849 | |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 2850 | [[comment-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2851 | === CommentInput |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 2852 | The `CommitInput` entity contains information for creating an inline |
| 2853 | comment. |
| 2854 | |
| 2855 | [options="header",width="50%",cols="1,^1,5"] |
| 2856 | |=========================== |
| 2857 | |Field Name ||Description |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 2858 | |`kind` |optional| |
| 2859 | Must be `gerritcodereview#comment` if provided. |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 2860 | |`id` |optional| |
Edwin Kempin | c09826d7 | 2013-02-26 16:10:39 +0100 | [diff] [blame] | 2861 | The URL encoded UUID of the comment if an existing draft comment should |
| 2862 | be updated. |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 2863 | |`path` |optional| |
| 2864 | The path of the file for which the inline comment should be added. + |
| 2865 | Doesn't need to be set if contained in a map where the key is the file |
| 2866 | path. |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 2867 | |`side` |optional| |
| 2868 | The side on which the comment should be added. + |
| 2869 | Allowed values are `REVISION` and `PARENT`. + |
| 2870 | If not set, the default is `REVISION`. |
| 2871 | |`line` |optional| |
| 2872 | The number of the line for which the comment should be added. + |
| 2873 | `0` if it is a file comment. + |
Michael Zhou | 596c768 | 2013-08-25 05:43:34 -0400 | [diff] [blame] | 2874 | If neither line nor range is set, a file comment is added. + |
| 2875 | If range is set, this should equal the end line of the range. |
| 2876 | |`range` |optional| |
| 2877 | The range of the comment as a link:rest-api.html#comment-range[CommentRange] |
| 2878 | entity. |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 2879 | |`in_reply_to` |optional| |
| 2880 | The URL encoded UUID of the comment to which this comment is a reply. |
Edwin Kempin | 7faf41e | 2013-02-27 08:17:02 +0100 | [diff] [blame] | 2881 | |`updated` |optional| |
| 2882 | The link:rest-api.html#timestamp[timestamp] of this comment. + |
| 2883 | Accepted but ignored. |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 2884 | |`message` |optional| |
| 2885 | The comment message. + |
| 2886 | If not set and an existing draft comment is updated, the existing draft |
| 2887 | comment is deleted. |
| 2888 | |=========================== |
| 2889 | |
Michael Zhou | 596c768 | 2013-08-25 05:43:34 -0400 | [diff] [blame] | 2890 | [[comment-range]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2891 | === CommentRange |
Michael Zhou | 596c768 | 2013-08-25 05:43:34 -0400 | [diff] [blame] | 2892 | The `CommentRange` entity describes the range of an inline comment. |
| 2893 | |
| 2894 | [options="header",width="50%",cols="1,^1,5"] |
| 2895 | |=========================== |
| 2896 | |Field Name ||Description |
| 2897 | |`start_line` ||The start line number of the range. |
| 2898 | |`start_character` ||The character position in the start line. |
| 2899 | |`end_line` ||The end line number of the range. |
| 2900 | |`end_character` ||The character position in the end line. |
| 2901 | |=========================== |
| 2902 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2903 | [[commit-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2904 | === CommitInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2905 | The `CommitInfo` entity contains information about a commit. |
| 2906 | |
| 2907 | [options="header",width="50%",cols="1,6"] |
| 2908 | |========================== |
| 2909 | |Field Name |Description |
| 2910 | |`commit` |The commit ID. |
Edwin Kempin | b89b0c8 | 2014-04-09 12:51:18 +0200 | [diff] [blame] | 2911 | |`parents` | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2912 | The parent commits of this commit as a list of |
Edwin Kempin | cecf90a | 2014-04-09 14:58:35 +0200 | [diff] [blame] | 2913 | link:#commit-info[CommitInfo] entities. In each parent |
| 2914 | only the `commit` and `subject` fields are populated. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2915 | |`author` |The author of the commit as a |
| 2916 | link:#git-person-info[GitPersonInfo] entity. |
| 2917 | |`committer` |The committer of the commit as a |
| 2918 | link:#git-person-info[GitPersonInfo] entity. |
| 2919 | |`subject` | |
| 2920 | The subject of the commit (header line of the commit message). |
| 2921 | |`message` |The commit message. |
| 2922 | |========================== |
| 2923 | |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2924 | [[diff-content]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2925 | === DiffContent |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2926 | The `DiffContent` entity contains information about the content differences |
| 2927 | in a file. |
| 2928 | |
| 2929 | [options="header",width="50%",cols="1,^1,5"] |
| 2930 | |========================== |
| 2931 | |Field Name ||Description |
| 2932 | |`a` |optional|Content only in the file on side A (deleted in B). |
| 2933 | |`b` |optional|Content only in the file on side B (added in B). |
| 2934 | |`ab` |optional|Content in the file on both sides (unchanged). |
| 2935 | |`edit_a` |only present during a replace, i.e. both `a` and `b` are present| |
| 2936 | Text sections deleted from side A as a |
| 2937 | link:#diff-intraline-info[DiffIntralineInfo] entity. |
| 2938 | |`edit_b` |only present during a replace, i.e. both `a` and `b` are present| |
| 2939 | Text sections inserted in side B as a |
| 2940 | link:#diff-intraline-info[DiffIntralineInfo] entity. |
| 2941 | |`skip` |optional|count of lines skipped on both sides when the file is |
| 2942 | too large to include all common lines. |
Shawn Pearce | 425a2be | 2014-01-02 16:00:58 -0800 | [diff] [blame] | 2943 | |`common` |optional|Set to `true` if the region is common according |
| 2944 | to the requested ignore-whitespace parameter, but a and b contain |
| 2945 | differing amounts of whitespace. When present and true a and b are |
| 2946 | used instead of ab. |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2947 | |========================== |
| 2948 | |
| 2949 | [[diff-file-meta-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2950 | === DiffFileMetaInfo |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2951 | The `DiffFileMetaInfo` entity contains meta information about a file diff. |
| 2952 | |
| 2953 | [options="header",width="50%",cols="1,6"] |
| 2954 | |========================== |
| 2955 | |Field Name |Description |
| 2956 | |`name` |The name of the file. |
| 2957 | |`content_type`|The content type of the file. |
Shawn Pearce | d62a6a9 | 2013-12-05 12:45:32 -0800 | [diff] [blame] | 2958 | |`lines` |The total number of lines in the file. |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2959 | |========================== |
| 2960 | |
| 2961 | [[diff-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2962 | === DiffInfo |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2963 | The `DiffInfo` entity contains information about the diff of a file |
| 2964 | in a revision. |
| 2965 | |
| 2966 | [options="header",width="50%",cols="1,^1,5"] |
| 2967 | |========================== |
| 2968 | |Field Name ||Description |
| 2969 | |`meta_a` |not present when the file is added| |
| 2970 | Meta information about the file on side A as a |
| 2971 | link:#diff-file-meta-info[DiffFileMetaInfo] entity. |
| 2972 | |`meta_b` |not present when the file is deleted| |
| 2973 | Meta information about the file on side B as a |
| 2974 | link:#diff-file-meta-info[DiffFileMetaInfo] entity. |
| 2975 | |`change_type` ||The type of change (`ADDED`, `MODIFIED`, `DELETED`, `RENAMED` |
| 2976 | `COPIED`, `REWRITE`). |
| 2977 | |`intraline_status`|only set when the `intraline` parameter was specified in the request| |
| 2978 | Intraline status (`OK`, `ERROR`, `TIMEOUT`). |
| 2979 | |`diff_header` ||A list of strings representing the patch set diff header. |
| 2980 | |`content` ||The content differences in the file as a list of |
| 2981 | link:#diff-content[DiffContent] entities. |
| 2982 | |========================== |
| 2983 | |
| 2984 | [[diff-intraline-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2985 | === DiffIntralineInfo |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2986 | The `DiffIntralineInfo` entity contains information about intraline edits in a |
| 2987 | file. |
| 2988 | |
David Pursehouse | 31203f5 | 2013-06-08 17:05:45 +0900 | [diff] [blame] | 2989 | The information consists of a list of `<skip length, mark length>` pairs, where |
| 2990 | the skip length is the number of characters between the end of the previous edit |
| 2991 | and the start of this edit, and the mark length is the number of edited characters |
| 2992 | following the skip. The start of the edits is from the beginning of the related |
| 2993 | diff content lines. |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2994 | |
David Pursehouse | 31203f5 | 2013-06-08 17:05:45 +0900 | [diff] [blame] | 2995 | Note that the implied newline character at the end of each line is included in |
Colby Ranger | 4c29275 | 2013-06-07 11:11:00 -0700 | [diff] [blame] | 2996 | the length calculation, and thus it is possible for the edits to span newlines. |
David Pursehouse | 882aef2 | 2013-06-05 10:56:37 +0900 | [diff] [blame] | 2997 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 2998 | [[fetch-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 2999 | === FetchInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3000 | The `FetchInfo` entity contains information about how to fetch a patch |
| 3001 | set via a certain protocol. |
| 3002 | |
Edwin Kempin | ea62148 | 2013-10-16 12:58:24 +0200 | [diff] [blame] | 3003 | [options="header",width="50%",cols="1,^1,5"] |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3004 | |========================== |
Edwin Kempin | ea62148 | 2013-10-16 12:58:24 +0200 | [diff] [blame] | 3005 | |Field Name ||Description |
| 3006 | |`url` ||The URL of the project. |
| 3007 | |`ref` ||The ref of the patch set. |
| 3008 | |`commands` |optional| |
| 3009 | The download commands for this patch set as a map that maps the command |
| 3010 | names to the commands. + |
| 3011 | Only set if link:#download_commands[download commands] are requested. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3012 | |========================== |
| 3013 | |
| 3014 | [[file-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3015 | === FileInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3016 | The `FileInfo` entity contains information about a file in a patch set. |
| 3017 | |
| 3018 | [options="header",width="50%",cols="1,^1,5"] |
| 3019 | |============================= |
| 3020 | |Field Name ||Description |
| 3021 | |`status` |optional| |
| 3022 | The status of the file ("`A`"=Added, "`D`"=Deleted, "`R`"=Renamed, |
| 3023 | "`C`"=Copied, "`W`"=Rewritten). + |
| 3024 | Not set if the file was Modified ("`M`"). |
| 3025 | |`binary` |not set if `false`|Whether the file is binary. |
| 3026 | |`old_path` |optional| |
| 3027 | The old file path. + |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 3028 | Only set if the file was renamed or copied. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3029 | |`lines_inserted`|optional| |
| 3030 | Number of inserted lines. + |
| 3031 | Not set for binary files or if no lines were inserted. |
| 3032 | |`lines_deleted` |optional| |
| 3033 | Number of deleted lines. + |
| 3034 | Not set for binary files or if no lines were deleted. |
| 3035 | |============================= |
| 3036 | |
| 3037 | [[git-person-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3038 | === GitPersonInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3039 | The `GitPersonInfo` entity contains information about the |
| 3040 | author/committer of a commit. |
| 3041 | |
| 3042 | [options="header",width="50%",cols="1,6"] |
| 3043 | |========================== |
| 3044 | |Field Name |Description |
| 3045 | |`name` |The name of the author/committer. |
| 3046 | |`email` |The email address of the author/committer. |
| 3047 | |`date` |The link:rest-api.html#timestamp[timestamp] of when |
| 3048 | this identity was constructed. |
| 3049 | |`tz` |The timezone offset from UTC of when this identity was |
| 3050 | constructed. |
| 3051 | |========================== |
| 3052 | |
| 3053 | [[label-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3054 | === LabelInfo |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3055 | The `LabelInfo` entity contains information about a label on a change, always |
| 3056 | corresponding to the current patch set. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3057 | |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3058 | There are two options that control the contents of `LabelInfo`: |
Dave Borowitz | 7d6aa01 | 2013-06-14 16:53:48 -0700 | [diff] [blame] | 3059 | link:#labels[`LABELS`] and link:#detailed-labels[`DETAILED_LABELS`]. |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3060 | |
| 3061 | * For a quick summary of the state of labels, use `LABELS`. |
| 3062 | * For detailed information about labels, including exact numeric votes for all |
| 3063 | users and the allowed range of votes for the current user, use `DETAILED_LABELS`. |
| 3064 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3065 | ==== Common fields |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3066 | [options="header",width="50%",cols="1,^1,5"] |
| 3067 | |=========================== |
| 3068 | |Field Name ||Description |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3069 | |`optional` |not set if `false`| |
| 3070 | Whether the label is optional. Optional means the label may be set, but |
| 3071 | it's neither necessary for submission nor does it block submission if |
| 3072 | set. |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3073 | |=========================== |
| 3074 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3075 | ==== Fields set by `LABELS` |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3076 | [options="header",width="50%",cols="1,^1,5"] |
| 3077 | |=========================== |
| 3078 | |Field Name ||Description |
| 3079 | |`approved` |optional|One user who approved this label on the change |
| 3080 | (voted the maximum value) as an |
| 3081 | link:rest-api-accounts.html#account-info[AccountInfo] entity. |
| 3082 | |`rejected` |optional|One user who rejected this label on the change |
| 3083 | (voted the minimum value) as an |
| 3084 | link:rest-api-accounts.html#account-info[AccountInfo] entity. |
| 3085 | |`recommended` |optional|One user who recommended this label on the |
| 3086 | change (voted positively, but not the maximum value) as an |
| 3087 | link:rest-api-accounts.html#account-info[AccountInfo] entity. |
| 3088 | |`disliked` |optional|One user who disliked this label on the change |
| 3089 | (voted negatively, but not the minimum value) as an |
| 3090 | link:rest-api-accounts.html#account-info[AccountInfo] entity. |
David Ostrovsky | 5292fd7 | 2014-02-27 21:56:35 +0100 | [diff] [blame] | 3091 | |`blocking` |optional|If `true`, the label blocks submit operation. |
| 3092 | If not set, the default is false. |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3093 | |`value` |optional|The voting value of the user who |
| 3094 | recommended/disliked this label on the change if it is not |
| 3095 | "`+1`"/"`-1`". |
Khai Do | 4c91b00 | 2014-04-06 23:27:43 -0700 | [diff] [blame] | 3096 | |`default_value`|optional|The default voting value for the label. |
| 3097 | This value may be outside the range specified in permitted_labels. |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3098 | |=========================== |
| 3099 | |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3100 | ==== Fields set by `DETAILED_LABELS` |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3101 | [options="header",width="50%",cols="1,^1,5"] |
| 3102 | |=========================== |
| 3103 | |Field Name ||Description |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3104 | |`all` |optional|List of all approvals for this label as a list |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3105 | of link:#approval-info[ApprovalInfo] entities. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3106 | |`values` |optional|A map of all values that are allowed for this |
| 3107 | label. The map maps the values ("`-2`", "`-1`", " `0`", "`+1`", "`+2`") |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3108 | to the value descriptions. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3109 | |=========================== |
| 3110 | |
Dave Borowitz | 8815951 | 2013-06-14 14:21:50 -0700 | [diff] [blame] | 3111 | |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 3112 | [[restore-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3113 | === RestoreInput |
Edwin Kempin | ed5364b | 2013-02-22 10:39:33 +0100 | [diff] [blame] | 3114 | The `RestoreInput` entity contains information for restoring a change. |
| 3115 | |
| 3116 | [options="header",width="50%",cols="1,^1,5"] |
| 3117 | |=========================== |
| 3118 | |Field Name ||Description |
| 3119 | |`message` |optional| |
| 3120 | Message to be added as review comment to the change when restoring the |
| 3121 | change. |
| 3122 | |=========================== |
| 3123 | |
Edwin Kempin | d2ec415 | 2013-02-22 12:17:19 +0100 | [diff] [blame] | 3124 | [[revert-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3125 | === RevertInput |
Edwin Kempin | d2ec415 | 2013-02-22 12:17:19 +0100 | [diff] [blame] | 3126 | The `RevertInput` entity contains information for reverting a change. |
| 3127 | |
| 3128 | [options="header",width="50%",cols="1,^1,5"] |
| 3129 | |=========================== |
| 3130 | |Field Name ||Description |
| 3131 | |`message` |optional| |
| 3132 | Message to be added as review comment to the change when reverting the |
| 3133 | change. |
| 3134 | |=========================== |
| 3135 | |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 3136 | [[review-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3137 | === ReviewInfo |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 3138 | The `ReviewInfo` entity contains information about a review. |
| 3139 | |
| 3140 | [options="header",width="50%",cols="1,6"] |
| 3141 | |=========================== |
| 3142 | |Field Name |Description |
| 3143 | |`labels` | |
| 3144 | The labels of the review as a map that maps the label names to the |
| 3145 | voting values. |
| 3146 | |=========================== |
| 3147 | |
| 3148 | [[review-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3149 | === ReviewInput |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 3150 | The `ReviewInput` entity contains information for adding a review to a |
| 3151 | revision. |
| 3152 | |
| 3153 | [options="header",width="50%",cols="1,^1,5"] |
| 3154 | |============================ |
| 3155 | |Field Name ||Description |
| 3156 | |`message` |optional| |
| 3157 | The message to be added as review comment. |
| 3158 | |`labels` |optional| |
| 3159 | The votes that should be added to the revision as a map that maps the |
| 3160 | label names to the voting values. |
| 3161 | |`comments` |optional| |
| 3162 | The comments that should be added as a map that maps a file path to a |
| 3163 | list of link:#comment-input[CommentInput] entities. |
| 3164 | |`strict_labels`|`true` if not set| |
John Spurlock | d25fad1 | 2013-03-09 11:48:49 -0500 | [diff] [blame] | 3165 | Whether all labels are required to be within the user's permitted ranges |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 3166 | based on access controls. + |
| 3167 | If `true`, attempting to use a label not granted to the user will fail |
| 3168 | the entire modify operation early. + |
| 3169 | If `false`, the operation will execute anyway, but the proposed labels |
| 3170 | will be modified to be the "best" value allowed by the access controls. |
| 3171 | |`drafts` |optional| |
| 3172 | Draft handling that defines how draft comments are handled that are |
| 3173 | already in the database but that were not also described in this |
| 3174 | input. + |
| 3175 | Allowed values are `DELETE`, `PUBLISH` and `KEEP`. + |
| 3176 | If not set, the default is `DELETE`. |
| 3177 | |`notify` |optional| |
| 3178 | Notify handling that defines to whom email notifications should be sent |
| 3179 | after the review is stored. + |
| 3180 | Allowed values are `NONE`, `OWNER`, `OWNER_REVIEWERS` and `ALL`. + |
| 3181 | If not set, the default is `ALL`. |
Shawn Pearce | 9d78312 | 2013-06-11 18:18:03 -0700 | [diff] [blame] | 3182 | |`on_behalf_of`|optional| |
| 3183 | link:rest-api-accounts.html#account-id[\{account-id\}] the review |
| 3184 | should be posted on behalf of. To use this option the caller must |
| 3185 | have been granted `labelAs-NAME` permission for all keys of labels. |
Edwin Kempin | 67498de | 2013-02-25 16:15:34 +0100 | [diff] [blame] | 3186 | |============================ |
| 3187 | |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 3188 | [[reviewer-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3189 | === ReviewerInfo |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 3190 | The `ReviewerInfo` entity contains information about a reviewer and its |
| 3191 | votes on a change. |
| 3192 | |
Edwin Kempin | 963dfd0 | 2013-02-27 12:39:32 +0100 | [diff] [blame] | 3193 | `ReviewerInfo` has the same fields as |
| 3194 | link:rest-api-accounts.html#account-info[AccountInfo] and includes |
| 3195 | link:#detailed-accounts[detailed account information]. |
Edwin Kempin | 1dbe19e | 2013-02-22 16:18:58 +0100 | [diff] [blame] | 3196 | In addition `ReviewerInfo` has the following fields: |
| 3197 | |
| 3198 | [options="header",width="50%",cols="1,6"] |
| 3199 | |========================== |
| 3200 | |Field Name |Description |
| 3201 | |`kind` |`gerritcodereview#reviewer` |
| 3202 | |`approvals` | |
| 3203 | The approvals of the reviewer as a map that maps the label names to the |
| 3204 | approval values ("`-2`", "`-1`", " `0`", "`+1`", "`+2`"). |
| 3205 | |========================== |
| 3206 | |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 3207 | [[reviewer-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3208 | === ReviewerInput |
Edwin Kempin | 392328e | 2013-02-25 12:50:03 +0100 | [diff] [blame] | 3209 | The `ReviewerInput` entity contains information for adding a reviewer |
| 3210 | to a change. |
| 3211 | |
| 3212 | [options="header",width="50%",cols="1,^1,5"] |
| 3213 | |=========================== |
| 3214 | |Field Name ||Description |
| 3215 | |`reviewer` || |
| 3216 | The link:rest-api-accounts.html#account-id[ID] of one account that |
| 3217 | should be added as reviewer or the link:rest-api-groups.html#group-id[ |
| 3218 | ID] of one group for which all members should be added as reviewers. + |
| 3219 | If an ID identifies both an account and a group, only the account is |
| 3220 | added as reviewer to the change. |
| 3221 | |`confirmed` |optional| |
| 3222 | Whether adding the reviewer is confirmed. + |
| 3223 | The Gerrit server may be configured to |
| 3224 | link:config-gerrit.html#addreviewer.maxWithoutConfirmation[require a |
| 3225 | confirmation] when adding a group as reviewer that has many members. |
| 3226 | |=========================== |
| 3227 | |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3228 | [[revision-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3229 | === RevisionInfo |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3230 | The `RevisionInfo` entity contains information about a patch set. |
| 3231 | |
| 3232 | [options="header",width="50%",cols="1,^1,5"] |
| 3233 | |=========================== |
| 3234 | |Field Name ||Description |
| 3235 | |`draft` |not set if `false`|Whether the patch set is a draft. |
David Ostrovsky | 17d0d33 | 2013-09-30 21:36:09 +0200 | [diff] [blame] | 3236 | |`has_draft_comments` |not set if `false`|Whether the patch |
| 3237 | set has one or more draft comments by the calling user. Only set if |
| 3238 | link:#draft_comments[draft comments] is requested. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3239 | |`_number` ||The patch set number. |
| 3240 | |`fetch` || |
| 3241 | Information about how to fetch this patch set. The fetch information is |
| 3242 | provided as a map that maps the protocol name ("`git`", "`http`", |
| 3243 | "`ssh`") to link:#fetch-info[FetchInfo] entities. |
Shawn Pearce | 12e5159 | 2013-07-13 22:08:40 -0700 | [diff] [blame] | 3244 | |`commit` |optional|The commit of the patch set as |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3245 | link:#commit-info[CommitInfo] entity. |
Shawn Pearce | 12e5159 | 2013-07-13 22:08:40 -0700 | [diff] [blame] | 3246 | |`files` |optional| |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3247 | The files of the patch set as a map that maps the file names to |
| 3248 | link:#file-info[FileInfo] entities. |
Shawn Pearce | 12e5159 | 2013-07-13 22:08:40 -0700 | [diff] [blame] | 3249 | |`actions` |optional| |
Shawn Pearce | dc4a9b2 | 2013-07-12 10:54:38 -0700 | [diff] [blame] | 3250 | Actions the caller might be able to perform on this revision. The |
| 3251 | information is a map of view name to link:#action-info[ActionInfo] |
| 3252 | entities. |
Edwin Kempin | 4eac964 | 2014-04-11 16:07:27 +0200 | [diff] [blame] | 3253 | |'web_links' |optional| |
Edwin Kempin | bd885ff | 2014-04-11 16:11:56 +0200 | [diff] [blame] | 3254 | Links to the patch set in external sites as a list of |
| 3255 | link:#web-link-info[WebLinkInfo] entities. |
Edwin Kempin | e344629 | 2013-02-19 16:40:14 +0100 | [diff] [blame] | 3256 | |=========================== |
| 3257 | |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3258 | [[rule-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3259 | === RuleInput |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3260 | The `RuleInput` entity contains information to test a Prolog rule. |
| 3261 | |
| 3262 | [options="header",width="50%",cols="1,^1,5"] |
| 3263 | |=========================== |
| 3264 | |Field Name ||Description |
| 3265 | |`rule`|| |
| 3266 | Prolog code to execute instead of the code in `refs/meta/config`. |
| 3267 | |`filters`|`RUN` if not set| |
| 3268 | When `RUN` filter rules in the parent projects are called to |
| 3269 | post-process the results of the project specific rule. This |
| 3270 | behavior matches how the rule will execute if installed. + |
| 3271 | If `SKIP` the parent filters are not called, allowing the test |
| 3272 | to return results from the input rule. |
| 3273 | |=========================== |
| 3274 | |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 3275 | [[suggested-reviewer-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3276 | === SuggestedReviewerInfo |
David Ostrovsky | 8c5f80a | 2013-09-02 20:22:39 +0200 | [diff] [blame] | 3277 | The `SuggestedReviewerInfo` entity contains information about a reviewer |
| 3278 | that can be added to a change (an account or a group). |
| 3279 | |
| 3280 | `SuggestedReviewerInfo` has either the `account` field that contains |
| 3281 | the link:rest-api-accounts.html#account-info[AccountInfo] entity, or |
| 3282 | the `group` field that contains the |
| 3283 | link:rest-api-changes.html#group-base-info[GroupBaseInfo] entity. |
| 3284 | |
Edwin Kempin | 14b5811 | 2013-02-26 16:30:19 +0100 | [diff] [blame] | 3285 | [[submit-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3286 | === SubmitInfo |
Edwin Kempin | 14b5811 | 2013-02-26 16:30:19 +0100 | [diff] [blame] | 3287 | The `SubmitInfo` entity contains information about the change status |
| 3288 | after submitting. |
| 3289 | |
| 3290 | [options="header",width="50%",cols="1,6"] |
| 3291 | |========================== |
| 3292 | |Field Name |Description |
| 3293 | |`status` | |
| 3294 | The status of the change after submitting, can be `MERGED` or |
| 3295 | `SUBMITTED`. + |
| 3296 | If `wait_for_merge` in the link:#submit-input[SubmitInput] was set to |
| 3297 | `false` the returned status is `SUBMITTED` and the caller can't know |
| 3298 | whether the change could be merged successfully. |
David Ostrovsky | 868e341 | 2014-01-30 19:50:57 +0100 | [diff] [blame] | 3299 | |`on_behalf_of`|optional| |
| 3300 | The link:rest-api-accounts.html#account-id[\{account-id\}] of the user on |
| 3301 | whose behalf the action should be done. To use this option the caller must |
David Pursehouse | 22bd6f9 | 2014-02-20 21:11:01 +0900 | [diff] [blame] | 3302 | have been granted both `Submit` and `Submit (On Behalf Of)` permissions. |
| 3303 | The user named by `on_behalf_of` does not need to be granted the `Submit` |
| 3304 | permission. This feature is aimed for CI solutions: the CI account can be |
| 3305 | granted both permssions, so individual users don't need `Submit` permission |
| 3306 | themselves. Still the changes can be submited on behalf of real users and |
| 3307 | not with the identity of the CI account. |
Edwin Kempin | 14b5811 | 2013-02-26 16:30:19 +0100 | [diff] [blame] | 3308 | |========================== |
| 3309 | |
Edwin Kempin | 0eddba0 | 2013-02-22 15:30:12 +0100 | [diff] [blame] | 3310 | [[submit-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3311 | === SubmitInput |
Edwin Kempin | 0eddba0 | 2013-02-22 15:30:12 +0100 | [diff] [blame] | 3312 | The `SubmitInput` entity contains information for submitting a change. |
| 3313 | |
| 3314 | [options="header",width="50%",cols="1,^1,5"] |
| 3315 | |=========================== |
| 3316 | |Field Name ||Description |
| 3317 | |`wait_for_merge`|`false` if not set| |
| 3318 | Whether the request should wait for the merge to complete. + |
| 3319 | If `false` the request returns immediately after the change has been |
| 3320 | added to the merge queue and the caller can't know whether the change |
| 3321 | could be merged successfully. |
| 3322 | |=========================== |
| 3323 | |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3324 | [[submit-record]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3325 | === SubmitRecord |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3326 | The `SubmitRecord` entity describes results from a submit_rule. |
| 3327 | |
| 3328 | [options="header",width="50%",cols="1,^1,5"] |
| 3329 | |=========================== |
| 3330 | |Field Name ||Description |
| 3331 | |`status`|| |
| 3332 | `OK`, the change can be submitted. + |
| 3333 | `NOT_READY`, additional labels are required before submit. + |
| 3334 | `CLOSED`, closed changes cannot be submitted. + |
| 3335 | `RULE_ERROR`, rule code failed with an error. |
| 3336 | |`ok`|optional| |
Edwin Kempin | fe29b81 | 2013-03-05 14:52:54 +0100 | [diff] [blame] | 3337 | Map of labels that are approved; an |
| 3338 | link:rest-api-accounts.html#account-info[AccountInfo] identifies the |
| 3339 | voter chosen by the rule. |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3340 | |`reject`|optional| |
Edwin Kempin | fe29b81 | 2013-03-05 14:52:54 +0100 | [diff] [blame] | 3341 | Map of labels that are preventing submit; |
| 3342 | link:rest-api-accounts.html#account-info[AccountInfo] identifies voter. |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3343 | |`need`|optional| |
| 3344 | Map of labels that need to be given to submit. The value is |
| 3345 | currently an empty object. |
| 3346 | |`may`|optional| |
| 3347 | Map of labels that can be used, but do not affect submit. |
Edwin Kempin | fe29b81 | 2013-03-05 14:52:54 +0100 | [diff] [blame] | 3348 | link:rest-api-accounts.html#account-info[AccountInfo] identifies voter, |
| 3349 | if the label has been applied. |
Shawn Pearce | b1f730b | 2013-03-04 07:54:09 -0800 | [diff] [blame] | 3350 | |`impossible`|optional| |
| 3351 | Map of labels that should have been in `need` but cannot be |
| 3352 | used by any user because of access restrictions. The value |
| 3353 | is currently an empty object. |
| 3354 | |`error_message`|optional| |
| 3355 | When status is RULE_ERROR this message provides some text describing |
| 3356 | the failure of the rule predicate. |
| 3357 | |=========================== |
| 3358 | |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 3359 | [[topic-input]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3360 | === TopicInput |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 3361 | The `TopicInput` entity contains information for setting a topic. |
| 3362 | |
| 3363 | [options="header",width="50%",cols="1,^1,5"] |
| 3364 | |=========================== |
| 3365 | |Field Name ||Description |
| 3366 | |`topic` |optional|The topic. + |
| 3367 | The topic will be deleted if not set. |
Edwin Kempin | 64006bb | 2013-02-22 08:17:04 +0100 | [diff] [blame] | 3368 | |=========================== |
| 3369 | |
David Ostrovsky | 83e8aee | 2013-09-30 22:37:26 +0200 | [diff] [blame] | 3370 | [[included-in-info]] |
Yuxuan 'fishy' Wang | 61698b1 | 2013-12-20 12:55:51 -0800 | [diff] [blame] | 3371 | === IncludedInInfo |
David Ostrovsky | 83e8aee | 2013-09-30 22:37:26 +0200 | [diff] [blame] | 3372 | The `IncludedInInfo` entity contains information about the branches a |
| 3373 | change was merged into and tags it was tagged with. |
| 3374 | |
| 3375 | [options="header",width="50%",cols="1,6"] |
| 3376 | |========================== |
| 3377 | |Field Name |Description |
| 3378 | |`kind` |`gerritcodereview#includedininfo` |
| 3379 | |`branches` | The list of branches this change was merged into. |
| 3380 | Each branch is listed without the 'refs/head/' prefix. |
| 3381 | |`tags` | The list of tags this change was tagged with. |
| 3382 | Each tag is listed without the 'refs/tags/' prefix. |
| 3383 | |========================== |
| 3384 | |
Edwin Kempin | bd885ff | 2014-04-11 16:11:56 +0200 | [diff] [blame] | 3385 | [[web-link-info]] |
| 3386 | === WebLinkInfo |
| 3387 | The `WebLinkInfo` entity describes a link to an external site. |
| 3388 | |
| 3389 | [options="header",width="50%",cols="1,6"] |
| 3390 | |====================== |
| 3391 | |Field Name|Description |
| 3392 | |`name` |The link name. |
| 3393 | |`url` |The link URL. |
| 3394 | |====================== |
| 3395 | |
Edwin Kempin | d0a6392 | 2013-01-23 16:32:59 +0100 | [diff] [blame] | 3396 | |
| 3397 | GERRIT |
| 3398 | ------ |
| 3399 | Part of link:index.html[Gerrit Code Review] |
Yuxuan 'fishy' Wang | 99cb68d | 2013-10-31 17:26:00 -0700 | [diff] [blame] | 3400 | |
| 3401 | SEARCHBOX |
| 3402 | --------- |