Skip to content

Commit

Permalink
Related to [JENKINS-28894] - Broken icons
Browse files Browse the repository at this point in the history
  • Loading branch information
recena committed Jun 13, 2015
1 parent 2852192 commit df99785
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Expand Up @@ -93,7 +93,7 @@ public DeployNowProjectAction(AbstractProject<?, ?> owner) {
*/
public String getIconFileName() {
return isDeployPossible(owner) ? Jenkins.RESOURCE_PATH
+ "/plugin/cloudbees-deployer-plugin/images/24x24/deploy-now.png" : null;
+ "/plugin/deployer-framework/images/24x24/deploy-now.png" : null;
}

/**
Expand Down
Expand Up @@ -287,7 +287,7 @@ private static boolean hasSubmittedForm(StaplerRequest req) {

public String getIconFileName() {
return owner != null && isDeployPossible(owner)
? Jenkins.RESOURCE_PATH + "/plugin/cloudbees-deployer-plugin/images/24x24/deploy-now.png"
? Jenkins.RESOURCE_PATH + "/plugin/deployer-framework/images/24x24/deploy-now.png"
: null;
}

Expand Down
Expand Up @@ -28,7 +28,7 @@
<td>
<j:if test="${it.isDeployPossible(job)}">
<a href="${jobBaseUrl}${job.shortUrl}deploy-now">
<img src="${resURL}/plugin/cloudbees-deployer-plugin/images/${subIconSize}/deploy-now.png"
<img src="${resURL}/plugin/deployer-framework/images/${subIconSize}/deploy-now.png"
title="${%Schedule a deployment}" alt="${%Schedule a deployment}"
border="0"/>
</a>
Expand Down
Expand Up @@ -26,7 +26,7 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler"
xmlns:f="/lib/form">
<f:entry title="${%Deploy Now defaults}" help="/plugin/cloudbees-deployer-plugin/help-oneClickDeploy.html">
<f:entry title="${%Deploy Now defaults}" help="/plugin/deployer-framework/help-oneClickDeploy.html">
<f:checkbox title="${%One-Click Deployment}" field="oneClickDeploy"/>
</f:entry>
<f:block>
Expand Down
Expand Up @@ -54,7 +54,7 @@
</td>
<td class="setting-help">
<a href="#" class="help-button"
helpURL="${rootURL}/plugin/cloudbees-deployer-plugin/help-saveConfig.html">
helpURL="${rootURL}/plugin/deployer-framework/help-saveConfig.html">
<img src="${imagesURL}/16x16/help.png"
alt="Help for feature: ${%Use this configuration as the default Deploy Now configuration for this project}"
height="16" width="16"/>
Expand All @@ -72,7 +72,7 @@
</td>
<td class="setting-help">
<a href="#" class="help-button"
helpURL="${rootURL}/plugin/cloudbees-deployer-plugin/help-oneClickDeploy.html">
helpURL="${rootURL}/plugin/deployer-framework/help-oneClickDeploy.html">
<img src="${imagesURL}/16x16/help.png" alt="Help for feature: ${%Enable one-click deployment}"
height="16" width="16"/>
</a>
Expand Down
Expand Up @@ -29,7 +29,7 @@
<st:include page="sidepanel.jelly" it="${it.owner}"/>
<l:main-panel>
<h1>
<img src="${resURL}/plugin/cloudbees-deployer-plugin/images/48x48/deploy-now.png" width="48" height="48" alt="${it.iconColor.description}" tooltip="${it.iconColor.description}" />
<img src="${resURL}/plugin/deployer-framework/images/48x48/deploy-now.png" width="48" height="48" alt="${it.iconColor.description}" tooltip="${it.iconColor.description}" />
${%Deploy Now Output}
</h1>
<l:rightspace>
Expand Down
Expand Up @@ -45,7 +45,7 @@
</td>
<td class="setting-help">
<a href="#" class="help-button"
helpURL="${rootURL}/plugin/cloudbees-deployer-plugin/help-saveConfig.html">
helpURL="${rootURL}/plugin/deployer-framework/help-saveConfig.html">
<img src="${imagesURL}/16x16/help.png"
alt="Help for feature: ${%Use this configuration as the default Deploy Now configuration for this project}"
height="16" width="16"/>
Expand All @@ -63,7 +63,7 @@
</td>
<td class="setting-help">
<a href="#" class="help-button"
helpURL="${rootURL}/plugin/cloudbees-deployer-plugin/help-oneClickDeploy.html">
helpURL="${rootURL}/plugin/deployer-framework/help-oneClickDeploy.html">
<img src="${imagesURL}/16x16/help.png" alt="Help for feature: ${%Enable one-click deployment}"
height="16" width="16"/>
</a>
Expand Down
Expand Up @@ -26,7 +26,7 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler"
xmlns:f="/lib/form">
<f:entry title="${%When build is}" help="/plugin/cloudbees-deployer-plugin/help-publishWhen.html">
<f:entry title="${%When build is}" help="/plugin/deployer-framework/help-publishWhen.html">
<input type="checkbox" checked="true" disabled="true"/>
<label class="attach-previous">${%Stable}</label>
<br />
Expand Down

0 comments on commit df99785

Please sign in to comment.