mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
Revert to original code structure pre-mavenization
* merges from previous branches are now possible without tree conflicts * added back missing commits when structure was changed (r59445, r59446) .. see RM-765 * updated Maven POM's to use existing code structure * NOTE: r59454 and r59473 may have been missed in this update .. will go back and re-add git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@59491 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -59,14 +59,14 @@
|
||||
<property name="name" value="AuditAdmin"/>
|
||||
<property name="private" value="true"/>
|
||||
<property name="capabilities">
|
||||
<list>
|
||||
<set>
|
||||
<ref bean="rmAccessAuditCapability"/>
|
||||
<ref bean="rmDeclareAuditAsRecordCapability"/>
|
||||
<ref bean="rmDeleteAuditCapability"/>
|
||||
<ref bean="rmEnableDisableAuditByTypesCapability"/>
|
||||
<ref bean="rmExportAuditCapability"/>
|
||||
<ref bean="rmSelectAuditMetadataCapability"/>
|
||||
</list>
|
||||
</set>
|
||||
</property>
|
||||
</bean>
|
||||
|
@@ -84,10 +84,10 @@
|
||||
<property name="name" value="ListAdmin"/>
|
||||
<property name="private" value="true"/>
|
||||
<property name="capabilities">
|
||||
<list>
|
||||
<set>
|
||||
<ref bean="rmCreateAndAssociateSelectionListsCapability"/>
|
||||
<ref bean="rmEditSelectionListsCapability"/>
|
||||
</list>
|
||||
</set>
|
||||
</property>
|
||||
</bean>
|
||||
|
@@ -12,7 +12,7 @@
|
||||
</property>
|
||||
<property name="labels">
|
||||
<list>
|
||||
<value>alfresco/module/org_alfresco_module_rm/dod5015/dod5015-model</value>
|
||||
<value>alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
@@ -21,12 +21,22 @@
|
||||
<bean id="org_alfresco_module_rm_resourceBundles.dod5015" class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
|
||||
<property name="resourceBundles">
|
||||
<list>
|
||||
<value>alfresco.module.org_alfresco_module_rm.dod5015.dod5015</value>
|
||||
<value>alfresco.module.org_alfresco_module_rm.dod5015.messages.dod5015</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- add publication date as a disposition property -->
|
||||
<bean id="disposition.properties.publicationdate" parent="disposition.properties.base">
|
||||
<property name="name" value="dod:publicationDate" />
|
||||
<property name="appliesToFolderLevel" value="false"/>
|
||||
</bean>
|
||||
|
||||
<!-- Include classification capabilities, deprecated for now -->
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/dod5015/dod5015-capabilities-classification-context.xml"/>
|
||||
|
||||
|
||||
<!-- Model behaviour -->
|
||||
<bean id="dod.dod5015RecordAspect" class="org.alfresco.module.org_alfresco_module_rm.dod5015.model.dod.aspect.DOD5015RecordAspect" parent="rm.baseBehaviour">
|
||||
</bean>
|
||||
|
||||
</beans>
|
@@ -26,6 +26,7 @@
|
||||
<namespace uri="http://www.alfresco.org/model/dod5015/1.0" prefix="dod"/>
|
||||
</namespaces>
|
||||
|
||||
<!-- TODO I18N -->
|
||||
<constraints>
|
||||
<constraint name="dod:imageFormatList" type="LIST">
|
||||
<title>Image Formats</title>
|
||||
@@ -56,6 +57,100 @@
|
||||
</types>
|
||||
|
||||
<aspects>
|
||||
|
||||
<!-- DOD5015 Record Properties -->
|
||||
<!-- @since 2.2 -->
|
||||
<aspect name="dod:dod5015record">
|
||||
|
||||
<title>DOD5015 Record</title>
|
||||
<parent>rma:recordMetaData</parent>
|
||||
|
||||
<properties>
|
||||
|
||||
<property name="dod:publicationDate">
|
||||
<title>Publication Date</title>
|
||||
<type>d:date</type>
|
||||
<mandatory>true</mandatory>
|
||||
</property>
|
||||
|
||||
<property name="dod:originator">
|
||||
<title>Originator</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>true</mandatory>
|
||||
<index enabled="true">
|
||||
<atomic>true</atomic>
|
||||
<stored>false</stored>
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
|
||||
<property name="dod:originatingOrganization">
|
||||
<title>Originating Organization</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>true</mandatory>
|
||||
<index enabled="true">
|
||||
<atomic>true</atomic>
|
||||
<stored>false</stored>
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
|
||||
<property name="dod:mediaType">
|
||||
<title>Media Type</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>false</mandatory>
|
||||
<index enabled="true">
|
||||
<atomic>true</atomic>
|
||||
<stored>false</stored>
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
|
||||
<property name="dod:format">
|
||||
<title>Format</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>false</mandatory>
|
||||
<index enabled="true">
|
||||
<atomic>true</atomic>
|
||||
<stored>false</stored>
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
|
||||
<property name="dod:dateReceived">
|
||||
<title>Date Received</title>
|
||||
<type>d:date</type>
|
||||
<mandatory>false</mandatory>
|
||||
</property>
|
||||
|
||||
<!-- TODO
|
||||
Do we need to model this as broken up address?
|
||||
Should we have a separate property for other address or just a multivalue property?
|
||||
-->
|
||||
<property name="dod:address">
|
||||
<title>Addressee</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>false</mandatory>
|
||||
<index enabled="true">
|
||||
<atomic>true</atomic>
|
||||
<stored>false</stored>
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="dod:otherAddress">
|
||||
<title>Other Addressee</title>
|
||||
<type>d:text</type>
|
||||
<mandatory>false</mandatory>
|
||||
<index enabled="true">
|
||||
<atomic>true</atomic>
|
||||
<stored>false</stored>
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
|
||||
</properties>
|
||||
|
||||
</aspect>
|
||||
|
||||
<aspect name="dod:scannedRecord">
|
||||
<title>Scanned Record</title>
|
@@ -2,6 +2,25 @@ dod_dod5015.description=DOD5015 Content Model
|
||||
|
||||
dod_dod5015.type.dod_recordSeries.title=Record Series (Deprecated)
|
||||
dod_dod5015.type.dod_recordSeries.description=Record Series (Deprecated)
|
||||
|
||||
dod_dod5015.aspect.dod_dod5015record.title=DOD5015 Record
|
||||
dod_dod5015.aspect.dod_dod5015record.description=DOD5015 Record
|
||||
dod_dod5015.property.rma_publicationDate.title=Publication Date
|
||||
dod_dod5015.property.rma_publicationDate.decription=Publication Date
|
||||
dod_dod5015.property.rma_originator.title=Originator
|
||||
dod_dod5015.property.rma_originator.decription=Originator
|
||||
dod_dod5015.property.rma_originatingOrganization.title=Originating Organization
|
||||
dod_dod5015.property.rma_originatingOrganization.decription=Originating Organization
|
||||
dod_dod5015.property.rma_mediaType.title=Media Type
|
||||
dod_dod5015.property.rma_mediaType.decription=Media Type
|
||||
dod_dod5015.property.rma_format.title=Format
|
||||
dod_dod5015.property.rma_format.decription=Format
|
||||
dod_dod5015.property.rma_dateReceived.title=Date Received
|
||||
dod_dod5015.property.rma_dateReceived.decription=Date Received
|
||||
dod_dod5015.property.rma_address.title=Addressee
|
||||
dod_dod5015.property.rma_address.decription=Addressee
|
||||
dod_dod5015.property.rma_otherAddress.title=Other Addressee
|
||||
dod_dod5015.property.rma_otherAddress.decription=Other Addressee
|
||||
|
||||
dod_dod5015.aspect.dod_scannedRecord.title=Scanned Record
|
||||
dod_dod5015.aspect.dod_scannedRecord.description=Scanned Record
|
@@ -160,22 +160,6 @@ rma_recordsmanagement.aspect.rma_record.title=Record
|
||||
rma_recordsmanagement.aspect.rma_record.decription=Record
|
||||
rma_recordsmanagement.property.rma_dateFiled.title=Date Filed
|
||||
rma_recordsmanagement.property.rma_dateFiled.decription=Date Filed
|
||||
rma_recordsmanagement.property.rma_publicationDate.title=Publication Date
|
||||
rma_recordsmanagement.property.rma_publicationDate.decription=Publication Date
|
||||
rma_recordsmanagement.property.rma_originator.title=Originator
|
||||
rma_recordsmanagement.property.rma_originator.decription=Originator
|
||||
rma_recordsmanagement.property.rma_originatingOrganization.title=Originating Organization
|
||||
rma_recordsmanagement.property.rma_originatingOrganization.decription=Originating Organization
|
||||
rma_recordsmanagement.property.rma_mediaType.title=Media Type
|
||||
rma_recordsmanagement.property.rma_mediaType.decription=Media Type
|
||||
rma_recordsmanagement.property.rma_format.title=Format
|
||||
rma_recordsmanagement.property.rma_format.decription=Format
|
||||
rma_recordsmanagement.property.rma_dateReceived.title=Date Received
|
||||
rma_recordsmanagement.property.rma_dateReceived.decription=Date Received
|
||||
rma_recordsmanagement.property.rma_address.title=Addressee
|
||||
rma_recordsmanagement.property.rma_address.decription=Addressee
|
||||
rma_recordsmanagement.property.rma_otherAddress.title=Other Addressee
|
||||
rma_recordsmanagement.property.rma_otherAddress.decription=Other Addressee
|
||||
rma_recordsmanagement.property.rma_origionalName=Original Name
|
||||
|
||||
rma_recordsmanagement.aspect.rma_recordMetaData.title=Record Meta-data
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user