blob: d18c1e2fb5ade00e2b39786bbc18591f3e21ed35 [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="/struts-tags" prefix="s" %>
<%@ taglib uri="continuum" prefix="c1" %>
<%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
<html>
<s:i18n name="localization.Continuum">
<head>
<title>
<s:text name="configuration.page.title"/>
</title>
</head>
<body>
<div id="axial" class="h3">
<h3>
<s:text name="configuration.section.title"/>
</h3>
<s:form action="configuration!save" method="post">
<c:if test="${!empty actionErrors}">
<div class="errormessage">
<s:iterator value="actionErrors">
<p><s:property/></p>
</s:iterator>
</div>
</c:if>
<div class="axial">
<table>
<tbody>
<s:textfield label="%{getText('configuration.workingDirectory.label')}" name="workingDirectory"
required="true">
<s:param name="desc"><p>
<s:text name="configuration.workingDirectory.message"/>
</p></s:param>
</s:textfield>
<s:textfield label="%{getText('configuration.buildOutputDirectory.label')}" name="buildOutputDirectory"
required="true">
<s:param name="desc"><p>
<s:text name="configuration.buildOutputDirectory.message"/>
</p></s:param>
</s:textfield>
<s:textfield label="%{getText('configuration.releaseOutputDirectory.label')}" name="releaseOutputDirectory"
required="%{requireReleaseOutput}">
<s:param name="desc"><p>
<s:text name="configuration.releaseOutputDirectory.message"/>
</s:param>
</s:textfield>
<s:textfield label="%{getText('configuration.deploymentRepositoryDirectory.label')}"
name="deploymentRepositoryDirectory">
<s:param name="desc"><p>
<s:text name="configuration.deploymentRepositoryDirectory.message"/>
</p></s:param>
</s:textfield>
<s:textfield label="%{getText('configuration.baseUrl.label')}" name="baseUrl" required="true">
<s:param name="desc"><p>
<s:text name="configuration.baseUrl.message"/>
</p></s:param>
</s:textfield>
<s:checkbox label="%{getText('configuration.distributedBuildEnabled.label')}" name="distributedBuildEnabled"/>
<s:hidden name="requireReleaseOutput"/>
</tbody>
</table>
<div class="functnbar3">
<c1:submitcancel value="%{getText('save')}" cancel="%{getText('cancel')}"/>
</div>
</div>
</s:form>
</div>
</body>
</s:i18n>
</html>