forked from wabson/share-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-bootstrap-site.xml
45 lines (45 loc) · 2.08 KB
/
sample-bootstrap-site.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!-- For importing whole sites -->
<bean id="patch.siteLoadPatch.%(siteId)s" class="org.alfresco.repo.admin.patch.impl.SiteLoadPatch" parent="basePatch"
depends-on="">
<property name="id"><value>patch.siteLoadPatch.%(siteId)s</value></property>
<property name="description"><value>patch.siteLoadPatch.description</value></property>
<property name="fixesFromSchema"><value>0</value></property>
<property name="fixesToSchema"><value>${version.schema}</value></property>
<property name="targetSchema"><value>10000</value></property>
<property name="spacesBootstrap" ref="siteLoadBootstrap-Spaces" />
<property name="usersBootstrap" ref="siteLoadBootstrap-Users" />
<property name="siteService" ref="siteService" />
<property name="authorityService" ref="authorityService" />
<property name="behaviourFilter" ref="policyBehaviourFilter" />
<property name="siteName">
<value>%(siteId)s</value>
</property>
<property name="bootstrapViews">
<map>
<entry key="users">
<props>
<prop key="location">%(contentBase)s-users.acp</prop>
</props>
</entry>
<entry key="people">
<props>
<prop key="location">%(contentBase)s-people.acp</prop>
</props>
</entry>
<entry key="groups">
<props>
<prop key="location">%(contentBase)s-groups.txt</prop>
</props>
</entry>
<entry key="contents">
<props>
<prop key="location">%(contentBase)s-content.acp</prop>
</props>
</entry>
</map>
</property>
</bean>
</beans>