java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java | 3 +++
java/code/webapp/WEB-INF/pages/common/fragments/configuration/channel/details-header.jspf | 2 +-
java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf | 8 ++++----
java/code/webapp/WEB-INF/pages/configuration/channel/channelcreate.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/overview/globalconfiglist.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/sdc/channellist.jsp | 6 +++---
java/code/webapp/WEB-INF/pages/configuration/sdc/createfile.jsp | 4 +++-
java/code/webapp/WEB-INF/pages/configuration/sdc/deployfile.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/sdc/difffile.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/sdc/importfile.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/sdc/rankchannels.jsp | 6 ++----
java/code/webapp/WEB-INF/pages/configuration/sdc/subscriptions.jsp | 6 +++---
java/code/webapp/WEB-INF/pages/configuration/sdc/uploadfile.jsp | 4 +++-
java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilescentral.jsp | 6 +++---
java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfileslocal.jsp | 6 +++---
java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilessandbox.jsp | 5 +++--
java/code/webapp/WEB-INF/pages/configuration/ssm/rankchannels.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/ssm/subscribe.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/ssm/subscribeconfirm.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/ssm/systemchannels.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribe.jsp | 2 +-
java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribeconfirm.jsp | 2 +-
22 files changed, 42 insertions(+), 36 deletions(-)
New commits:
commit 80a9ed9fd6fde3eac3b545a8e1debd981d514e3b
Author: Tomas Kasparek <tkasparek(a)redhat.com>
Date: Thu Dec 12 07:30:32 2013 +0100
use rhn:toolbar tag instead of creating html inside .jsp + unify icons
diff --git a/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java b/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java
index a410708..393821b 100644
--- a/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java
+++ b/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java
@@ -52,6 +52,8 @@ public class IconTag extends TagSupport {
icons.put("header-action", "fa-clock-o");
icons.put("header-activation-key", "fa fa-key");
icons.put("header-channel", "fa spacewalk-icon-software-channels");
+ icons.put("header-channel-configuration",
+ "fa spacewalk-icon-Software-Channel-Management");
icons.put("header-channel-mapping", "fa fa-retweet");
icons.put("header-configuration", "fa spacewalk-icon-manage-configuration-files");
icons.put("header-crash", "spacewalk-icon-bug-ex");
diff --git a/java/code/webapp/WEB-INF/pages/configuration/overview/globalconfiglist.jsp b/java/code/webapp/WEB-INF/pages/configuration/overview/globalconfiglist.jsp
index 4f2e6f2..e487e66 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/overview/globalconfiglist.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/overview/globalconfiglist.jsp
@@ -9,7 +9,7 @@
<meta name="page-decorator" content="none" />
</head>
<body>
-<rhn:toolbar base="h1" icon="header-configuration"
+<rhn:toolbar base="h1" icon="header-channel-configuration"
helpUrl="/rhn/help/reference/en-US/s1-sm-configuration.jsp#configuration-files-central"
creationUrl="/rhn/configuration/ChannelCreate.do?editing=true"
creationType="configchannel"
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/channellist.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/channellist.jsp
index 77cad50..9dd03f5 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/channellist.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/channellist.jsp
@@ -12,9 +12,9 @@
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
-<h2><img src="${cfg:channelHeaderIcon('central')}"
- alt="${cfg:channelAlt('central')}"/>
-<bean:message key="sdc.configlist.jsp.header"/></h2>
+<rhn:toolbar base="h2" icon="header-channel-configuration">
+ <bean:message key="sdc.configlist.jsp.header"/>
+</rhn:toolbar>
<div class="page-summary">
<p><bean:message key="sdc.configlist.jsp.para1"/></p>
</div>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/createfile.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/createfile.jsp
index b392250..0091174 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/createfile.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/createfile.jsp
@@ -11,7 +11,9 @@
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
-<h2><bean:message key="sdccreatefile.jsp.header"/></h2>
+<rhn:toolbar base="h2" icon="header-configuration">
+ <bean:message key="sdccreatefile.jsp.header"/>
+</rhn:toolbar>
<div class="page-summary">
<p>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/deployfile.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/deployfile.jsp
index fabd669..4e9b94a 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/deployfile.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/deployfile.jsp
@@ -12,7 +12,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
<rhn:toolbar base="h2"
- icon="header-system"
+ icon="header-configuration"
imgAlt="system.common.systemAlt">
<bean:message key="sdcdeployfile.jsp.header"
arg0="${system.name}"/>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/difffile.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/difffile.jsp
index 14c35c0..75ea216 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/difffile.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/difffile.jsp
@@ -13,7 +13,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
<rhn:toolbar base="h2"
- icon="header-system"
+ icon="header-configuration"
imgAlt="system.common.systemAlt">
<bean:message key="sdcdifffile.jsp.header"
arg0="${fn:escapeXml(system.name)}"/>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/importfile.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/importfile.jsp
index 9ccc96c..95f019e 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/importfile.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/importfile.jsp
@@ -13,7 +13,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
<rhn:toolbar base="h2"
- icon="header-system"
+ icon="header-configuration"
imgAlt="system.common.systemAlt">
<bean:message key="sdcimportfile.jsp.header"
arg0="${fn:escapeXml(system.name)}"/>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/rankchannels.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/rankchannels.jsp
index 0d3dc3e..a2c80bc 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/rankchannels.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/rankchannels.jsp
@@ -14,11 +14,9 @@
action="/systems/details/configuration/RankChannels.do?sid=${param.sid}">
<rhn:csrf />
<rhn:submitted />
- <h2>
- <img src="${cfg:channelHeaderIcon('central')}"
- alt="${cfg:channelAlt('central')}"/>
+ <rhn:toolbar base="h2" icon="header-channel-configuration">
<bean:message key="sdc.config.rank.jsp.header"/>
- </h2>
+ </rhn:toolbar>
<c:if test="${not empty param.wizard_mode}">
<h3><bean:message key="ssm.config.rank.jsp.step"/></h3>
<input type="hidden" name="wizard_mode" value="true"/>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/subscriptions.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/subscriptions.jsp
index 1f4a12b..c0db434 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/subscriptions.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/subscriptions.jsp
@@ -11,9 +11,9 @@
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
-<h2> <img src="${cfg:channelHeaderIcon('central')}"
- alt="${cfg:channelAlt('central')}"/>
- <bean:message key="sdc.config.subscriptions.jsp.header"/></h2>
+<rhn:toolbar base="h2" icon="header-channel-configuration">
+ <bean:message key="sdc.config.subscriptions.jsp.header"/>
+</rhn:toolbar>
<h3><bean:message key="ssm.config.subscribe.jsp.step"/></h3>
<p><bean:message key="sdc.config.subscriptions.jsp.para1" /></p>
<noscript>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/uploadfile.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/uploadfile.jsp
index 0719521..661298a 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/uploadfile.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/uploadfile.jsp
@@ -9,7 +9,9 @@
</head>
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
- <h2><bean:message key="sdcuploadfile.jsp.header"/></h2>
+ <rhn:toolbar base="h2" icon="header-configuration">
+ <bean:message key="sdcuploadfile.jsp.header"/>
+ </rhn:toolbar>
<div class="page-summary">
<p><bean:message key="sdcuploadfile.jsp.summary"/></p>
</div>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilescentral.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilescentral.jsp
index 3669d07..475d8be 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilescentral.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilescentral.jsp
@@ -9,9 +9,9 @@
</head>
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
-
-<h2><img class="h2-image" src="${cfg:channelHeaderIcon('central')}"/>
-<bean:message key="sdc.config.header.overview"/></h2>
+<rhn:toolbar base="h2" icon="header-configuration">
+ <bean:message key="sdc.config.header.overview"/>
+</rhn:toolbar>
<p>
<bean:message key="sdc.config.file_list.central_description"
arg0="${fn:escapeXml(requestScope.system.name)}"/>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfileslocal.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfileslocal.jsp
index 02f3c31..4c289fd 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfileslocal.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfileslocal.jsp
@@ -9,9 +9,9 @@
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
-<h2><img class="h2-image" src="${cfg:channelHeaderIcon('local')}"
- alt="${cfg:channelAlt('local')}"/>
- <bean:message key="sdc.config.header.overview"/></h2>
+<rhn:toolbar base="h2" icon="header-configuration">
+ <bean:message key="sdc.config.header.overview"/>
+</rhn:toolbar>
<p><bean:message key="sdc.config.file_list.local_description"/></p>
<rl:listset name="fileSet">
diff --git a/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilessandbox.jsp b/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilessandbox.jsp
index 27e0278..5918ab8 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilessandbox.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/sdc/viewmodifyfilessandbox.jsp
@@ -9,8 +9,9 @@
</head>
<body>
<%@ include file="/WEB-INF/pages/common/fragments/systems/system-header.jspf" %>
-<h2><img class="h2-image" src="${cfg:channelHeaderIcon('sandbox')}"/>
-<bean:message key="sdc.config.header.overview"/></h2>
+<rhn:toolbar base="h2" icon="header-configuration">
+ <bean:message key="sdc.config.header.overview"/>
+</rhn:toolbar>
<p><bean:message key="sdc.config.file_list.sandbox_description"
arg0="${fn:escapeXml(requestScope.system.name)}"
arg1="${rhn:localize('sdc.config.file_list.copy_to_global')}"/></p>
commit d33de346cd7744a9a94f0c6dd5a22839684a1bf5
Author: Tomas Kasparek <tkasparek(a)redhat.com>
Date: Thu Dec 12 07:21:17 2013 +0100
fix icons on config file details page
diff --git a/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf b/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf
index 08de35d..c25d760 100644
--- a/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf
+++ b/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf
@@ -14,8 +14,8 @@
<c:set var="helpUrl" scope="request" value="/rhn/help/reference/en-US/s1-sm-configuration.jsp#configuration-files-local" />
<c:set var="downloadUrl" scope="request" value="/rhn/configuration/file/FileDownload.do?crid=${revision.id}&cfid=${file.id}" />
<c:set var="deleteUrl" scope="request" value="/rhn/configuration/file/DeleteRevision.do?crid=${revision.id}&cfid=${file.id}" />
-<c:set var="fileIcon" scope="request" value="icon-file-text" />
-<c:set var="dirIcon" scope="request" value="icon-folder-open-alt" />
+<c:set var="fileIcon" scope="request" value="header-configuration" />
+<c:set var="dirIcon" scope="request" value="header-configuration" />
<c:set var="toolbarText" scope="request">
<bean:message key="filedetails.header.jspf.label"
arg0="${fn:escapeXml(file.configFileName.path)}" arg1="${revision.revision}"
commit 518a8897664d41fce356e6f52dd04e1df680cd99
Author: Tomas Kasparek <tkasparek(a)redhat.com>
Date: Thu Dec 12 07:12:22 2013 +0100
icon for file download
diff --git a/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java b/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java
index 1cae70a..a410708 100644
--- a/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java
+++ b/java/code/src/com/redhat/rhn/frontend/taglibs/IconTag.java
@@ -77,6 +77,7 @@ public class IconTag extends TagSupport {
icons.put("item-add", "fa fa-plus");
icons.put("item-clone", "fa fa-files-o");
icons.put("item-del", "fa fa-trash-o");
+ icons.put("item-download", "fa fa-download");
icons.put("item-ssm-add", "fa fa-plus-circle");
icons.put("item-ssm-del", "fa fa-minus-circle");
icons.put("monitoring-crit", "fa fa-1-5x spacewalk-icon-health text-danger");
diff --git a/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf b/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf
index 153628d..08de35d 100644
--- a/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf
+++ b/java/code/webapp/WEB-INF/pages/common/fragments/configuration/files/header.jspf
@@ -35,7 +35,7 @@
icon="${fileIcon}"
helpUrl="${helpUrl}"
miscUrl="${downloadUrl}"
- miscIcon="icon-download-alt"
+ miscIcon="item-download"
miscText="filedetails.header.jspf.download">
${toolbarText}
</rhn:toolbar>
@@ -47,7 +47,7 @@
deletionType="configfile"
deletionAcl="config_channel_editable(${channel.id})"
miscUrl="${downloadUrl}"
- miscIcon="icon-download-alt"
+ miscIcon="item-download"
miscText="filedetails.header.jspf.download"
aclMixins="com.redhat.rhn.common.security.acl.ConfigAclHandler">
${toolbarText}
commit 9eda32565a4700cebcc8893e468064bc8938f30b
Author: Tomas Kasparek <tkasparek(a)redhat.com>
Date: Thu Dec 12 06:35:41 2013 +0100
unify configuration management icons
diff --git a/java/code/webapp/WEB-INF/pages/common/fragments/configuration/channel/details-header.jspf b/java/code/webapp/WEB-INF/pages/common/fragments/configuration/channel/details-header.jspf
index 0046fd4..7451e6f 100644
--- a/java/code/webapp/WEB-INF/pages/common/fragments/configuration/channel/details-header.jspf
+++ b/java/code/webapp/WEB-INF/pages/common/fragments/configuration/channel/details-header.jspf
@@ -7,7 +7,7 @@
<c:choose>
<c:when test='${channel != null}'>
<c:if test="${channel.globalChannel}">
- <rhn:toolbar base="h1" icon="spacewalk-icon-channels-config"
+ <rhn:toolbar base="h1" icon="header-configuration"
iconAlt="config.common.globalAlt"
helpUrl="/rhn/help/reference/en-US/s1-sm-configuration.jsp#config-config-channels-channel-details"
deletionUrl="/rhn/configuration/DeleteChannel.do?ccid=${ccid}"
diff --git a/java/code/webapp/WEB-INF/pages/configuration/channel/channelcreate.jsp b/java/code/webapp/WEB-INF/pages/configuration/channel/channelcreate.jsp
index 500230c..597ba00 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/channel/channelcreate.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/channel/channelcreate.jsp
@@ -8,7 +8,7 @@
<html>
<body>
- <rhn:toolbar base="h1" icon="spacewalk-icon-channels-config"
+ <rhn:toolbar base="h1" icon="header-configuration"
iconAlt="config.common.globalAlt"
helpUrl="/rhn/help/reference/en-US/s1-sm-configuration.jsp#configuration-channels">
<bean:message key="channelOverview.jsp.newToolbar" />
diff --git a/java/code/webapp/WEB-INF/pages/configuration/ssm/rankchannels.jsp b/java/code/webapp/WEB-INF/pages/configuration/ssm/rankchannels.jsp
index 6f6d3e1..4694004 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/ssm/rankchannels.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/ssm/rankchannels.jsp
@@ -13,7 +13,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/ssm/header.jspf" %>
<h2>
- <i class="fa spacewalk-icon-channels-config" title="<bean:message key="config.common.channelsAlt" />"></i>
+ <rhn:icon type="header-configuration" title="<bean:message key='config.common.channelsAlt' />" />
<bean:message key="ssm.config.rank.jsp.header" />
</h2>
<h3><bean:message key="ssm.config.rank.jsp.step"/></h3>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribe.jsp b/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribe.jsp
index a4d288b..c08472a 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribe.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribe.jsp
@@ -9,7 +9,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/ssm/header.jspf" %>
<h2>
- <i class="fa spacewalk-icon-channels-config" title="<bean:message key="config.common.channelsAlt" />"></i>
+ <rhn:icon type="header-configuration" title="<bean:message key='config.common.channelsAlt' />" />
<bean:message key="ssm.config.subscribe.jsp.header"/>
</h2>
<h3><bean:message key="ssm.config.subscribe.jsp.step"/></h3>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribeconfirm.jsp b/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribeconfirm.jsp
index e0faae5..9d6164c 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribeconfirm.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/ssm/subscribeconfirm.jsp
@@ -11,7 +11,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/ssm/header.jspf" %>
<h2>
- <i class="fa spacewalk-icon-channels-config" title="<bean:message key="config.common.channelsAlt" />"></i>
+ <rhn:icon type="header-configuration" title="<bean:message key='config.common.channelsAlt' />" />
<bean:message key="ssm.config.subscribeconfirm.jsp.header"/>
</h2>
<h3><bean:message key="ssm.config.subscribeconfirm.jsp.step"/></h3>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/ssm/systemchannels.jsp b/java/code/webapp/WEB-INF/pages/configuration/ssm/systemchannels.jsp
index e3560b5..6d115d4 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/ssm/systemchannels.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/ssm/systemchannels.jsp
@@ -8,7 +8,7 @@
<body>
<%@ include file="/WEB-INF/pages/common/fragments/ssm/header.jspf" %>
<h2>
- <i class="fa spacewalk-icon-channels-config" title="<bean:message key="config.common.channelsAlt" />"></i>
+ <rhn:icon type="header-configuration" title="<bean:message key='config.common.channelsAlt' />" />
<bean:message key="ssmsystemchannels.jsp.header" />
</h2>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribe.jsp b/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribe.jsp
index afc17fe..b9a0d3c 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribe.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribe.jsp
@@ -9,7 +9,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/ssm/header.jspf" %>
<h2>
- <i class="fa spacewalk-icon-channels-config" title="<bean:message key="config.common.channelsAlt" />"></i>
+ <rhn:icon type="header-configuration" title="<bean:message key='config.common.channelsAlt' />" />
<bean:message key="unsubscribe.jsp.header"/>
</h2>
diff --git a/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribeconfirm.jsp b/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribeconfirm.jsp
index fdc80f6..cbbaf50 100644
--- a/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribeconfirm.jsp
+++ b/java/code/webapp/WEB-INF/pages/configuration/ssm/unsubscribeconfirm.jsp
@@ -9,7 +9,7 @@
<%@ include file="/WEB-INF/pages/common/fragments/ssm/header.jspf" %>
<h2>
- <i class="fa spacewalk-icon-channels-config" title="<bean:message key="config.common.channelsAlt" />"></i>
+ <rhn:icon type="header-configuration" title="<bean:message key='config.common.channelsAlt' />" />
<bean:message key="unsubscribeconfirm.jsp.header"/>
</h2>