Site Service: refactor container API (Java & JS) to have separate create method, fix-up UI fallout, expose node details on site details (Java/JS/REST), fixup web scripts with correct permission levels

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@9918 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Roy Wetherall
2008-07-17 14:17:16 +00:00
parent ad923cd212
commit 1cca2f03b9
10 changed files with 347 additions and 62 deletions

View File

@@ -49,8 +49,23 @@
<type name="st:sites">
<title>Sites</title>
<parent>cm:folder</parent>
</type>
</type>
</types>
<aspects>
<!-- Site Container Aspect -->
<aspect name="st:siteContainer">
<title>Site Container</title>
<properties>
<property name="st:componentId">
<title>Component Id</title>
<type>d:text</type>
</property>
</properties>
</aspect>
</aspects>
</model>

View File

@@ -24,6 +24,7 @@
<property name="authenticationComponent" ref="authenticationComponent"/>
<property name="personService" ref="PersonService"/>
<property name="activityService" ref="activityService"/>
<property name="taggingService" ref="TaggingService"/>
</bean>
<bean id="siteServiceScript" parent="baseJavaScriptExtension" class="org.alfresco.repo.site.script.ScriptSiteService">