Skip to content

Commit

Permalink
NAS-2792: Add new bullet in view
Browse files Browse the repository at this point in the history
  • Loading branch information
Clara Wiatrowski committed Jul 20, 2018
1 parent 74e6a47 commit 93b8f17
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -339,6 +339,7 @@ This page displays a list of running jobs.
<%
String altStatus = "?";
String bullet = "?";
switch (info.getStatus()) {
case PRE_CRAWL:
altStatus = "table.running.jobs.status.preCrawl";
Expand All @@ -348,6 +349,10 @@ This page displays a list of running jobs.
altStatus = "table.running.jobs.status.crawlerRunning";
bullet = "greenbullet.png";
break;
case CRAWLER_EMPTY:
altStatus = "table.running.jobs.status.crawlerEmpty";
bullet = "purplebullet.png";
break;
case CRAWLER_PAUSING:
altStatus = "table.running.jobs.status.crawlerPausing";
bullet = "yellowbullet.png";
Expand Down Expand Up @@ -410,6 +415,9 @@ This page displays a list of running jobs.
<fmt:param>
<img src="greybullet.png" alt="<%=I18N.getString(request.getLocale(), "table.running.jobs.status.crawlFinished")%>"/>
</fmt:param>
<fmt:param>
<img src="purplebullet.png" alt="<%=I18N.getString(request.getLocale(), "table.running.jobs.status.empty")%>"/>
</fmt:param>
</fmt:message>
<br/><br/>

Expand Down

0 comments on commit 93b8f17

Please sign in to comment.