Mercurial > hg > mercurial
comparison mercurial-server/resources/buildServerResources/mercurialSettings.jsp @ 900:b83484e825b7
TW-36401 ability to disable custom clone dir even if it specified in VCS root
author | Dmitry Neverov <dmitry.neverov@jetbrains.com> |
---|---|
date | Thu, 13 Nov 2014 15:24:26 +0100 |
parents | e7b716719044 |
children | ef9d14cbca44 |
comparison
equal
deleted
inserted
replaced
899:e7b716719044 | 900:b83484e825b7 |
---|---|
26 $('branchName').value = repoPath.substring(repoPath.indexOf('#')+1); | 26 $('branchName').value = repoPath.substring(repoPath.indexOf('#')+1); |
27 } | 27 } |
28 } | 28 } |
29 </script> | 29 </script> |
30 <c:set var="subreposGloballyDisabled" value="<%= !TeamCityProperties.getBooleanOrTrue(Constants.GLOBAL_DETECT_SUBREPO_CHANGES) %>"/> | 30 <c:set var="subreposGloballyDisabled" value="<%= !TeamCityProperties.getBooleanOrTrue(Constants.GLOBAL_DETECT_SUBREPO_CHANGES) %>"/> |
31 <c:set var="showCustomClonePath" value="<%= TeamCityProperties.getBoolean(Constants.SHOW_CUSTOM_CLONE_PATH) || !StringUtil.isEmpty(propertiesBean.getProperties().get(Constants.SERVER_CLONE_PATH_PROP))%>"/> | 31 <c:set var="showCustomClonePath" value="<%= TeamCityProperties.getBooleanOrTrue(Constants.CUSTOM_CLONE_PATH_ENABLED) && |
32 (TeamCityProperties.getBoolean(Constants.SHOW_CUSTOM_CLONE_PATH) | |
33 || !StringUtil.isEmpty(propertiesBean.getProperties().get(Constants.SERVER_CLONE_PATH_PROP))) %>"/> | |
32 <table class="runnerFormTable"> | 34 <table class="runnerFormTable"> |
33 | 35 |
34 <l:settingsGroup title="General Settings"> | 36 <l:settingsGroup title="General Settings"> |
35 <tr> | 37 <tr> |
36 <th><label for="repositoryPath">Pull changes from: <l:star/></label></th> | 38 <th><label for="repositoryPath">Pull changes from: <l:star/></label></th> |