blob: 5bc80b86bec8a2c70d9ffbc2062ebbc4077221ff [file] [log] [blame]
<%-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. 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. For additional information regarding
copyright in this work, please see the NOTICE file in the top level
directory of this distribution.
--%>
<%@ include file="/WEB-INF/jsps/taglibs-struts2.jsp" %>
<%--
WARNING: this JSP page is not visible to end users as now, with
Struts Bootstrap, the FolderEdit#save action is called via AJAX.
--%>
<%-- Titling, processing actions different between add and edit --%>
<s:if test="actionName == 'folderEdit'">
<s:set var="subtitleKey">folderForm.edit.subtitle</s:set>
<s:set var="mainAction">folderEdit</s:set>
</s:if>
<s:else>
<s:set var="subtitleKey">folderForm.add.subtitle</s:set>
<s:set var="mainAction">folderAdd</s:set>
</s:else>
<p class="subtitle">
<s:text name="%{#subtitleKey}" >
<s:param value="folder.name" />
</s:text>
</p>
<s:form>
<s:hidden name="salt" />
<s:hidden name="weblog" />
<%-- folderId needed on cancel to determine folder to return to (see struts.xml) --%>
<s:hidden name="folderId" value="%{folderId}" />
<s:if test="actionName == 'folderEdit'">
<%-- bean for folder add does not have a bean id yet --%>
<s:hidden name="bean.id" />
</s:if>
<table>
<tr>
<td><s:text name="generic.name" /></td>
<td><s:textfield name="bean.name" size="70" maxlength="255" /></td>
</tr>
</table>
<p>
<s:submit value="%{getText('generic.save')}" action="%{#mainAction}!save"/>
<s:submit value="%{getText('generic.cancel')}" action="folderEdit!cancel" />
</p>
</s:form>