Skip to content

Commit

Permalink
[FIXED JENKINS-17724] /about was not showing licenses.
Browse files Browse the repository at this point in the history
A recent Stapler update caused the Jelly facet to ignore *.xml.
So need to use raw j:include (as plugins were doing), not st:include (as core did).
  • Loading branch information
jglick committed Apr 23, 2013
1 parent 13461b9 commit 0bf4348
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -57,6 +57,9 @@
<ul class=image>
<li class=rfe>
Can use <code>-Dhudson.udp=-1</code> to disable UDP broadcast without showing an ugly exception.
<li class=bug>
Third-party license display for core was broken since 1.506.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-17724">issue 17724</a>)
<li class=rfe>
<code>/about</code> now links to license information for plugins as well.
<li class=rfe>
Expand Down
9 changes: 9 additions & 0 deletions core/src/main/java/hudson/AboutJenkins.java
@@ -1,6 +1,9 @@
package hudson;

import hudson.model.ManagementLink;
import java.net.URL;
import org.kohsuke.accmod.Restricted;
import org.kohsuke.accmod.restrictions.NoExternalUse;

/**
* Show "About Jenkins" link.
Expand All @@ -27,4 +30,10 @@ public String getDisplayName() {
public String getDescription() {
return Messages.AboutJenkins_Description();
}

@Restricted(NoExternalUse.class)
public URL getLicensesURL() {
return AboutJenkins.class.getResource("/META-INF/licenses.xml");
}

}
14 changes: 11 additions & 3 deletions core/src/main/resources/hudson/AboutJenkins/index.jelly
Expand Up @@ -35,9 +35,17 @@ THE SOFTWARE.
<p>
${%dependencies}
</p>
<t:thirdPartyLicenses>
<st:include page="/META-INF/licenses.xml" optional="true" />
</t:thirdPartyLicenses>
<j:set var="uri" value="${it.licensesURL}"/>
<j:choose>
<j:when test="${uri != null}">
<t:thirdPartyLicenses>
<j:include uri="${uri}"/>
</t:thirdPartyLicenses>
</j:when>
<j:otherwise>
<p>${%No information recorded}</p>
</j:otherwise>
</j:choose>
<p>${%plugin.dependencies}</p>
<ul>
<j:forEach var="p" items="${app.pluginManager.plugins}"> <!-- XXX sort -->
Expand Down

0 comments on commit 0bf4348

Please sign in to comment.