mirror of
https://github.com/Alfresco/alfresco-sdk.git
synced 2025-05-26 17:25:11 +00:00
DEVPLAT-72: Move site-webscripts and site-data in under web-extension for share-amp
This commit is contained in:
parent
3a9f08620a
commit
6a6fcacf78
@ -68,6 +68,12 @@
|
|||||||
<include>**/*.java</include>
|
<include>**/*.java</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
<fileSet filtered="true" packaged="false" encoding="UTF-8">
|
||||||
|
<directory>src/main/amp/config/alfresco/web-extension</directory>
|
||||||
|
<includes>
|
||||||
|
<include>*.xml</include>
|
||||||
|
</includes>
|
||||||
|
</fileSet>
|
||||||
<fileSet encoding="UTF-8" filtered="false">
|
<fileSet encoding="UTF-8" filtered="false">
|
||||||
<directory>src/main/amp</directory>
|
<directory>src/main/amp</directory>
|
||||||
<includes>
|
<includes>
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
|
#set($symbol_pound='#')
|
||||||
|
#set($symbol_dollar='$')
|
||||||
|
#set($symbol_escape='\' )
|
||||||
<?xml version='1.0' encoding='UTF-8'?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:hz="http://www.hazelcast.com/schema/spring"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||||
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
|
||||||
http://www.hazelcast.com/schema/spring
|
|
||||||
http://www.hazelcast.com/schema/spring/hazelcast-spring-2.4.xsd">
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Define beans related to this Share extension here, such as
|
Define beans related to this Share extension here, such as
|
||||||
@ -16,12 +16,12 @@
|
|||||||
placed in the alfresco-allinone/share/src/main/resources/alfresco/web-extension/custom-slingshot-application-context.xml file
|
placed in the alfresco-allinone/share/src/main/resources/alfresco/web-extension/custom-slingshot-application-context.xml file
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- Add extension specific messages and labels -->
|
<!-- Add module specific messages and labels -->
|
||||||
<bean id="com.mycompany.share-amp.resources"
|
<bean id="${package}.share-amp.resources"
|
||||||
class="org.springframework.extensions.surf.util.ResourceBundleBootstrapComponent">
|
class="org.springframework.extensions.surf.util.ResourceBundleBootstrapComponent">
|
||||||
<property name="resourceBundles">
|
<property name="resourceBundles">
|
||||||
<list>
|
<list>
|
||||||
<value>alfresco.messages.custom</value>
|
<value>alfresco.web-extension.messages.custom</value>
|
||||||
</list>
|
</list>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
@ -1,4 +1,6 @@
|
|||||||
## If you are overriding out-of-the-box Alfresco web scripts put these files here.
|
## If you are overriding out-of-the-box Alfresco web scripts, put these files here
|
||||||
## If you are defining new web scripts add them under resources/alfresco/site-webscripts.
|
## in the correct org.alfresco... package.
|
||||||
|
## If you are defining a new custom web script, add it under
|
||||||
|
## resources/alfresco/web-extension/site-webscripts/{your domain path}.
|
||||||
##
|
##
|
||||||
|
|
||||||
|
@ -22,6 +22,12 @@
|
|||||||
<include>**/*.java</include>
|
<include>**/*.java</include>
|
||||||
</includes>
|
</includes>
|
||||||
</fileSet>
|
</fileSet>
|
||||||
|
<fileSet filtered="true" packaged="false" encoding="UTF-8">
|
||||||
|
<directory>src/main/amp/config/alfresco/web-extension</directory>
|
||||||
|
<includes>
|
||||||
|
<include>*.xml</include>
|
||||||
|
</includes>
|
||||||
|
</fileSet>
|
||||||
<fileSet encoding="UTF-8" filtered="false">
|
<fileSet encoding="UTF-8" filtered="false">
|
||||||
<directory>src/main/amp</directory>
|
<directory>src/main/amp</directory>
|
||||||
<includes>
|
<includes>
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
#set($symbol_pound='#')
|
||||||
|
#set($symbol_dollar='$')
|
||||||
|
#set($symbol_escape='\' )
|
||||||
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||||
|
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Define beans related to this Share extension here, such as
|
||||||
|
evaluators and resource bootstrapping.
|
||||||
|
|
||||||
|
Note. Any configuration related to the whole Share.war webapp
|
||||||
|
(i.e. not specific to this share extension) should be
|
||||||
|
placed in the tomcat/shared/classes/alfresco/web-extension/custom-slingshot-application-context.xml file
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Add module specific messages and labels -->
|
||||||
|
<bean id="${package}.share-amp.resources"
|
||||||
|
class="org.springframework.extensions.surf.util.ResourceBundleBootstrapComponent">
|
||||||
|
<property name="resourceBundles">
|
||||||
|
<list>
|
||||||
|
<value>alfresco.web-extension.messages.custom</value>
|
||||||
|
</list>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
</beans>
|
@ -1,30 +0,0 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8'?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:hz="http://www.hazelcast.com/schema/spring"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
||||||
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
|
||||||
http://www.hazelcast.com/schema/spring
|
|
||||||
http://www.hazelcast.com/schema/spring/hazelcast-spring-2.4.xsd">
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Define beans related to this Share extension here, such as
|
|
||||||
evaluators and resource bootstrapping.
|
|
||||||
|
|
||||||
Note. Any configuration related to the whole Share.war webapp
|
|
||||||
(i.e. not specific to this share extension) should be
|
|
||||||
placed in the environment specific config:
|
|
||||||
alfresco/tomcat/shared/classes/alfresco/web-extension/custom-slingshot-application-context.xml file
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- Add extension specific messages and labels -->
|
|
||||||
<bean id="com.mycompany.share-amp.resources"
|
|
||||||
class="org.springframework.extensions.surf.util.ResourceBundleBootstrapComponent">
|
|
||||||
<property name="resourceBundles">
|
|
||||||
<list>
|
|
||||||
<value>alfresco.messages.custom</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
</beans>
|
|
@ -1,4 +1,6 @@
|
|||||||
## If you are overriding out-of-the-box Alfresco web scripts put these files here.
|
## If you are overriding out-of-the-box Alfresco web scripts, put these files here
|
||||||
## If you are defining new web scripts add them under resources/alfresco/site-webscripts.
|
## in the correct org.alfresco... package.
|
||||||
|
## If you are defining a new custom web script, add it under
|
||||||
|
## resources/alfresco/web-extension/site-webscripts/{your domain path}.
|
||||||
##
|
##
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user