Skip to content

Commit

Permalink
Updated config.jelly to work w/ help documentation. Added some help d…
Browse files Browse the repository at this point in the history
…ocumentation for fields I get frequent questions about.
  • Loading branch information
pvince committed Nov 11, 2016
1 parent 492f01c commit e21f190
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 32 deletions.
32 changes: 16 additions & 16 deletions src/main/resources/hudson/scm/SurroundSCM/config.jelly
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,28 @@
Creates a text field that shows the value of the "name" property.
When submitted, it will be passed to the corresponding constructor parameter.
-->
<f:entry title="CLI (sscm) ">
<f:textbox name="SurroundSCM.surroundSCMExecutable" value="${scm.surroundSCMExecutable}" />
<f:entry title="CLI (sscm)" field="surroundSCMExecutable" >
<f:textbox />
</f:entry>
<f:entry title="RSA key path">
<f:textbox name="SurroundSCM.rsaKeyPath" value="${scm.rsaKeyPath}" />
<f:entry title="RSA key path" field="rsaKeyPath">
<f:textbox />
</f:entry>
<f:entry title="Server name">
<f:textbox name="SurroundSCM.server" value="${scm.server}" />
<f:entry title="Server name" field="server">
<f:textbox />
</f:entry>
<f:entry title="Server port">
<f:textbox name="SurroundSCM.serverPort" value="${scm.serverPort}" />
<f:entry title="Server port" field="serverPort">
<f:textbox />
</f:entry>
<f:entry title="Username">
<f:textbox name="SurroundSCM.userName" value="${scm.userName}" />
<f:entry title="Username" field="userName">
<f:textbox />
</f:entry>
<f:entry title="Password">
<f:password name="SurroundSCM.password" value="${scm.password}" />
<f:entry title="Password" field="password">
<f:password />
</f:entry>
<f:entry title="Branch">
<f:textbox name="SurroundSCM.branch" value="${scm.branch}" />
<f:entry title="Branch" field="branch">
<f:textbox />
</f:entry>
<f:entry title="Repository">
<f:textbox name="SurroundSCM.repository" value="${scm.repository}" />
<f:entry title="Repository" field="repository">
<f:textbox />
</f:entry>
</j:jelly>

This file was deleted.

5 changes: 0 additions & 5 deletions src/main/resources/hudson/scm/SurroundSCM/help-name.html

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
Full path the Surround SCM connection RSA key file. Ex: C:\SurroundRSAKeyFile.xml
</div>
6 changes: 0 additions & 6 deletions src/main/resources/hudson/scm/SurroundSCM/help-rsakey.html

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
Full path to the Surround SCM CLI executable. Ex: C:\Program Files\Seapine\Surround SCM\sscm.exe
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
Full path the Surround SCM connection RSA key file. Ex: C:\SurroundRSAKeyFile.xml
</div>
3 changes: 3 additions & 0 deletions src/main/resources/hudson/scm/SurroundStep/help-sscmPath.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div>
Full path to the Surround SCM CLI executable. Ex: C:\Program Files\Seapine\Surround SCM\sscm.exe
</div>
4 changes: 4 additions & 0 deletions src/main/resources/hudson/scm/SurroundStep/help-sscm_url.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<div>
Surround SCM sscm:// URL to the repository you want to retrieve. <br />
Ex: sscm://ServerAddress:4900//BranchName//Mainline/Path/To/Repository
</div>

0 comments on commit e21f190

Please sign in to comment.