mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
85731: MNT-12461: Bring back the changes of MNT-11660 - moved the new test from web-framework-commons to web-client, where it belongs (w-f-c shouldn't depend on remote-api) - renamed the test FormUIGetRestApiIT because it is an integration test, not a unit test - disabled the execution of this test. Needs more work to sort it out - probably missing dependencies 85650: Reverse Merge HEAD-BUG-FIX (5.0/Cloud) << Breaks the build >> 85615: Merged V4.2-BUG-FIX (4.2.4) to HEAD-BUG-FIX (5.0/Cloud) <<Reverting the reverse - unit test was fixed>> 80815: Fix Build (pt2) Reverse Merge HEAD-BUG-FIX (5.0/Cloud) 80357: Merged V4.2-BUG-FIX (4.2.4) to HEAD-BUG-FIX (5.0/Cloud) 79075: Merged V4.2.3 (4.2.3) to V4.2-BUG-FIX (4.2.4) 78918: Merged DEV to V4.2.3 (4.2.3) 78889: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Was added new unit test. 79079: Merged V4.2.3 (4.2.3) to V4.2-BUG-FIX (4.2.4) 78994: Merged DEV to PATCHES/V4.2.3 78981 : MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Updated some code for unit test. 79081: Merged V4.2.3 (4.2.3) to V4.2-BUG-FIX (4.2.4) 79043: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Added webframeworkcommons classpath for unit test in build.xml . 79138: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Rename config file for test and update unit test source. 79140: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Deleted old config file for test. 79283: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Added info messages to unit test 80123: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Added info messages and log to unit test. 80207: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Updated the freemarker template for test webscript 80261: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Updated unit test. 80302: MNT-11660 : Share textarea.ftl appears even when the aspect of the property is not applied Updated unit test. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@94515 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
|
|
<!-- -->
|
|
<!-- API Testing -->
|
|
<!-- -->
|
|
|
|
<bean id="webframework.store.classpath.abstract" class="org.springframework.extensions.webscripts.ClassPathStore" abstract="true" init-method="init" />
|
|
|
|
<bean id="webscripts.store.client.extension" parent="webframework.store.classpath.abstract">
|
|
<property name="mustExist"><value>true</value></property>
|
|
<property name="classPath"><value>alfresco/site-webscripts</value></property>
|
|
</bean>
|
|
|
|
<bean id="webscripts.web.framework.test" class="org.springframework.extensions.webscripts.TestWebScriptServer">
|
|
<property name="container" ref="webscripts.container" />
|
|
<property name="configService" ref="web.config" />
|
|
</bean>
|
|
|
|
<bean id="webscript.org.alfresco.test.components.form.form.get" class="org.alfresco.web.scripts.forms.FormUIGetRestApiTest.FormUIGetExtend" parent="webscript">
|
|
<property name="configService" ref="web.config" />
|
|
</bean>
|
|
|
|
</beans> |