mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Calendar View contribution integrated
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7546 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -240,6 +240,16 @@
|
|||||||
<prop key="messages">alfresco/messages/bootstrap-spaces</prop>
|
<prop key="messages">alfresco/messages/bootstrap-spaces</prop>
|
||||||
</props>
|
</props>
|
||||||
|
|
||||||
|
<props>
|
||||||
|
<prop key="path">/${spaces.company_home.childname}/${spaces.dictionary.childname}/cm:webscripts/cm:org/cm:alfresco</prop>
|
||||||
|
<prop key="location">alfresco/bootstrap/calendar_webscripts.acp</prop>
|
||||||
|
</props>
|
||||||
|
|
||||||
|
<props>
|
||||||
|
<prop key="path">/${spaces.company_home.childname}/${spaces.dictionary.childname}/${spaces.templates.content.childname}</prop>
|
||||||
|
<prop key="location">alfresco/bootstrap/calendar_templates.acp</prop>
|
||||||
|
</props>
|
||||||
|
|
||||||
</list>
|
</list>
|
||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
BIN
config/alfresco/bootstrap/calendar_templates.acp
Normal file
BIN
config/alfresco/bootstrap/calendar_templates.acp
Normal file
Binary file not shown.
BIN
config/alfresco/bootstrap/calendar_webscripts.acp
Normal file
BIN
config/alfresco/bootstrap/calendar_webscripts.acp
Normal file
Binary file not shown.
@@ -690,6 +690,9 @@
|
|||||||
|
|
||||||
<!-- Email model -->
|
<!-- Email model -->
|
||||||
<value>alfresco/model/emailServerModel.xml</value>
|
<value>alfresco/model/emailServerModel.xml</value>
|
||||||
|
|
||||||
|
<!-- Calendar model -->
|
||||||
|
<value>alfresco/model/calendarModel.xml</value>
|
||||||
|
|
||||||
<!-- Deprecated types -->
|
<!-- Deprecated types -->
|
||||||
<value>alfresco/model/deprecated/deprecated_contentModel.xml</value>
|
<value>alfresco/model/deprecated/deprecated_contentModel.xml</value>
|
||||||
|
@@ -187,7 +187,12 @@ patch.avmStoreAsIdentifier.result=Reindexed wca:webfolder to make wca:avmstore a
|
|||||||
patch.avmFormPropertyIdentifier.description=Reindex wca:webform to make wca:formname an identifier
|
patch.avmFormPropertyIdentifier.description=Reindex wca:webform to make wca:formname an identifier
|
||||||
patch.avmFormPropertyIdentifier.result=Reindexed wca:webform to make wca:formname an identifier
|
patch.avmFormPropertyIdentifier.result=Reindexed wca:webform to make wca:formname an identifier
|
||||||
|
|
||||||
patch.formsFolder.description=Adds 'Forms' folder to Data Dictionary
|
patch.formsFolder.description=Adds 'Forms' folder to Data Dictionary.
|
||||||
|
|
||||||
patch.tagRootCategory.description=Adds 'Tags' as new top-level category root
|
patch.tagRootCategory.description=Adds 'Tags' as new top-level category root.
|
||||||
|
|
||||||
|
patch.projectsFolder.description=Adds 'Projects' folder to Company Home.
|
||||||
|
|
||||||
|
patch.calendarWebscripts.description=Add the Calendar space webscripts to Data Dictionary.
|
||||||
|
|
||||||
|
patch.calendarTemplates.description=Add the Calendar templates to the Data Dictionary.
|
84
config/alfresco/model/calendarModel.xml
Normal file
84
config/alfresco/model/calendarModel.xml
Normal file
@@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<model name="ia:CalendarEventModel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
||||||
|
|
||||||
|
<!-- Optional meta-data about the model -->
|
||||||
|
<description>Calendar Event Model</description>
|
||||||
|
<author>Snig Bhaumik</author>
|
||||||
|
<version>1.0</version>
|
||||||
|
|
||||||
|
<imports>
|
||||||
|
<!-- Import Alfresco Dictionary Definitions -->
|
||||||
|
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
|
||||||
|
<!-- Import Alfresco Content Domain Model Definitions -->
|
||||||
|
<import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
|
||||||
|
</imports>
|
||||||
|
|
||||||
|
<!-- Introduction of new namespaces defined by this model -->
|
||||||
|
<namespaces>
|
||||||
|
<namespace uri="com.infoaxon.alfresco.calendar" prefix="ia"/>
|
||||||
|
</namespaces>
|
||||||
|
|
||||||
|
<types>
|
||||||
|
<type name="ia:calendarEvent">
|
||||||
|
<title>Calendar Event</title>
|
||||||
|
<parent>cm:content</parent>
|
||||||
|
<properties>
|
||||||
|
<property name="ia:whatEvent">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:fromDate">
|
||||||
|
<type>d:datetime</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:toDate">
|
||||||
|
<type>d:datetime</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:whereEvent">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:descriptionEvent">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:colorEvent">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
</properties>
|
||||||
|
</type>
|
||||||
|
|
||||||
|
<type name="ia:calendar">
|
||||||
|
<title>Calendar Space</title>
|
||||||
|
<parent>cm:folder</parent>
|
||||||
|
<properties>
|
||||||
|
<property name="ia:whatEventDefault">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:fromDateDefault">
|
||||||
|
<type>d:datetime</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:toDateDefault">
|
||||||
|
<type>d:datetime</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:whereEventDefault">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
<property name="ia:colorEventDefault">
|
||||||
|
<type>d:text</type>
|
||||||
|
</property>
|
||||||
|
</properties>
|
||||||
|
<associations>
|
||||||
|
<association name="ia:subscribedCalendarList">
|
||||||
|
<source>
|
||||||
|
<mandatory>false</mandatory>
|
||||||
|
<many>true</many>
|
||||||
|
</source>
|
||||||
|
<target>
|
||||||
|
<class>ia:calendar</class>
|
||||||
|
<mandatory>false</mandatory>
|
||||||
|
<many>true</many>
|
||||||
|
</target>
|
||||||
|
</association>
|
||||||
|
</associations>
|
||||||
|
</type>
|
||||||
|
</types>
|
||||||
|
|
||||||
|
</model>
|
@@ -1168,7 +1168,7 @@
|
|||||||
|
|
||||||
<bean id="patch.projectsFolder" class="org.alfresco.repo.admin.patch.impl.GenericBootstrapPatch" parent="basePatch" >
|
<bean id="patch.projectsFolder" class="org.alfresco.repo.admin.patch.impl.GenericBootstrapPatch" parent="basePatch" >
|
||||||
<property name="id"><value>patch.projectsFolder</value></property>
|
<property name="id"><value>patch.projectsFolder</value></property>
|
||||||
<property name="description"><value>patch.formsFolder.description</value></property>
|
<property name="description"><value>patch.projectsFolder.description</value></property>
|
||||||
<property name="fixesFromSchema"><value>0</value></property>
|
<property name="fixesFromSchema"><value>0</value></property>
|
||||||
<property name="fixesToSchema"><value>114</value></property>
|
<property name="fixesToSchema"><value>114</value></property>
|
||||||
<property name="targetSchema"><value>115</value></property>
|
<property name="targetSchema"><value>115</value></property>
|
||||||
@@ -1188,4 +1188,43 @@
|
|||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
</beans>
|
<bean id="patch.calendarWebscripts" class="org.alfresco.repo.admin.patch.impl.GenericBootstrapPatch" parent="basePatch" >
|
||||||
|
<property name="id"><value>patch.calendarWebscripts</value></property>
|
||||||
|
<property name="description"><value>patch.calendarWebscripts.description</value></property>
|
||||||
|
<property name="fixesFromSchema"><value>0</value></property>
|
||||||
|
<property name="fixesToSchema"><value>115</value></property>
|
||||||
|
<property name="targetSchema"><value>116</value></property>
|
||||||
|
<!-- bootstrap view -->
|
||||||
|
<property name="importerBootstrap">
|
||||||
|
<ref bean="spacesBootstrap" />
|
||||||
|
</property>
|
||||||
|
<property name="checkPath">
|
||||||
|
<value>/${spaces.company_home.childname}/${spaces.dictionary.childname}/cm:webscripts/cm:org/cm:alfresco/cm:calendar</value>
|
||||||
|
</property>
|
||||||
|
<property name="bootstrapView">
|
||||||
|
<props>
|
||||||
|
<prop key="path">/${spaces.company_home.childname}/${spaces.dictionary.childname}/cm:webscripts/cm:org/cm:alfresco</prop>
|
||||||
|
<prop key="location">alfresco/bootstrap/calendar_webscripts.acp</prop>
|
||||||
|
</props>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
<bean id="patch.calendarTemplates" class="org.alfresco.repo.admin.patch.impl.GenericBootstrapPatch" parent="basePatch" >
|
||||||
|
<property name="id"><value>patch.calendarTemplates</value></property>
|
||||||
|
<property name="description"><value>patch.calendarTemplates.description</value></property>
|
||||||
|
<property name="fixesFromSchema"><value>0</value></property>
|
||||||
|
<property name="fixesToSchema"><value>116</value></property>
|
||||||
|
<property name="targetSchema"><value>117</value></property>
|
||||||
|
<!-- bootstrap view -->
|
||||||
|
<property name="importerBootstrap">
|
||||||
|
<ref bean="spacesBootstrap" />
|
||||||
|
</property>
|
||||||
|
<property name="bootstrapView">
|
||||||
|
<props>
|
||||||
|
<prop key="path">/${spaces.company_home.childname}/${spaces.dictionary.childname}/${spaces.templates.content.childname}</prop>
|
||||||
|
<prop key="location">alfresco/bootstrap/calendar_templates.acp</prop>
|
||||||
|
</props>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
|
</beans>
|
@@ -19,4 +19,4 @@ version.build=@build-number@
|
|||||||
|
|
||||||
# Schema number
|
# Schema number
|
||||||
|
|
||||||
version.schema=115
|
version.schema=117
|
||||||
|
Reference in New Issue
Block a user