[gnome-ostree/wip/simple-cleanups: 19/19] build.gnome.org: Use the new path from the meta.json
- From: Jasper St. Pierre <jstpierre src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-ostree/wip/simple-cleanups: 19/19] build.gnome.org: Use the new path from the meta.json
- Date: Thu, 13 Jun 2013 18:40:15 +0000 (UTC)
commit 88a7f5d6c581e367c026241bcac3977cc15d21d6
Author: Jasper St. Pierre <jstpierre mecheye net>
Date: Thu Jun 13 14:37:44 2013 -0400
build.gnome.org: Use the new path from the meta.json
At the same time, switch to using the new path scheme.
extras/build.gnome.org/build.gnome.org.js | 14 +++++---------
1 files changed, 5 insertions(+), 9 deletions(-)
---
diff --git a/extras/build.gnome.org/build.gnome.org.js b/extras/build.gnome.org/build.gnome.org.js
index 7060b44..fa05c89 100644
--- a/extras/build.gnome.org/build.gnome.org.js
+++ b/extras/build.gnome.org/build.gnome.org.js
@@ -4,13 +4,15 @@
"use strict";
var HOSTNAME = "https://build.gnome.org/";
+ var TRACKED_BUILD = "buildmaster";
+ var WORKURL = HOSTNAME + "ostree/" + TRACKED_BUILD + "/";
var repoDataSignal = {};
var taskData = {};
var taskNames = ['build', 'smoketest', 'integrationtest'];
function _loadTask(taskname) {
- var url = HOSTNAME + 'work/tasks/' + taskname + '/current/meta.json';
+ var url = WORKURL + 'tasks/' + taskname + '/current/meta.json';
$.getJSON(url, function(data) {
taskData[taskname] = data;
$(repoDataSignal).trigger("taskdata-changed", [taskname]);
@@ -78,7 +80,7 @@
container.appendChild(li);
var a = document.createElement('a');
li.appendChild(a);
- a.setAttribute('href', HOSTNAME + 'work/tasks/build/' + build['v'] + '/log');
+ a.setAttribute('href', WORKURL + 'tasks/build/' + build['v'] + '/log');
a.setAttribute('rel', 'external');
var state = build['state'];
@@ -105,13 +107,7 @@
$(spanNode).empty();
var meta = taskData[taskName];
- var ref = HOSTNAME + 'work/tasks/' + taskName;
- if (meta.success)
- ref += '/successful';
- else
- ref += '/failed';
- ref += '/' + meta.taskVersion;
- statusNode.setAttribute('href', ref);
+ statusNode.setAttribute('href', WORKURL + meta['path']);
statusNode.setAttribute('rel', 'external');
var text = meta.taskVersion + ': ' + (meta.success ? "success" : "failed ");
statusNode.appendChild(document.createTextNode(text));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]