mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
first stab at the multi channel thing
- renamed create-xml-content-type wizard to create-form wizard and moved it into the wcm source tree - modified the create form wizard to accept 0 to n template output methods - changed terminology from presentation template to template output method - using associations to track output methods - added file extension as property of templateoutputmethod to parameterize what the name of the output file should be - auto adding .xml to file name in create web content if none specified. - making associating an output method with a template optional git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4043 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -0,0 +1,126 @@
|
||||
<%--
|
||||
Copyright (C) 2005 Alfresco, Inc.
|
||||
|
||||
Licensed under the Mozilla Public License version 1.1
|
||||
with a permitted attribution clause. You may obtain a
|
||||
copy of the License at
|
||||
|
||||
http://www.alfresco.org/legal/license.txt
|
||||
|
||||
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/jsf/html" prefix="h" %>
|
||||
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
|
||||
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
|
||||
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
|
||||
|
||||
<jsp:directive.page import="java.io.*"/>
|
||||
<jsp:directive.page import="org.alfresco.web.bean.FileUploadBean"/>
|
||||
<jsp:directive.page buffer="32kb" contentType="text/html;charset=UTF-8"/>
|
||||
<jsp:directive.page isELIgnored="false"/>
|
||||
|
||||
<f:verbatim>
|
||||
<script type="text/javascript">
|
||||
function upload_file(el)
|
||||
{
|
||||
el.form.method = "post";
|
||||
el.form.enctype = "multipart/form-data";
|
||||
el.form.action = "<%= request.getContextPath() %>/uploadFileServlet";
|
||||
el.form.submit();
|
||||
return false;
|
||||
}
|
||||
</script>
|
||||
</f:verbatim>
|
||||
|
||||
<h:panelGrid id="general-properties-panel-grid"
|
||||
columns="1" cellpadding="2" style="padding-top: 4px; padding-bottom: 4px;"
|
||||
width="100%">
|
||||
<h:outputText id="step-1-text" value="1. #{msg.configure_output_methods_step1_desc}" escape="false" />
|
||||
<h:panelGrid id="panel_grid_3"
|
||||
columns="3" cellpadding="3" cellspacing="3" border="0"
|
||||
width="100%">
|
||||
<%--
|
||||
<h:graphicImage id="required-image-type" value="/images/icons/required_field.gif" alt="Required Field" />
|
||||
<h:outputText id="panel_grid_3_output_text_1"
|
||||
value="Presentation Template Type:" escape="false" />
|
||||
<h:selectOneRadio value="#{WizardManager.bean.templateOutputMethodType}">
|
||||
<f:selectItems value="#{WizardManager.bean.createTemplateOutputMethodTypes}"/>
|
||||
</h:selectOneRadio>
|
||||
--%>
|
||||
|
||||
<h:graphicImage id="required_image_pt"
|
||||
value="/images/icons/required_field.gif" alt="Required Field" />
|
||||
<h:outputText id="output_text_pt"
|
||||
value="#{msg.template_output_method_file}:"/>
|
||||
<%
|
||||
FileUploadBean upload = (FileUploadBean)
|
||||
session.getAttribute(FileUploadBean.getKey("template-output-method"));
|
||||
if (upload == null || upload.getFile() == null)
|
||||
{
|
||||
%>
|
||||
<h:column id="column_pt">
|
||||
<f:verbatim>
|
||||
<input type="hidden" name="upload-id" value="template-output-method"/>
|
||||
<input type="hidden" name="return-page" value="<%= request.getContextPath() %>/faces<%= request.getServletPath() %>"/>
|
||||
<input id="wizard:wizard-body:file-input" type="file" size="35" name="alfFileInput" onchange="javascript:upload_file(this)"/>
|
||||
</f:verbatim>
|
||||
</h:column>
|
||||
<%
|
||||
} else {
|
||||
%>
|
||||
<h:outputText id="template-output-method-file-name"
|
||||
value="#{WizardManager.bean.templateOutputMethodFileName}"/>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<h:graphicImage id="required_image_file_extension"
|
||||
value="/images/icons/required_field.gif" alt="Required Field" />
|
||||
<h:outputText id="file_extension_output_text"
|
||||
value="#{msg.extension_for_generated_assets}:"/>
|
||||
<h:inputText id="file-extension" value=""
|
||||
maxlength="10" size="10"/>
|
||||
</h:panelGrid>
|
||||
|
||||
<h:panelGroup id="step-2-panel-group" styleClass="mainSubText">
|
||||
<h:outputText id="step-2-output-text" value="2." />
|
||||
<h:commandButton id="add-to-list-button"
|
||||
value="#{msg.add_to_list_button}"
|
||||
actionListener="#{CreateXmlContentTypeWizard.addSelectedTemplateOutputMethod}"
|
||||
styleClass="wizardButton" />
|
||||
</h:panelGroup>
|
||||
<h:outputText id="selected_template_output_methods_output_text"
|
||||
styleClass="mainSubText" value="#{msg.selected_templateoutputmethods}" />
|
||||
<h:panelGroup id="data-table-panel-group">
|
||||
<h:dataTable id="template_output_method_data_table"
|
||||
value="#{CreateXmlContentTypeWizard.templateOutputMethodsDataModel}" var="row"
|
||||
rowClasses="selectedItemsRow,selectedItemsRowAlt"
|
||||
styleClass="selectedItems" headerClass="selectedItemsHeader"
|
||||
cellspacing="0" cellpadding="4"
|
||||
rendered="#{CreateXmlContentTypeWizard.templateOutputMethodsDataModel.rowCount != 0}">
|
||||
<h:column id="data-table-column-1">
|
||||
<f:facet name="header">
|
||||
<h:outputText id="data-table-name" value="#{msg.name}" />
|
||||
</f:facet>
|
||||
<h:outputText id="data-table-value" value="#{row.label}" />
|
||||
</h:column>
|
||||
<h:column id="data-table-column-2">
|
||||
<a:actionLink id="remove-select-template-output-method-action-link"
|
||||
actionListener="#{CreateXmlContentTypeWizard.removeSelectedTemplateOutputMethod}"
|
||||
image="/images/icons/delete.gif"
|
||||
value="#{msg.remove}" showLink="false" style="padding-left:6px" />
|
||||
</h:column>
|
||||
</h:dataTable>
|
||||
|
||||
<a:panel id="no-items" rendered="#{CreateXmlContentTypeWizard.templateOutputMethodsDataModel.rowCount == 0}">
|
||||
<h:panelGrid id="no-items-panel-grid" columns="1" cellpadding="2" styleClass="selectedItems" rowClasses="selectedItemsHeader,selectedItemsRow">
|
||||
<h:outputText styleClass="selectedItemsHeader" id="no-items-name" value="#{msg.name}" />
|
||||
<h:outputText styleClass="selectedItemsRow" id="no-items-msg" value="#{msg.no_selected_items}" />
|
||||
</h:panelGrid>
|
||||
</a:panel>
|
||||
</h:panelGroup>
|
||||
</h:panelGrid>
|
Reference in New Issue
Block a user