view mercurial-server/resources/buildServerResources/mercurialSettings.jsp @ 54:10e774d891b5

timeout increased for clone command
author Pavel.Sher
date Fri, 24 Oct 2008 13:25:45 +0400
parents 4059fcc5473e
children 99e757f2527b
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"/>
<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" />
      <span class="error" id="error_repositoryPath"></span></td>
  </tr>
  </l:settingsGroup>
  <l:settingsGroup title="Authorization settings">
  <tr>
    <td colspan="2">You may require to provide authorization settings if you need to tag / label sources in the remote repository.</td>
  </tr>
  <tr>
    <th><label for="username">User name:</label></th>
    <td><props:textProperty name="username"/></td>
  </tr>
  <tr>
    <th><label for="secure:password">Password:</label></th>
    <td><props:passwordProperty name="secure:password"/></td>
  </tr>
  </l:settingsGroup>
  
</table>