|
@@ -150,7 +150,8 @@ public class AppsBlock extends HtmlBlock {
|
|
TBODY<TABLE<Hamlet>> tbody =
|
|
TBODY<TABLE<Hamlet>> tbody =
|
|
html.table("#apps").thead().tr().th(".id", "ID").th(".user", "User")
|
|
html.table("#apps").thead().tr().th(".id", "ID").th(".user", "User")
|
|
.th(".name", "Name").th(".type", "Application Type")
|
|
.th(".name", "Name").th(".type", "Application Type")
|
|
- .th(".queue", "Queue").th(".priority", "Application Priority")
|
|
|
|
|
|
+ .th(".apptag", "Application Tags").th(".queue", "Queue")
|
|
|
|
+ .th(".priority", "Application Priority")
|
|
.th(".starttime", "StartTime")
|
|
.th(".starttime", "StartTime")
|
|
.th(".launchtime", "LaunchTime")
|
|
.th(".launchtime", "LaunchTime")
|
|
.th(".finishtime", "FinishTime")
|
|
.th(".finishtime", "FinishTime")
|
|
@@ -185,6 +186,10 @@ public class AppsBlock extends HtmlBlock {
|
|
.append(
|
|
.append(
|
|
StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(app
|
|
StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(app
|
|
.getType())))
|
|
.getType())))
|
|
|
|
+ .append("\",\"")
|
|
|
|
+ .append(
|
|
|
|
+ StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(
|
|
|
|
+ app.getApplicationTags() == null ? "" : app.getApplicationTags())))
|
|
.append("\",\"")
|
|
.append("\",\"")
|
|
.append(
|
|
.append(
|
|
StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(app
|
|
StringEscapeUtils.escapeEcmaScript(StringEscapeUtils.escapeHtml4(app
|