Skip to content

Commit 7e3bbd2

Browse files
committed
Added Action ID info to the Systems event history page.
1 parent 92f2df0 commit 7e3bbd2

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13065,6 +13065,12 @@ the <strong>@@ENTERPRISE_LINUX_NAME@@ System Administration Guide.</str
1306513065
<context context-type="sourcefile">System Events Pages</context>
1306613066
</context-group>
1306713067
</trans-unit>
13068+
<trans-unit id="system.event.actionId">
13069+
<source>Action ID</source>
13070+
<context-group name="ctx">
13071+
<context context-type="sourcefile">System Events Pages</context>
13072+
</context-group>
13073+
</trans-unit>
1306813074
<trans-unit id="system.event.summaryText">
1306913075
<source>{0} scheduled by {1}</source>
1307013076
<context-group name="ctx">

java/code/webapp/WEB-INF/pages/systems/sdc/history.jsp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@
8484
<rl:column headerkey="system.event.history.time">
8585
<rhn:formatDate value="${current.completed}"/>
8686
</rl:column>
87+
<rl:column headerkey="system.event.actionId">
88+
${current.id}
89+
</rl:column>
8790
</rl:list>
8891
</rl:listset>
8992
</body>

java/code/webapp/WEB-INF/pages/systems/sdc/history_event.jsp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@
3939
</div>
4040
</div>
4141
</li>
42+
<li class="list-group-item">
43+
<div class="row">
44+
<div class="col-sm-2">
45+
<strong><bean:message key="system.event.actionId"/>:</strong>
46+
</div>
47+
<div class="col-sm-10">
48+
${requestScope.aid}
49+
</div>
50+
</div>
51+
</li>
4252
<c:if test="${requestScope.typePlaybook && not empty requestScope.inventory}">
4353
<li class="list-group-item">
4454
<div class="row">
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Added Action ID info to the Systems event history page.

0 commit comments

Comments
 (0)