From dc85ccc8cfe2ae83e1674272dc1f3d9293a5a690 Mon Sep 17 00:00:00 2001 From: Paul Holmes-Higgin Date: Fri, 4 Jul 2008 15:51:03 +0000 Subject: [PATCH] Removed most Project Space related pieces, added in Sites container (subtype of folder) in Company Home git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@9655 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- config/alfresco/application-context.xml | 1 - config/alfresco/bootstrap-context.xml | 6 +- config/alfresco/bootstrap/projectsSpace.xml | 16 -- config/alfresco/bootstrap/sitesSpace.xml | 16 ++ config/alfresco/import-export-context.xml | 2 +- .../messages/bootstrap-spaces.properties | 4 +- config/alfresco/model/applicationModel.xml | 6 - config/alfresco/model/siteModel.xml | 7 +- config/alfresco/projects-context.xml | 27 --- config/alfresco/repository.properties | 2 +- .../templates/collaboration_project.xml | 190 ------------------ 11 files changed, 27 insertions(+), 250 deletions(-) delete mode 100644 config/alfresco/bootstrap/projectsSpace.xml create mode 100644 config/alfresco/bootstrap/sitesSpace.xml delete mode 100644 config/alfresco/projects-context.xml delete mode 100644 config/alfresco/templates/collaboration_project.xml diff --git a/config/alfresco/application-context.xml b/config/alfresco/application-context.xml index adc5ffc7ac..84266c7f75 100644 --- a/config/alfresco/application-context.xml +++ b/config/alfresco/application-context.xml @@ -39,7 +39,6 @@ - diff --git a/config/alfresco/bootstrap-context.xml b/config/alfresco/bootstrap-context.xml index 206e9ef26a..b4fdd9b2a4 100644 --- a/config/alfresco/bootstrap-context.xml +++ b/config/alfresco/bootstrap-context.xml @@ -239,10 +239,6 @@ alfresco/templates/software_engineering_project.xml alfresco/messages/bootstrap-templates - - /${spaces.company_home.childname}/${spaces.dictionary.childname}/${spaces.templates.childname} - alfresco/templates/collaboration_project.xml - /${spaces.company_home.childname}/${spaces.dictionary.childname}/${spaces.templates.content.childname} alfresco/templates/content_template_examples.xml @@ -306,7 +302,7 @@ /${spaces.company_home.childname} - alfresco/bootstrap/projectsSpace.xml + alfresco/bootstrap/sitesSpace.xml alfresco/messages/bootstrap-spaces diff --git a/config/alfresco/bootstrap/projectsSpace.xml b/config/alfresco/bootstrap/projectsSpace.xml deleted file mode 100644 index 0bcd035c50..0000000000 --- a/config/alfresco/bootstrap/projectsSpace.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - GROUP_EVERYONE - Contributor - - - - ${spaces.projects.name} - space-icon-default - ${spaces.projects.name} - ${spaces.projects.description} - - \ No newline at end of file diff --git a/config/alfresco/bootstrap/sitesSpace.xml b/config/alfresco/bootstrap/sitesSpace.xml new file mode 100644 index 0000000000..f751200ad6 --- /dev/null +++ b/config/alfresco/bootstrap/sitesSpace.xml @@ -0,0 +1,16 @@ + + + + + + GROUP_EVERYONE + Contributor + + + + ${spaces.sites.name} + space-icon-default + ${spaces.sites.name} + ${spaces.sites.description} + + \ No newline at end of file diff --git a/config/alfresco/import-export-context.xml b/config/alfresco/import-export-context.xml index ad61a362e8..4a26ae8442 100644 --- a/config/alfresco/import-export-context.xml +++ b/config/alfresco/import-export-context.xml @@ -324,7 +324,7 @@ ${spaces.wcm_content_forms.childname} ${spaces.content_forms.childname} ${spaces.user_homes.childname} - ${spaces.projects.childname} + ${spaces.sites.childname} diff --git a/config/alfresco/messages/bootstrap-spaces.properties b/config/alfresco/messages/bootstrap-spaces.properties index 8abe0e8454..d6db271fb7 100644 --- a/config/alfresco/messages/bootstrap-spaces.properties +++ b/config/alfresco/messages/bootstrap-spaces.properties @@ -39,5 +39,5 @@ spaces.user_homes.description=User Homes spaces.content_forms.name=Forms spaces.content_forms.description=Content Forms -spaces.projects.name=Projects -spaces.projects.description=Project Collaboration Spaces \ No newline at end of file +spaces.sites.name=Sites +spaces.sites.description=Site Collaboration Spaces diff --git a/config/alfresco/model/applicationModel.xml b/config/alfresco/model/applicationModel.xml index b9712765fc..5bd3bc616f 100644 --- a/config/alfresco/model/applicationModel.xml +++ b/config/alfresco/model/applicationModel.xml @@ -52,12 +52,6 @@ cm:link - - - Project Folder - cm:folder - - diff --git a/config/alfresco/model/siteModel.xml b/config/alfresco/model/siteModel.xml index f8861a534e..fc11b7fc0f 100644 --- a/config/alfresco/model/siteModel.xml +++ b/config/alfresco/model/siteModel.xml @@ -19,7 +19,7 @@ - + @@ -43,6 +43,11 @@ cm:titled + + + Sites + cm:folder + diff --git a/config/alfresco/projects-context.xml b/config/alfresco/projects-context.xml deleted file mode 100644 index bd70ab97b0..0000000000 --- a/config/alfresco/projects-context.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - {http://www.alfresco.org}onAddAspect - - - {http://www.alfresco.org/model/emailserver/1.0}aliasable - - - - TRANSACTION_COMMIT - - - - alfresco/module/projects/script/onAddAspect_emailserver_aliasable.js - - - - - - - \ No newline at end of file diff --git a/config/alfresco/repository.properties b/config/alfresco/repository.properties index a55fa22303..bff5db14d0 100644 --- a/config/alfresco/repository.properties +++ b/config/alfresco/repository.properties @@ -183,7 +183,7 @@ spaces.wcm.childname=app:wcm spaces.wcm_content_forms.childname=app:wcm_forms spaces.content_forms.childname=app:forms spaces.user_homes.childname=app:user_homes -spaces.projects.childname=app:projects +spaces.sites.childname=st:sites # Folders for storing people system.system_container.childname=sys:system diff --git a/config/alfresco/templates/collaboration_project.xml b/config/alfresco/templates/collaboration_project.xml deleted file mode 100644 index 3792a6ce40..0000000000 --- a/config/alfresco/templates/collaboration_project.xml +++ /dev/null @@ -1,190 +0,0 @@ - - - - admin - 2007-12-04T13:25:22.829Z - 2.9.0 (dev r7521) - /app:company_home/app:projects - - - - - - - - - - project - b4e91bed-a1e9-11dc-ae66-e717b8dfc153 - 472 - - 2007-12-03T21:50:04.921Z - admin - 2007-12-03T21:50:04.937Z - admin - workspace - New Project - SpacesStore - - - - - - - - - - - - - - project-icon-gallery - 725495c6-a1e9-11dc-ae66-e717b8dfc153 - 466 - - 2007-12-03T21:48:13.203Z - /wcs/collaboration/gallery/view/{noderef} - /wcs/collaboration/gallerySummary - admin - 2007-12-03T21:48:13.234Z - admin - workspace - Image Gallery - SpacesStore - - - - - - - - - - - - - - - project-icon-blog - 79f7b1a5-a1e9-11dc-ae66-e717b8dfc153 - 467 - - 2007-12-03T21:48:26.031Z - /wcs/collaboration/blogSpace?nodeRef={noderef} - /wcs/collaboration/blogSummary - admin - 2007-12-03T21:48:26.093Z - admin - workspace - Blog Posts - SpacesStore - - - - - - - - - - - - - /wcs/collaboration/calendar?nodeRef={noderef} - /wcs/collaboration/calendarSummary - - project-icon-calendar - 7ff24daa-a1e9-11dc-ae66-e717b8dfc153 - 468 - - 2007-12-03T21:48:36.125Z - admin - 2007-12-03T21:48:36.140Z - admin - workspace - Calendar - SpacesStore - - - - - - - - - - - - - - project-icon-doclibrary - 8741cb52-a1e9-11dc-ae66-e717b8dfc153 - 469 - - 2007-12-03T21:48:48.328Z - /wcs/collaboration/docLibrary?nodeRef={noderef} - /wcs/collaboration/docSummary - admin - 2007-12-03T21:48:48.343Z - admin - workspace - Document Library - SpacesStore - - - - - - - - - - - - - - - project-icon-emailarchive - 90b365ad-a1e9-11dc-ae66-e717b8dfc153 - 470 - - 2007-12-03T21:49:04.156Z - /wcs/collaboration/docLibrary?nodeRef={noderef} - /wcs/collaboration/emailSummary - admin - 2007-12-03T21:49:04.171Z - admin - workspace - Email Archive - SpacesStore - - - - - - - - - - - - - project-icon-forums - a3cd60c2-a1e9-11dc-ae66-e717b8dfc153 - 471 - - 2007-12-03T21:49:36.218Z - admin - 2007-12-03T21:49:36.250Z - admin - workspace - Forums - SpacesStore - /wcs/collaboration/forumSummary - - - - - - - \ No newline at end of file