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

Unified Diff: Tools/GardeningServer/model/ct-commit-log.html

Issue 402603007: Get sheriff-o-matic data from auto-sheriff.appspot.com. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address review comments Created 6 years, 5 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
« no previous file with comments | « Tools/GardeningServer/model/ct-commit.html ('k') | Tools/GardeningServer/model/ct-commit-mock.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/GardeningServer/model/ct-commit-log.html
diff --git a/Tools/GardeningServer/model/ct-commit-log.html b/Tools/GardeningServer/model/ct-commit-log.html
index 0a1d9ecbea546d91d04735026044891a81cee1de..4de8253b3eca015a48174b445d0ba3bf084d2af7 100644
--- a/Tools/GardeningServer/model/ct-commit-log.html
+++ b/Tools/GardeningServer/model/ct-commit-log.html
@@ -29,7 +29,9 @@ CTCommitLog.prototype._processXml = function(xml) {
Array.prototype.forEach.call(xml.getElementsByTagName('entry'), function(logentry) {
var author = logentry.getElementsByTagName('author')[0].textContent.trim();
var message = logentry.getElementsByTagName('content')[0].textContent.trim();
- var commit = new CTCommit(author, message);
+ // FIXME: Handle base urls for different repos.
+ // FIXME: This class should import config.js if it keeps using config.*.
+ var commit = new CTCommit(author, message, config.kBlinkRevisionURL);
this.commits[commit.revision] = commit;
}.bind(this));
}
« no previous file with comments | « Tools/GardeningServer/model/ct-commit.html ('k') | Tools/GardeningServer/model/ct-commit-mock.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698