| 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 a860adfa908f72b010df315ee9f62e163943427e..c12e7d8228c135d7fd4f109df855cd43d618156d 100644
|
| --- a/Tools/GardeningServer/model/ct-commit-log.html
|
| +++ b/Tools/GardeningServer/model/ct-commit-log.html
|
| @@ -29,8 +29,10 @@ 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;
|
| - 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));
|
| }
|
| -</script>
|
| +</script>
|
|
|