Chromium Code Reviews| Index: Tools/GardeningServer/model/ct-repositories.html |
| diff --git a/Tools/GardeningServer/model/ct-repositories.html b/Tools/GardeningServer/model/ct-repositories.html |
| index 0bbe3da20fbc218a18702d1274e8fb1ed8108cd8..e94957d83bf63d344d479f51efa739408fca96b8 100644 |
| --- a/Tools/GardeningServer/model/ct-repositories.html |
| +++ b/Tools/GardeningServer/model/ct-repositories.html |
| @@ -8,25 +8,30 @@ found in the LICENSE file. |
| <script> |
| function CTRepositories() { |
| - // FIXME: Include skia once their commit messages have a numeric value we can use. |
| - // Right now it only has git hashes. |
| - this.repositories = { |
| - blink: new CTRepository( |
| - 'blink', |
| - 'https://chromium.googlesource.com/chromium/blink/+log?format=json', |
| - 'http://src.chromium.org/viewvc/blink?view=rev&revision={revision}'), |
| - chromium: new CTRepository( |
| - 'chromium', |
| - 'https://chromium.googlesource.com/chromium/src/+log?format=json', |
| - 'http://src.chromium.org/viewvc/chrome?view=rev&revision={revision}'), |
| - nacl: new CTRepository( |
| - 'nacl', |
| - 'https://chromium.googlesource.com/native_client/src/native_client/+log/master?format=json', |
| - 'http://src.chromium.org/viewvc/native_client?view=rev&revision={revision}'), |
| - v8: new CTRepository( |
| - 'v8', |
| - 'https://chromium.googlesource.com/external/v8/+log/master?format=json', |
| - 'https://code.google.com/p/v8/source/detail?r={revision}'), |
| - }; |
| + // FIXME: Include skia once their commit messages have a numeric value we can use. |
| + // Right now it only has git hashes. |
| + this.repositories = { |
| + blink: new CTRepository( |
| + 'blink', |
| + 'https://chromium.googlesource.com/chromium/blink/+log?format=json', |
| + 'http://src.chromium.org/viewvc/blink?view=rev&revision={revision}'), |
| + chromium: new CTRepository( |
| + 'chromium', |
| + 'https://chromium.googlesource.com/chromium/src/+log?format=json', |
| + 'http://src.chromium.org/viewvc/chrome?view=rev&revision={revision}'), |
| + nacl: new CTRepository( |
| + 'nacl', |
| + 'https://chromium.googlesource.com/native_client/src/native_client/+log/master?format=json', |
| + 'http://src.chromium.org/viewvc/native_client?view=rev&revision={revision}'), |
| + v8: new CTRepository( |
| + 'v8', |
| + 'https://chromium.googlesource.com/external/v8/+log/master?format=json', |
| + 'https://code.google.com/p/v8/source/detail?r={revision}'), |
| + }; |
| + this._names = Object.keys(this.repositories).sort(); |
|
ojan
2014/08/21 17:51:29
Nit: no need for the getter. Lets just make the pr
Mathieu
2014/08/21 18:00:37
Done.
|
| } |
| + |
| +CTRepositories.prototype.names = function() { |
| + return this._names; |
| +}; |
| </script> |