view server/resources/symbolServerSettings.jsp @ 117:d2c79f95c2a6 tip

remove tailing slash in teamcity server url when constructing symbol server url
author Evgeniy.Koshkin@unit-519.Labs.IntelliJ.Net
date Fri, 27 May 2016 15:27:30 +0300
parents 53abede95333
children
line wrap: on
line source
<%@ include file="/include-internal.jsp"%>

<jsp:useBean id="pageUrl" type="java.lang.String" scope="request"/>
<jsp:useBean id="appUrl" scope="request" type="java.lang.String" />
<jsp:useBean id="actualServerUrl" scope="request" type="java.lang.String" />

<table class="runnerFormTable">
  <tr>
    <th>Symbol Server URL:</th>
    <td>
      <c:set var="url"><c:url value="${actualServerUrl}${appUrl}"/></c:set>
      <div><a href="${url}">${url}</a></div>
      <span class="smallNote">Use this URL in Visual Studio and WinDbg settings.</span>
    </td>
  </tr>
</table>