mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- added WebStudioPreviewURIService and a -context.sample file to enable Web Studio as a preview server for WCM (this is not enabled by default) - lots of updates to components in app library (to be renamed samples) - many fixes to drag/drop page assembly - spice up the UI a good bit - knock off remaining bugs for Labs 3C launch git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12220 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
19 lines
635 B
XML
19 lines
635 B
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<!--
|
|
Sample implementation of a Preview URI Service override which
|
|
allows Alfresco Web Studio to operate as a preview server from within
|
|
the JSF client.
|
|
|
|
Since: Labs 3C
|
|
Author: muzquiano
|
|
-->
|
|
<beans>
|
|
|
|
<!-- Define the Web Studio Preview URI Service -->
|
|
<bean id="PreviewURIService" class="org.alfresco.web.bean.wcm.preview.WebStudioPreviewURIService">
|
|
<property name="studioURI" value="http://localhost:8080/studio" />
|
|
</bean>
|
|
|
|
</beans> |