2 ~ Copyright 2000-2011 JetBrains s.r.o.
\r
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
\r
5 ~ you may not use this file except in compliance with the License.
\r
6 ~ You may obtain a copy of the License at
\r
8 ~ http://www.apache.org/licenses/LICENSE-2.0
\r
10 ~ Unless required by applicable law or agreed to in writing, software
\r
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
\r
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
13 ~ See the License for the specific language governing permissions and
\r
14 ~ limitations under the License.
\r
16 <%@ include file="/include-internal.jsp" %>
\r
17 <%@ taglib prefix="props" tagdir="/WEB-INF/tags/props" %>
\r
18 <jsp:useBean id="available"
\r
19 type="java.util.Collection<jetbrains.buildServer.nuget.server.toolRegistry.NuGetTool>"
\r
21 <div id="nugetInstallFormResreshInner">
\r
23 <c:when test="${fn:length(available) eq 0}">
\r
24 No other NuGet.exe Command Line packages available
\r
27 <table class="runnerFormTable">
\r
30 Select NuGet.exe Command Line to install:
\r
34 <th><label for="toolId">Version:<l:star/></label></th>
\r
36 <props:selectProperty name="toolId" style="width:15em;">
\r
37 <props:option value="">-- Please choose version --</props:option>
\r
38 <c:forEach var="t" items="${available}">
\r
39 <forms:option value="${t.id}"><c:out value="${t.version}"/></forms:option>
\r
41 </props:selectProperty>
\r
42 <span class="smallNote">
\r
43 Choose version of NuGet Commandline Tools to install.
\r
45 <span class="error" id="error_toolId"></span>
\r
51 <script type="text/javascript">
\r
52 BS.NuGet.Tools.InstallPopup.enableSubmit();
\r