Skip to content

Commit

Permalink
Pass FQNs to descriptorByName to be on the safe side.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Aug 24, 2012
1 parent e5ea09f commit 4d33b6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -26,7 +26,7 @@ THE SOFTWARE.
<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">
<f:entry title="${%Projects to build}">
<f:textbox name="buildTrigger.childProjects" value="${instance.childProjectsValue}"
checkUrl="'descriptorByName/BuildTrigger/check?value='+encodeURIComponent(this.value)"
checkUrl="'descriptorByName/hudson.tasks.BuildTrigger/check?value='+encodeURIComponent(this.value)"
autoCompleteDelimChar=","
field="childProjects"/>
</f:entry>
Expand Down
Expand Up @@ -26,7 +26,7 @@ THE SOFTWARE.
<f:entry title="${%Files to fingerprint}"
description="${%description('http://ant.apache.org/manual/Types/fileset.html')}">
<f:textbox name="targets" value="${instance.targets}"
checkUrl="'descriptorByName/Fingerprinter/check?value='+encodeURIComponent(this.value)" />
checkUrl="'descriptorByName/hudson.tasks.Fingerprinter/check?value='+encodeURIComponent(this.value)" />
</f:entry>
<f:entry title="">
<f:checkbox name="recordBuildArtifacts" checked="${instance.recordBuildArtifacts}"
Expand Down
Expand Up @@ -33,7 +33,7 @@ THE SOFTWARE.
<f:entry title="${%Jobs to aggregate}"
help="/help/tasks/aggregate-test/manual-list.html">
<f:textbox name="aggragatedTestResult.jobs" value="${instance.jobs}"
checkUrl="'descriptorByName/AggregatedTestResultPublisher/check?value='+encodeURIComponent(this.value)"
checkUrl="'descriptorByName/hudson.tasks.test.AggregatedTestResultPublisher/check?value='+encodeURIComponent(this.value)"
field="jobs"
autoCompleteDelimChar="," />
</f:entry>
Expand Down
Expand Up @@ -38,7 +38,7 @@ THE SOFTWARE.
<f:entry title="${%Projects names}"
description="${%Multiple projects can be specified like 'abc, def'}">
<f:textbox name="upstreamProjects" value="${h.getProjectListString(up)}"
checkUrl="'descriptorByName/BuildTrigger/check?value='+encodeURIComponent(this.value)"
checkUrl="'descriptorByName/hudson.tasks.BuildTrigger/check?value='+encodeURIComponent(this.value)"
autoCompleteField="upstreamProjects"/>
</f:entry>
</f:optionalBlock>
Expand Down

0 comments on commit 4d33b6a

Please sign in to comment.