blob: 3a58b228c20cdfb129533f099296b7ddfb13bc6e [file] [log] [blame]
<%--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
--%>
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<%@ taglib uri="continuum" prefix="c1" %>
<%@ taglib uri="http://www.extremecomponents.org" prefix="ec" %>
<html>
<s:i18n name="localization.Continuum">
<head>
<title><s:text name="profilesList.page.title"/></title>
</head>
<div id="h3">
<h3>
<s:text name="profilesList.section.title"/>
</h3>
<c:if test="${!empty actionErrors}">
<div class="errormessage">
<s:iterator value="actionErrors">
<p><s:property/></p>
</s:iterator>
</div>
</c:if>
<c:if test="${not empty profiles}">
<ec:table items="profiles"
var="profile"
autoIncludeParameters="false"
showExports="false"
showPagination="false"
showStatusBar="false"
sortable="false"
filterable="false">
<ec:row highlightRow="true">
<ec:column property="name" title="profile.name.label" style="white-space: nowrap" />
<ec:column property="Installations" title="profilesList.installations.label" style="white-space: nowrap">
<ul>
<c:if test="${profile.jdk != null}">
<li><c:out value="${profile.jdk.name}"/> (<c:out value="${profile.jdk.type}"/>)</li>
</c:if>
<c:if test="${profile.builder != null}">
<li><c:out value="${profile.builder.name}"/> (<c:out value="${profile.builder.type}"/>)</li>
</c:if>
<c:if test="${profile.environmentVariables != null}">
<c:forEach var="envVar" items="${profile.environmentVariables}">
<li><c:out value="${envVar.name}" /></li>
</c:forEach>
</c:if>
</ul>
</ec:column>
<c1:ifBuildTypeEnabled buildType="distributed">
<ec:column property="buildAgentGroup" title="profilesList.buildAgentGroup.label" style="white-space: nowrap" />
</c1:ifBuildTypeEnabled>
<ec:column property="id" title="&nbsp;" width="1%">
<a href="editBuildEnv.action?profile.id=<c:out value="${pageScope.profile.id}"/>">
<img src="<s:url value='/images/edit.gif' includeParams="none"/>" alt="<s:text name='edit'/>" title="<s:text name='edit'/>" border="0" />
</a>
</ec:column>
<ec:column property="id" title="&nbsp;" width="1%">
<a href="confirmDeleteBuildEnv.action?profile.id=<c:out value="${pageScope.profile.id}"/>">
<img src="<s:url value='/images/delete.gif' includeParams="none"/>" alt="<s:text name='delete'/>" title="<s:text name='delete'/>" border="0" />
</a>
</ec:column>
</ec:row>
</ec:table>
</c:if>
<div class="functnbar3">
<s:form action="addBuildEnv" method="post">
<s:submit value="%{getText('add')}"/>
</s:form>
</div>
</div>
</s:i18n>