Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2017-06-04 02:55:37 +0300
committerBryan Drewery <bryan@shatow.net>2017-06-04 02:55:49 +0300
commit930e35b6f2c1d46e2fa6751260baad44f2dd01ba (patch)
tree17e9f624f80955be701dffdf208914d06a6f84d4 /src/share/poudriere/html
parentc759a9e13f83eac4fcdc9f467bd013f4ccd58ed8 (diff)
HTML_TRACK_REMAINING: Show status of item in queue
Issue #386
Diffstat (limited to 'src/share/poudriere/html')
-rw-r--r--src/share/poudriere/html/assets/poudriere.js4
-rw-r--r--src/share/poudriere/html/build.html1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/share/poudriere/html/assets/poudriere.js b/src/share/poudriere/html/assets/poudriere.js
index bea08a5e..d971464f 100644
--- a/src/share/poudriere/html/assets/poudriere.js
+++ b/src/share/poudriere/html/assets/poudriere.js
@@ -467,6 +467,7 @@ function format_status_row(status, row, n) {
table_row.push(row.reason);
} else if (status == "remaining") {
table_row.push(format_pkgname(row.pkgname));
+ table_row.push(row.status);
} else if (status == "queued") {
table_row.push(format_origin(row.origin));
if (row.reason == "listed") {
@@ -976,6 +977,9 @@ function setup_build() {
"remaining": [
build_order_column,
pkgname_column,
+ {
+ "sWidth": "7em",
+ },
],
"queued": [
build_order_column,
diff --git a/src/share/poudriere/html/build.html b/src/share/poudriere/html/build.html
index ee7ea3c8..30c30e71 100644
--- a/src/share/poudriere/html/build.html
+++ b/src/share/poudriere/html/build.html
@@ -266,6 +266,7 @@
<tr>
<th>#</th>
<th>Package</th>
+ <th>Status</th>
</tr>
</thead>
<tbody id="remaining_body"></tbody>