| author | 8nevil8 | 2011-11-30 09:58:16 (EST) |
|---|---|---|
| committer | Winston Prakash | 2011-12-01 20:47:40 (EST) |
| commit | 48f1f06521e70d9cf9d5c634e4aea217df0b2491 (patch) (side-by-side diff) | |
| tree | 1e3e08625717e4db9faf277aea7e4ed16be147fc | |
| parent | a077463c98b8edab58c20e76e18355a3e30e4eab (diff) | |
| download | org.eclipse.hudson.core-48f1f06521e70d9cf9d5c634e4aea217df0b2491.zip org.eclipse.hudson.core-48f1f06521e70d9cf9d5c634e4aea217df0b2491.tar.gz org.eclipse.hudson.core-48f1f06521e70d9cf9d5c634e4aea217df0b2491.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 |

