From 66e83fb11d30190e710570ebe2d6dea715d6a013 Mon Sep 17 00:00:00 2001 From: Ariel Backenroth Date: Thu, 26 Oct 2006 04:16:16 +0000 Subject: [PATCH] - adding in the structure for an XSL FO rendering engine - terminology cleanups to model and screens - extracting company-footer back into its own xsd; no reason to shove that feature in everyone's face. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4227 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- config/alfresco/model/wcmModel.xml | 5 +++++ source/java/org/alfresco/model/WCMModel.java | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/config/alfresco/model/wcmModel.xml b/config/alfresco/model/wcmModel.xml index 60013ac618..5e99c9858c 100644 --- a/config/alfresco/model/wcmModel.xml +++ b/config/alfresco/model/wcmModel.xml @@ -106,6 +106,11 @@ d:text true + + Mimetype for generated assets + d:text + true + Form Source d:noderef diff --git a/source/java/org/alfresco/model/WCMModel.java b/source/java/org/alfresco/model/WCMModel.java index 19f20446de..a8ece96ee1 100644 --- a/source/java/org/alfresco/model/WCMModel.java +++ b/source/java/org/alfresco/model/WCMModel.java @@ -45,7 +45,8 @@ public interface WCMModel // An XML to something else tranformer aspect. public static final QName ASPECT_RENDERING_ENGINE = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "renderingengine"); public static final QName PROP_RENDERING_ENGINE_TYPE = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "renderingenginetype"); - public static final QName PROP_FILE_EXTENSION_FOR_RENDITION = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "fileextensionfordatarendition"); + public static final QName PROP_FILE_EXTENSION_FOR_RENDITION = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "fileextensionforrendition"); + public static final QName PROP_MIMETYPE_FOR_RENDITION = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "mimetypeforrendition"); public static final QName PROP_FORM_SOURCE = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "formsource"); public static final QName ASPECT_FORM_INSTANCE_DATA = QName.createQName(NamespaceService.WCM_MODEL_1_0_URI, "forminstancedata");