From b33696652a45b023f2bf1ad36cd3f13e0106ba63 Mon Sep 17 00:00:00 2001 From: Jan Vonka Date: Fri, 16 Nov 2007 20:19:06 +0000 Subject: [PATCH] DM forms - fix for fresh bootstrap git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7402 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- config/alfresco/bootstrap-context.xml | 5 +++++ config/alfresco/messages/bootstrap-spaces.properties | 7 +++++-- .../alfresco/repo/admin/patch/impl/WCMFoldersPatch.java | 6 +++--- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/config/alfresco/bootstrap-context.xml b/config/alfresco/bootstrap-context.xml index b3a27f81c1..570d757c9f 100644 --- a/config/alfresco/bootstrap-context.xml +++ b/config/alfresco/bootstrap-context.xml @@ -229,6 +229,11 @@ alfresco/bootstrap/customWorkflowDefsSpace.acp + + /${spaces.company_home.childname}/${spaces.dictionary.childname} + alfresco/bootstrap/formsSpace.xml + + diff --git a/config/alfresco/messages/bootstrap-spaces.properties b/config/alfresco/messages/bootstrap-spaces.properties index 39166b11fb..cb7aa8fc63 100644 --- a/config/alfresco/messages/bootstrap-spaces.properties +++ b/config/alfresco/messages/bootstrap-spaces.properties @@ -30,8 +30,11 @@ spaces.scripts.description=JavaScript files spaces.wcm.name=Web Projects spaces.wcm.description=Web Content Management Spaces -spaces.content_forms.name=Web Forms -spaces.content_forms.description=Web Content Forms +spaces.wcm_content_forms.name=Web Forms +spaces.wcm_content_forms.description=Web Content Forms spaces.user_homes.name=User Homes spaces.user_homes.description=User Homes + +spaces.content_forms.name=Forms +spaces.content_forms.description=Content Forms diff --git a/source/java/org/alfresco/repo/admin/patch/impl/WCMFoldersPatch.java b/source/java/org/alfresco/repo/admin/patch/impl/WCMFoldersPatch.java index 3baa2a65cb..89cfb0b9ec 100644 --- a/source/java/org/alfresco/repo/admin/patch/impl/WCMFoldersPatch.java +++ b/source/java/org/alfresco/repo/admin/patch/impl/WCMFoldersPatch.java @@ -63,9 +63,9 @@ public class WCMFoldersPatch extends AbstractPatch public static final String PROPERTY_WEBPROJECTS_FOLDER_CHILDNAME = "spaces.wcm.childname"; private static final String MSG_WEBPROJECTS_FOLDER_NAME = "spaces.wcm.name"; private static final String MSG_WEBPROJECTS_FOLDER_DESCRIPTION = "spaces.wcm.description"; - public static final String PROPERTY_WEBFORMS_FOLDER_CHILDNAME = "spaces.content_forms.childname"; - private static final String MSG_WEBFORMS_FOLDER_NAME = "spaces.content_forms.name"; - private static final String MSG_WEBFORMS_FOLDER_DESCRIPTION = "spaces.content_forms.description"; + public static final String PROPERTY_WEBFORMS_FOLDER_CHILDNAME = "spaces.wcm_content_forms.childname"; + private static final String MSG_WEBFORMS_FOLDER_NAME = "spaces.wcm_content_forms.name"; + private static final String MSG_WEBFORMS_FOLDER_DESCRIPTION = "spaces.wcm_content_forms.description"; private static final String PROPERTY_ICON = "space-icon-default";