Skip to content

Commit

Permalink
Merge pull request #10 from qais-yousef/1.3-fix
Browse files Browse the repository at this point in the history
JENKINS-33379 JENKINS-22942 missing values inside textboxes
  • Loading branch information
escoem committed Apr 1, 2016
2 parents 868e0cc + 90aa0f8 commit d3331c6
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -39,14 +39,14 @@
<f:form name="query" action="query" method="get">
<f:section title="${%Job.Import.Plugin.Query.Section.Title}">
<f:entry title="${%Job.Import.Plugin.Query.Section.RemoteUrl.Title}" field="remoteUrl">
<f:textbox />
<f:textbox name="remoteUrl" field="remoteUrl" value="${it.remoteUrl}"/>
</f:entry>
<f:entry title="Username (optional)" field="username">
<f:textbox />
<f:textbox name="username" field="username" value="${it.username}"/>
</f:entry>
<!-- XXX offer a button to browse to /me/configure or /${username}/configure -->
<f:entry title="Password/API Token" field="password">
<f:password />
<f:password name="password" field="password" value="${it.password}"/>
</f:entry>
<!--f:validateButton title="${%Job.Import.Plugin.Query.Section.Validate.Title}" method="doTestConnection" with="remoteUrl"/-->
<f:block>
Expand Down

0 comments on commit d3331c6

Please sign in to comment.