~canonical-ci-engineering/ubuntu-ci-services-itself/jenkins

« back to all changes in this revision

Viewing changes to core/src/main/resources/hudson/model/Cause/UpstreamCause/description.jelly

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-07-25 11:44:01 UTC
  • mfrom: (13.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20130725114401-w39hnkwr9tuyx45z
Tags: 1.480.3+dfsg-1
* Upload to unstable (Closes: #713394, #713423)
* d/control: Fixup versioned inter-dependencies between jenkins
  packages (Closes: #704845).
* d/jenkins.default: Provide variables for configuring listen address
  for http and ajp connections (Closes: #684586), listen on 127.0.0.1
  by default to allow installs to be secured before wider access
  (Closes: #675233).
* Fixup compatibility with new versions of dependencies:
  - d/p/build/fileupload-compat.patch: Compatibility patch for
    commons-fileupload >= 1.3.
  - d/p/build/io-compat.pach: Compatibility patch for commons-io >= 2.4.
  - d/control: Add versioned dependencies for the above patches.
* d/*.init: Drop use of /lib/init/vars.sh.
* d/rules: Use mh_installpoms to install all pom files as this ensures
  that ignore rules are actually used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
-->
24
24
<?jelly escape-by-default='true'?>
25
25
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
26
 
    <!-- upstreamUrl added in 1.284, so handle missing value -->
27
 
    <span><j:out value='${it.upstreamUrl!=null ? "%started_by_project(it.upstreamProject,it.upstreamBuild.toString(),it.upstreamUrl,rootURL)" : it.shortDescription}' /></span>
 
26
    <!-- upstreamUrl added in 1.284, so handle missing value; also JENKINS-14816 (job/build may have been deleted) -->
 
27
    <span><j:out value='${it.upstreamUrl!=null and
 
28
                            app.getItemByFullName(it.upstreamProject)!=null and
 
29
                            app.getItemByFullName(it.upstreamProject).getBuildByNumber(it.upstreamBuild)!=null ?
 
30
                          "%started_by_project(it.upstreamProject,it.upstreamBuild.toString(),it.upstreamUrl,rootURL)" :
 
31
                          it.shortDescription}'/></span>
28
32
</j:jelly>