Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JENKINS-74031] Migrate legacy checkUrl attributes in SSHBuildWrapper/global.jelly #25

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<f:repeatable var="site" name="sites" items="${descriptor.sites}">
<table width="100%">
<f:entry title="${%Hostname}" help="/plugin/ssh/help-hostname.html">
<f:textbox name="hostname" value="${site.hostname}" checkUrl="'${rootURL}/descriptorByName/org.jvnet.hudson.plugins.SSHBuildWrapper/checkHostname?hostname='+escape(this.value)" />
<f:textbox name="hostname" value="${site.hostname}" field="hostname" />
shlomomdahan marked this conversation as resolved.
Show resolved Hide resolved
</f:entry>
<f:entry title="${%Port}" help="/plugin/ssh/help-port.html">
<f:textbox name="port" value="${site.port}"/>
</f:entry>

<f:entry title="${%Credentials}">
<c:select name="credentialId" field="credentialId" value="${site.credentialId}" checkUrl="'${rootURL}/descriptorByName/org.jvnet.hudson.plugins.SSHBuildWrapper/checkCredentialId?credentialId='+escape(this.value)" />
<c:select name="credentialId" field="credentialId" value="${site.credentialId}" />
</f:entry>

<f:entry title="${%Pty}" help="/plugin/ssh/help-pty.html">
Expand Down