view mercurial-server/resources/buildServerResources/mercurialSettings.jsp @ 437:585a23bc9400

Add note on settings from server hgrc
author Dmitry Neverov <dmitry.neverov@jetbrains.com>
date Fri, 18 May 2012 16:41:24 +0400
parents 62f273711a49
children cb5263bf8b25
line wrap: on
line source
<%@include file="/include.jsp"%>
<%@ taglib prefix="props" tagdir="/WEB-INF/tags/props" %>
<jsp:useBean id="propertiesBean" scope="request" type="jetbrains.buildServer.controllers.BasePropertiesBean"/>
<script type="text/javascript">
window.updateBranchName = function(repoPath) {
  if (repoPath.indexOf('#') != -1 && $('branchName').value == '') {
    $('branchName').value = repoPath.substring(repoPath.indexOf('#')+1);
  }
}
</script>
<table class="runnerFormTable">

  <l:settingsGroup title="General Settings">
  <tr>
    <th><label for="hgCommandPath">HG command path: <l:star/></label></th>
    <td><props:textProperty name="hgCommandPath" className="longField" />
      <span class="error" id="error_hgCommandPath"></span></td>
  </tr>
  <tr>
    <th><label for="repositoryPath">Pull changes from: <l:star/></label></th>
    <td><props:textProperty name="repositoryPath" className="longField" onchange="updateBranchName(this.value)"/>
      <span class="error" id="error_repositoryPath"></span></td>
  </tr>
  <tr>
    <th><label for="branchName">Branch name: </label></th>
    <td><props:textProperty name="branchName" /></td>
  </tr>
  <tr>
    <th><label for="serverClonePath">Clone repository to: </label></th>
    <td><props:textProperty name="serverClonePath" className="longField"/>
      <div class="smallNote" style="margin: 0;">Provide path to a parent directory on TeamCity server where a cloned repository should be created (applicable to "Automatically on server" checkout mode only). Leave blank to use default path.</div>
    </td>
  </tr>
  <tr>
    <th><label for="tagUsername">Username for tags: </label></th>
    <td><props:textProperty name="tagUsername"/>
      <div class="smallNote" style="margin: 0;">Format: User Name &lt;email&gt;</div>
    </td>
  </tr>
  <tr>
    <th><label for="uncompressedTransfer">Use uncompressed transfer: </label></th>
    <td><props:checkboxProperty name="uncompressedTransfer"/>
      <div class="smallNote" style="margin: 0;">Uncompressed transfer is faster for repositories in the LAN.</div>
    </td>
  </tr>
  </l:settingsGroup>
  <l:settingsGroup title="Authorization settings">
  <tr>
    <th><label for="username">User name:</label></th>
    <td>
      <props:textProperty name="username"/>
      <span class="smallNoteAttention">Leave blank to use settings from the server hgrc (see 'man hgrc' for details)</span>
    </td>
  </tr>
  <tr>
    <th><label for="secure:password">Password:</label></th>
    <td>
      <props:passwordProperty name="secure:password"/>
      <span class="smallNoteAttention">Leave blank to use settings from the server hgrc (see 'man hgrc' for details)</span>
    </td>
  </tr>
  </l:settingsGroup>

</table>