Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
Gentoo Linux
Hudson trunk
FindBugs Plugin 4.7
Description
The icon image of FindBugs plugin on job page is broken from FindBugs Plugin 4.7.
The icon attribute of t:summary in summary.jelly uses "${rootURL}", but it is unnecessary.
<t:summary icon="${rootURL}/plugin/findbugs/icons/findbugs-48x48.gif">
${it.result.summary}
->
<t:summary icon="/plugin/findbugs/icons/findbugs-48x48.gif">
${it.result.summary}
See the description of lib/hudson/summary.jelly.
<st:attribute name="icon" use="required">
link to the icon image. relative paths will be resolved against images/48x48,
and absolute paths (that start with '/') will be resolved against the context root of Hudson
</st:attribute>
Code changed in hudson
User: : drulli
Path:
trunk/hudson/plugins/analysis-collector/src/main/resources/hudson/plugins/analysis/collector/AnalysisResultAction/summary.jelly
trunk/hudson/plugins/checkstyle/src/main/resources/hudson/plugins/checkstyle/CheckStyleResultAction/summary.jelly
trunk/hudson/plugins/dry/src/main/resources/hudson/plugins/dry/DryResultAction/summary.jelly
trunk/hudson/plugins/findbugs/plugin/src/main/resources/hudson/plugins/findbugs/FindBugsResultAction/summary.jelly
trunk/hudson/plugins/pmd/src/main/resources/hudson/plugins/pmd/PmdResultAction/summary.jelly
trunk/hudson/plugins/tasks/src/main/resources/hudson/plugins/tasks/TasksResultAction/summary.jelly
http://jenkins-ci.org/commit/30625
Log:
[FIXED JENKINS-6416] removed rootURL prefix since it is already part of the template.