config.jelly #1

  • //
  • guest/
  • paul_allen/
  • dev/
  • p4-jenkins/
  • p4-client/
  • src/
  • main/
  • resources/
  • org/
  • jenkinsci/
  • plugins/
  • p4/
  • credentials/
  • P4TicketImpl/
  • config.jelly
  • View
  • Commits
  • Open Download .zip Download (1 KB)
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">

	<f:invisibleEntry>
		<f:textbox style="display:none" field="id"/>
	</f:invisibleEntry>
  
	<f:entry title="${%Description}" field="description">
		<f:textbox/>
	</f:entry>
	
	<f:entry title="${%P4Port}" field="p4port">
		<f:textbox/>
	</f:entry>
	
	<f:optionalBlock name="ssl" title="${%SSL connection}" checked="${instance.isSsl()}">
		<f:entry title="${%Trust}" field="trust">
			<f:textbox/>
		</f:entry>
	</f:optionalBlock>
		
	<f:entry title="${%Username}" field="username">
		<f:textbox/>
	</f:entry>
		
	<f:radioBlock name="ticket" value="ticketValueSet" title="${%Login with ticket value}" checked="${instance.isTicketValueSet()}">
		<f:entry title="${%Ticket}" field="ticketValue">
			<f:textbox/>
		</f:entry>
	</f:radioBlock>
	<f:radioBlock name="ticket" value="ticketPathSet" title="${%Use P4TICKETS file}" checked="${instance.isTicketPathSet()}">
		<f:entry title="P4TICKETS" field="ticketPath">
			<f:textbox/>
		</f:entry>
	</f:radioBlock>		
	
	<f:validateButton title="${%Test Connection}" progress="${%Testing...}"
		method="testConnection" with="p4port,ssl,trust,username,ticket,ticketValue,ticketPath" />
		
</j:jelly>
# Change User Description Committed
#1 9672 Paul Allen Refactor name from 'p4_client' to 'p4'.
//guest/paul_allen/dev/p4-jenkins/p4-client/src/main/resources/org/jenkinsci/plugins/p4_client/credentials/P4TicketImpl/config.jelly
#4 8742 Paul Allen Added SSL support to "Test Connection" button for Perforce Credentials.
#3 8741 Paul Allen Added "Test Connection" to Perforce Password and Ticket Credentials.
 Does not support SSL connections...yet
#2 8660 Paul Allen Added P4TRUST for SSL connections in the Credentials plugin and ConnectionFactory.
#1 8629 Paul Allen Added p4java with connection/authorisation helper classes.
 Included SSL support and detection of Unicode servers.