Skip to content

Commit

Permalink
[FIXED JENKINS-3969] Replaced all gif images with corresponding png i…
Browse files Browse the repository at this point in the history
…mages.

Originally-Committed-As: a4ba7bd268422e4ca7249e137b9dc0b6a20a84c0
  • Loading branch information
uhafner committed May 11, 2011
1 parent 1b43904 commit 33dafa6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Expand Up @@ -32,11 +32,11 @@ THE SOFTWARE.
</l:header>
<l:side-panel>
<l:tasks>
<l:task icon="images/24x24/up.gif" href="${rootURL}/" title="${%Back to Dashboard}" />
<l:task icon="images/24x24/search.gif" href="." title="${%Status}" />
<l:task icon="images/24x24/up.png" href="${rootURL}/" title="${%Back to Dashboard}" />
<l:task icon="images/24x24/search.png" href="." title="${%Status}" />
<l:isAdmin>
<l:task icon="images/24x24/edit-delete.gif" href="delete" title="${%Delete Job}" />
<l:task icon="images/24x24/setting.gif" href="configure" title="${%Configure}" />
<l:task icon="images/24x24/edit-delete.png" href="delete" title="${%Delete Job}" />
<l:task icon="images/24x24/setting.png" href="configure" title="${%Configure}" />
</l:isAdmin>
<st:include page="actions.jelly" />
</l:tasks>
Expand Down
12 changes: 6 additions & 6 deletions core/src/main/resources/hudson/model/ExternalRun/sidepanel.jelly
Expand Up @@ -30,18 +30,18 @@ THE SOFTWARE.
<l:header title="${it.fullDisplayName}" />
<l:side-panel>
<l:tasks>
<l:task icon="images/24x24/up.gif" href="${rootURL}/${it.parent.url}" title="${%Back to Job}" />
<l:task icon="images/24x24/terminal.gif" href="." title="${%Console Output}" />
<l:task icon="images/24x24/up.png" href="${rootURL}/${it.parent.url}" title="${%Back to Job}" />
<l:task icon="images/24x24/terminal.png" href="." title="${%Console Output}" />
<j:if test="${(!h.isArtifactsPermissionEnabled() or h.isArtifactsPermissionEnabled() and h.hasPermission(it,attrs.permission)) and it.hasArtifacts}">
<l:task icon="images/24x24/package.gif" href="artifacts-index" title="${%Artifacts}" />
<l:task icon="images/24x24/package.png" href="artifacts-index" title="${%Artifacts}" />
</j:if>
<st:include page="actions.jelly"/>
<l:task icon="images/24x24/setting.gif" href="configure" title="${h.hasPermission(it,it.UPDATE)?'%Configure':'%View Configuration'}"/>
<l:task icon="images/24x24/setting.png" href="configure" title="${h.hasPermission(it,it.UPDATE)?'%Configure':'%View Configuration'}"/>
<j:if test="${it.previousBuild!=null}">
<l:task icon="images/24x24/previous.gif" href="${rootURL}/${it.previousBuild.url}" title="${%Previous Run}" />
<l:task icon="images/24x24/previous.png" href="${rootURL}/${it.previousBuild.url}" title="${%Previous Run}" />
</j:if>
<j:if test="${it.nextBuild!=null}">
<l:task icon="images/24x24/next.gif" href="${rootURL}/${it.nextBuild.url}" title="${%Next Run}" />
<l:task icon="images/24x24/next.png" href="${rootURL}/${it.nextBuild.url}" title="${%Next Run}" />
</j:if>
</l:tasks>
</l:side-panel>
Expand Down

0 comments on commit 33dafa6

Please sign in to comment.