<?xml version='1.0' encoding='UTF-8' ?>
<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">
<form action="addConnection" method="post">
<f:entry title="P4PORT" field="port">
<f:textbox checkUrl="'descriptorByName/PasswordConnection/checkPort?value='+escape(this.value)"/>
</f:entry>
<f:entry title="Username" field="user">
<f:textbox checkUrl="'descriptorByName/PasswordConnection/checkUser?value='+escape(this.value)"/>
</f:entry>
<f:entry title="Password" field="password">
<f:password />
</f:entry>
<f:block>
<f:optionalBlock name="unicode" title="Unicode Enabled">
<f:entry title="P4CHARSET" field="charset">
<f:textbox default="utf8" />
<i>In Unicode mode, all non-file data (identifiers, descriptions,
etc) and the content of files of type 'unicode' are translated
between the character set configured on the client by P4CHARSET
and UTF8 in the server."</i>
</f:entry>
</f:optionalBlock>
</f:block>
<f:entry>
<f:submit value="Add"/>
</f:entry>
</form>
</j:jelly>