| author | 8nevil8 | 2011-11-30 09:58:16 (EST) |
|---|---|---|
| committer | Winston Prakash | 2011-12-01 20:47:40 (EST) |
| commit | cdcefed2fd2eee113af5020b6b55460941592844 (patch) (side-by-side diff) | |
| tree | 4d0d8d3c5d3e419189b8ca9e4820493d7d95d353 | |
| parent | 42bcceb2f3e21b3381c1f1b436df1c855a4cffa9 (diff) | |
| download | org.eclipse.hudson.core-cdcefed2fd2eee113af5020b6b55460941592844.zip org.eclipse.hudson.core-cdcefed2fd2eee113af5020b6b55460941592844.tar.gz org.eclipse.hudson.core-cdcefed2fd2eee113af5020b6b55460941592844.tar.bz2 | |
Resolve issue Hudson-9078 (There is no help available for 'Cascading Project' in the New Job creation page)
Signed-off-by: Winston Prakash <winston.prakash@gmail.com>
| -rw-r--r-- | hudson-core/src/main/resources/hudson/model/Job/configure.jelly | 2 | ||||
| -rw-r--r-- | hudson-war/src/main/webapp/help/project-config/cascadingProject.html | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/hudson-core/src/main/resources/hudson/model/Job/configure.jelly b/hudson-core/src/main/resources/hudson/model/Job/configure.jelly index 7086a56..82c5d92 100644 --- a/hudson-core/src/main/resources/hudson/model/Job/configure.jelly +++ b/hudson-core/src/main/resources/hudson/model/Job/configure.jelly @@ -35,7 +35,7 @@ </j:if> <j:set var="cascadingCandidates" value="${cu.getCascadingParents(it.class, it)}"/> <j:if test="${cascadingCandidates.size() gt 0}"> - <f:entry title="${%cascadingProjectName}"> + <f:entry title="${%cascadingProjectName}" help="/help/project-config/cascadingProject.html"> <select class="setting-input" name="cascadingProjectName"> <f:option value="">${%emptyCascadingProjectName}</f:option> <j:forEach var="job" items="${cascadingCandidates}"> diff --git a/hudson-war/src/main/webapp/help/project-config/cascadingProject.html b/hudson-war/src/main/webapp/help/project-config/cascadingProject.html new file mode 100644 index 0000000..a1533db --- a/dev/null +++ b/hudson-war/src/main/webapp/help/project-config/cascadingProject.html @@ -0,0 +1,4 @@ +<div> + Parent cascading project, please review <a href="http://wiki.hudson-ci.org/display/HUDSON/Project+cascading">this document</a> + for more information about this feature. +</div>
\ No newline at end of file |

