Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1789)

Unified Diff: Tools/GardeningServer/model/ct-repositories.html

Issue 485253004: [Sheriff-o-matic] Remove race condition on the commit list. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..eb288a84516dd4011931cb6801805350196bc90d 100644
--- a/Tools/GardeningServer/model/ct-repositories.html
+++ b/Tools/GardeningServer/model/ct-repositories.html
@@ -8,25 +8,29 @@ 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}'),
+ };
}
+
+CTRepositories.prototype.names = function() {
+ return Object.keys(this.repositories).sort();
michaelpg 2014/08/20 19:32:32 if this doesn't change, could we make it a propert
Mathieu 2014/08/21 14:08:21 Done.
+};
</script>

Powered by Google App Engine
This is Rietveld 408576698