mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
RM-765: Remove DOD meta-data from core RM model
* remove DOD meta-date from record aspect * create dod record aspect in dod model to contain dod specific meta-data (modelled as record mate data aspect so can be added manaually and UI reacts accodingly without modification) * automatically add dod record aspect to record when created (maintains status quo for the time being) * allow groups to be automatically added to form UI template when record meta-data found on record (DOD meta-data automatically displayed and editable if present) * add simple module patch frameowrk so RM patches going forward are module schema based (so order and application is predictable) * fix up existing patchs (pre 2.2) so basic order is guarenteed * add patch for DOD data reshuffle * general restructuring of patch configuration and implementations for clarity git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@59943 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
</property>
|
||||
<property name="labels">
|
||||
<list>
|
||||
<value>alfresco/module/org_alfresco_module_rm/dod5015/messages/dod5015-model</value>
|
||||
<value>alfresco/module/org_alfresco_module_rm/dod5015/dod5015-model</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
@@ -21,22 +21,12 @@
|
||||
<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.messages.dod5015</value>
|
||||
<value>alfresco.module.org_alfresco_module_rm.dod5015.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,7 +26,6 @@
|
||||
<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>
|
||||
@@ -57,100 +56,6 @@
|
||||
</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>
|
||||
|
@@ -1,92 +0,0 @@
|
||||
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
|
||||
dod_dod5015.property.dod_scannedFormat.title=Image Format
|
||||
dod_dod5015.property.dod_scannedFormat.description=Image Format
|
||||
dod_dod5015.property.dod_scannedFormatVersion.title=Image Format and Version
|
||||
dod_dod5015.property.dod_scannedFormatVersion.description=Image Format and Version
|
||||
dod_dod5015.property.dod_resolutionX.title=Image Resolution X
|
||||
dod_dod5015.property.dod_resolutionX.description=Image Resolution X
|
||||
dod_dod5015.property.dod_resolutionY.title=Image Resolution Y
|
||||
dod_dod5015.property.dod_resolutionY.description=Image Resolution Y
|
||||
dod_dod5015.property.dod_scannedBitDepth.title=Scanned Bit Depth
|
||||
dod_dod5015.property.dod_scannedBitDepth.description=Scanned Bit Depth
|
||||
|
||||
dod_dod5015.aspect.dod_pdfRecord.title=PDF Record
|
||||
dod_dod5015.aspect.dod_pdfRecord.description=PDF Record
|
||||
dod_dod5015.property.dod_producingApplication.title=Producing Application
|
||||
dod_dod5015.property.dod_producingApplication.description=Producing Application
|
||||
dod_dod5015.property.dod_producingApplicationVersion.title=Producing Application Version
|
||||
dod_dod5015.property.dod_producingApplicationVersion.description=Producing Application Version
|
||||
dod_dod5015.property.dod_pdfVersion.title=PDF Version
|
||||
dod_dod5015.property.dod_pdfVersion.description=PDF Version
|
||||
dod_dod5015.property.dod_creatingApplication.title=Creating Application
|
||||
dod_dod5015.property.dod_creatingApplication.description=Creating Application
|
||||
dod_dod5015.property.dod_documentSecuritySettings.title=Document Security Settings
|
||||
dod_dod5015.property.dod_documentSecuritySettings.description=Document Security Settings
|
||||
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digital Photograph Record
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digital Photograph Record
|
||||
dod_dod5015.property.dod_caption.title=Caption
|
||||
dod_dod5015.property.dod_caption.description=Caption
|
||||
dod_dod5015.property.dod_photographer.title=Photographer
|
||||
dod_dod5015.property.dod_photographer.description=Photographer
|
||||
dod_dod5015.property.dod_copyright.title=Copyright
|
||||
dod_dod5015.property.dod_copyright.description=Copyright
|
||||
dod_dod5015.property.dod_bitDepth.title=Bit Depth
|
||||
dod_dod5015.property.dod_bitDepth.description=Bit Depth
|
||||
dod_dod5015.property.dod_imageSizeX.title=Image Size X
|
||||
dod_dod5015.property.dod_imageSizeX.description=Image Size X
|
||||
dod_dod5015.property.dod_imageSizeY.title=Image Size Y
|
||||
dod_dod5015.property.dod_imageSizeY.description=Image Size Y
|
||||
dod_dod5015.property.dod_imageSource.title=Image Source
|
||||
dod_dod5015.property.dod_imageSource.description=Image Source
|
||||
dod_dod5015.property.dod_compression.title=Compression
|
||||
dod_dod5015.property.dod_compression.description=Compression
|
||||
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM Profile
|
||||
dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM Profile
|
||||
dod_dod5015.property.dod_exifInformation.title=EXIF Information
|
||||
dod_dod5015.property.dod_exifInformation.description=EXIF Information
|
||||
|
||||
dod_dod5015.aspect.dod_webRecord.title=Web Record
|
||||
dod_dod5015.aspect.dod_webRecord.description=Web Record
|
||||
dod_dod5015.property.dod_webFileName.title=Web File Name
|
||||
dod_dod5015.property.dod_webFileName.description=Web File Name
|
||||
dod_dod5015.property.dod_webPlatform.title=Web Platform
|
||||
dod_dod5015.property.dod_webPlatform.description=Web Platform
|
||||
dod_dod5015.property.dod_webSiteName.title=Web Site Name
|
||||
dod_dod5015.property.dod_webSiteName.description=Web Site Name
|
||||
dod_dod5015.property.dod_webSiteURL.title=Web Site URL
|
||||
dod_dod5015.property.dod_webSiteURL.description=Web Site URL
|
||||
dod_dod5015.property.dod_captureMethod.title=Capture Method
|
||||
dod_dod5015.property.dod_captureMethod.description=Capture Method
|
||||
dod_dod5015.property.dod_captureDate.title=Capture Date
|
||||
dod_dod5015.property.dod_captureDate.description=Capture Date
|
||||
dod_dod5015.property.dod_contact.title=Contact
|
||||
dod_dod5015.property.dod_contact.description=Contact
|
||||
dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
|
||||
dod_dod5015.property.dod_contentManagementSystem.description=Content Management System
|
||||
|
@@ -1,73 +0,0 @@
|
||||
dod_dod5015.description=DOD5015 Content Model
|
||||
|
||||
dod_dod5015.type.dod_recordSeries.title=Datensatzserie (veraltet)
|
||||
dod_dod5015.type.dod_recordSeries.description=Datensatzserie (veraltet)
|
||||
|
||||
dod_dod5015.aspect.dod_scannedRecord.title=Eingescannter Datensatz
|
||||
dod_dod5015.aspect.dod_scannedRecord.description=Eingescannter Datensatz
|
||||
dod_dod5015.property.dod_scannedFormat.title=Bildformat
|
||||
dod_dod5015.property.dod_scannedFormat.description=Bildformat
|
||||
dod_dod5015.property.dod_scannedFormatVersion.title=Bildformat und Version
|
||||
dod_dod5015.property.dod_scannedFormatVersion.description=Bildformat und Version
|
||||
dod_dod5015.property.dod_resolutionX.title=Bildaufl\u00f6sung X
|
||||
dod_dod5015.property.dod_resolutionX.description=Bildaufl\u00f6sung X
|
||||
dod_dod5015.property.dod_resolutionY.title=Bildaufl\u00f6sung Y
|
||||
dod_dod5015.property.dod_resolutionY.description=Bildaufl\u00f6sung Y
|
||||
dod_dod5015.property.dod_scannedBitDepth.title=Gescannte Bittiefe
|
||||
dod_dod5015.property.dod_scannedBitDepth.description=Gescannte Bittiefe
|
||||
|
||||
dod_dod5015.aspect.dod_pdfRecord.title=PDF-Datensatz
|
||||
dod_dod5015.aspect.dod_pdfRecord.description=PDF-Datensatz
|
||||
dod_dod5015.property.dod_producingApplication.title=Ausgebende Anwendung
|
||||
dod_dod5015.property.dod_producingApplication.description=Ausgebende Anwendung
|
||||
dod_dod5015.property.dod_producingApplicationVersion.title=Version der ausgebenden Anwendung
|
||||
dod_dod5015.property.dod_producingApplicationVersion.description=Version der ausgebenden Anwendung
|
||||
dod_dod5015.property.dod_pdfVersion.title=PDF-Version
|
||||
dod_dod5015.property.dod_pdfVersion.description=PDF-Version
|
||||
dod_dod5015.property.dod_creatingApplication.title=Erstellende Anwendung
|
||||
dod_dod5015.property.dod_creatingApplication.description=Erstellende Anwendung
|
||||
dod_dod5015.property.dod_documentSecuritySettings.title=Sicherheitseinstellungen des Dokuments
|
||||
dod_dod5015.property.dod_documentSecuritySettings.description=Sicherheitseinstellungen des Dokuments
|
||||
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Digitaler Fotodatensatz
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Digitaler Fotodatensatz
|
||||
dod_dod5015.property.dod_caption.title=Beschriftung
|
||||
dod_dod5015.property.dod_caption.description=Beschriftung
|
||||
dod_dod5015.property.dod_photographer.title=Fotograf
|
||||
dod_dod5015.property.dod_photographer.description=Fotograf
|
||||
dod_dod5015.property.dod_copyright.title=Copyright
|
||||
dod_dod5015.property.dod_copyright.description=Copyright
|
||||
dod_dod5015.property.dod_bitDepth.title=Bittiefe
|
||||
dod_dod5015.property.dod_bitDepth.description=Bittiefe
|
||||
dod_dod5015.property.dod_imageSizeX.title=Bildgr\u00f6\u00dfe X
|
||||
dod_dod5015.property.dod_imageSizeX.description=Bildgr\u00f6\u00dfe X
|
||||
dod_dod5015.property.dod_imageSizeY.title=Bildgr\u00f6\u00dfe Y
|
||||
dod_dod5015.property.dod_imageSizeY.description=Bildgr\u00f6\u00dfe Y
|
||||
dod_dod5015.property.dod_imageSource.title=Bildquelle
|
||||
dod_dod5015.property.dod_imageSource.description=Bildquelle
|
||||
dod_dod5015.property.dod_compression.title=Komprimierung
|
||||
dod_dod5015.property.dod_compression.description=Komprimierung
|
||||
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM-Profil
|
||||
dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM-Profil
|
||||
dod_dod5015.property.dod_exifInformation.title=EXIF-Informationen
|
||||
dod_dod5015.property.dod_exifInformation.description=EXIF-Informationen
|
||||
|
||||
dod_dod5015.aspect.dod_webRecord.title=Webdatensatz
|
||||
dod_dod5015.aspect.dod_webRecord.description=Webdatensatz
|
||||
dod_dod5015.property.dod_webFileName.title=Webdateiname
|
||||
dod_dod5015.property.dod_webFileName.description=Webdateiname
|
||||
dod_dod5015.property.dod_webPlatform.title=Webplattform
|
||||
dod_dod5015.property.dod_webPlatform.description=Webplattform
|
||||
dod_dod5015.property.dod_webSiteName.title=Website-Name
|
||||
dod_dod5015.property.dod_webSiteName.description=Website-Name
|
||||
dod_dod5015.property.dod_webSiteURL.title=Website-URL
|
||||
dod_dod5015.property.dod_webSiteURL.description=Website-URL
|
||||
dod_dod5015.property.dod_captureMethod.title=Erfassungsmethode
|
||||
dod_dod5015.property.dod_captureMethod.description=Erfassungsmethode
|
||||
dod_dod5015.property.dod_captureDate.title=Erfassungsdatum
|
||||
dod_dod5015.property.dod_captureDate.description=Erfassungsdatum
|
||||
dod_dod5015.property.dod_contact.title=Kontakt
|
||||
dod_dod5015.property.dod_contact.description=Kontakt
|
||||
dod_dod5015.property.dod_contentManagementSystem.title=Content Management System
|
||||
dod_dod5015.property.dod_contentManagementSystem.description=Content Management System
|
||||
|
@@ -1,73 +0,0 @@
|
||||
dod_dod5015.description=Modelo de contenido DOD5015
|
||||
|
||||
dod_dod5015.type.dod_recordSeries.title=Series de documentos de archivo (obsoletas)
|
||||
dod_dod5015.type.dod_recordSeries.description=Series de documentos de archivo (obsoletas)
|
||||
|
||||
dod_dod5015.aspect.dod_scannedRecord.title=Documento de archivo escaneado
|
||||
dod_dod5015.aspect.dod_scannedRecord.description=Documento de archivo escaneado
|
||||
dod_dod5015.property.dod_scannedFormat.title=Formato de imagen
|
||||
dod_dod5015.property.dod_scannedFormat.description=Formato de imagen
|
||||
dod_dod5015.property.dod_scannedFormatVersion.title=Formato de imagen y versi\u00f3n
|
||||
dod_dod5015.property.dod_scannedFormatVersion.description=Formato de imagen y versi\u00f3n
|
||||
dod_dod5015.property.dod_resolutionX.title=Resoluci\u00f3n de imagen X
|
||||
dod_dod5015.property.dod_resolutionX.description=Resoluci\u00f3n de imagen X
|
||||
dod_dod5015.property.dod_resolutionY.title=Resoluci\u00f3n de imagen Y
|
||||
dod_dod5015.property.dod_resolutionY.description=Resoluci\u00f3n de imagen Y
|
||||
dod_dod5015.property.dod_scannedBitDepth.title=Profundidad de bits de escaneado
|
||||
dod_dod5015.property.dod_scannedBitDepth.description=Profundidad de bits de escaneado
|
||||
|
||||
dod_dod5015.aspect.dod_pdfRecord.title=Archivo PDF
|
||||
dod_dod5015.aspect.dod_pdfRecord.description=Archivo PDF
|
||||
dod_dod5015.property.dod_producingApplication.title=Produciendo aplicaci\u00f3n
|
||||
dod_dod5015.property.dod_producingApplication.description=Produciendo aplicaci\u00f3n
|
||||
dod_dod5015.property.dod_producingApplicationVersion.title=Produciendo versi\u00f3n de la aplicaci\u00f3n
|
||||
dod_dod5015.property.dod_producingApplicationVersion.description=Produciendo versi\u00f3n de la aplicaci\u00f3n
|
||||
dod_dod5015.property.dod_pdfVersion.title=Versi\u00f3n PDF
|
||||
dod_dod5015.property.dod_pdfVersion.description=Versi\u00f3n PDF
|
||||
dod_dod5015.property.dod_creatingApplication.title=Creando aplicaci\u00f3n
|
||||
dod_dod5015.property.dod_creatingApplication.description=Creando aplicaci\u00f3n
|
||||
dod_dod5015.property.dod_documentSecuritySettings.title=Configuraci\u00f3n de seguridad del documento
|
||||
dod_dod5015.property.dod_documentSecuritySettings.description=Configuraci\u00f3n de seguridad del documento
|
||||
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Documento de archivo fotogr\u00e1fico digital
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Documento de archivo fotogr\u00e1fico digital
|
||||
dod_dod5015.property.dod_caption.title=T\u00edtulo
|
||||
dod_dod5015.property.dod_caption.description=T\u00edtulo
|
||||
dod_dod5015.property.dod_photographer.title=Fot\u00f3grafo
|
||||
dod_dod5015.property.dod_photographer.description=Fot\u00f3grafo
|
||||
dod_dod5015.property.dod_copyright.title=Copyright
|
||||
dod_dod5015.property.dod_copyright.description=Copyright
|
||||
dod_dod5015.property.dod_bitDepth.title=Profundidad de bits
|
||||
dod_dod5015.property.dod_bitDepth.description=Profundidad de bits
|
||||
dod_dod5015.property.dod_imageSizeX.title=Tama\u00f1o de imagen X
|
||||
dod_dod5015.property.dod_imageSizeX.description=Tama\u00f1o de imagen X
|
||||
dod_dod5015.property.dod_imageSizeY.title=Tama\u00f1o de imagen Y
|
||||
dod_dod5015.property.dod_imageSizeY.description=Tama\u00f1o de imagen Y
|
||||
dod_dod5015.property.dod_imageSource.title=Procedencia de la imagen
|
||||
dod_dod5015.property.dod_imageSource.description=Procedencia de la imagen
|
||||
dod_dod5015.property.dod_compression.title=Compresi\u00f3n
|
||||
dod_dod5015.property.dod_compression.description=Compresi\u00f3n
|
||||
dod_dod5015.property.dod_iccIcmProfile.title=Perfil ICC/ICM
|
||||
dod_dod5015.property.dod_iccIcmProfile.description=Perfil ICC/ICM
|
||||
dod_dod5015.property.dod_exifInformation.title=Informaci\u00f3n EXIF
|
||||
dod_dod5015.property.dod_exifInformation.description=Informaci\u00f3n EXIF
|
||||
|
||||
dod_dod5015.aspect.dod_webRecord.title=Documento de archivo web
|
||||
dod_dod5015.aspect.dod_webRecord.description=Documento de archivo web
|
||||
dod_dod5015.property.dod_webFileName.title=Nombre del fichero web
|
||||
dod_dod5015.property.dod_webFileName.description=Nombre del fichero web
|
||||
dod_dod5015.property.dod_webPlatform.title=Plataforma web
|
||||
dod_dod5015.property.dod_webPlatform.description=Plataforma web
|
||||
dod_dod5015.property.dod_webSiteName.title=Nombre del sitio web
|
||||
dod_dod5015.property.dod_webSiteName.description=Nombre del sitio web
|
||||
dod_dod5015.property.dod_webSiteURL.title=URL del sitio web
|
||||
dod_dod5015.property.dod_webSiteURL.description=URL del sitio web
|
||||
dod_dod5015.property.dod_captureMethod.title=M\u00e9todo de captura
|
||||
dod_dod5015.property.dod_captureMethod.description=M\u00e9todo de captura
|
||||
dod_dod5015.property.dod_captureDate.title=Fecha de captura
|
||||
dod_dod5015.property.dod_captureDate.description=Fecha de captura
|
||||
dod_dod5015.property.dod_contact.title=Contacto
|
||||
dod_dod5015.property.dod_contact.description=Contacto
|
||||
dod_dod5015.property.dod_contentManagementSystem.title=Sistema de gesti\u00f3n de contenidos
|
||||
dod_dod5015.property.dod_contentManagementSystem.description=Sistema de gesti\u00f3n de contenidos
|
||||
|
@@ -1,73 +0,0 @@
|
||||
dod_dod5015.description=Mod\u00e8le de contenu DOD5015
|
||||
|
||||
dod_dod5015.type.dod_recordSeries.title=S\u00e9rie de document d'archives (Obsol\u00e8te)
|
||||
dod_dod5015.type.dod_recordSeries.description=S\u00e9rie de document d'archives (Obsol\u00e8te)
|
||||
|
||||
dod_dod5015.aspect.dod_scannedRecord.title=Document d'archives num\u00e9ris\u00e9
|
||||
dod_dod5015.aspect.dod_scannedRecord.description=Document d'archives num\u00e9ris\u00e9
|
||||
dod_dod5015.property.dod_scannedFormat.title=Format d'image
|
||||
dod_dod5015.property.dod_scannedFormat.description=Format d'image
|
||||
dod_dod5015.property.dod_scannedFormatVersion.title=Format et version d'image
|
||||
dod_dod5015.property.dod_scannedFormatVersion.description=Format et version d'mage
|
||||
dod_dod5015.property.dod_resolutionX.title=R\u00e9solution d'image X
|
||||
dod_dod5015.property.dod_resolutionX.description=R\u00e9solution d'image X
|
||||
dod_dod5015.property.dod_resolutionY.title=R\u00e9solution d'image Y
|
||||
dod_dod5015.property.dod_resolutionY.description=R\u00e9solution d'image Y
|
||||
dod_dod5015.property.dod_scannedBitDepth.title=Profondeur de couleur num\u00e9ris\u00e9e
|
||||
dod_dod5015.property.dod_scannedBitDepth.description=Profondeur de couleur num\u00e9ris\u00e9e
|
||||
|
||||
dod_dod5015.aspect.dod_pdfRecord.title=Document d'archives PDF
|
||||
dod_dod5015.aspect.dod_pdfRecord.description=Document d'archives PDF
|
||||
dod_dod5015.property.dod_producingApplication.title=Application de production
|
||||
dod_dod5015.property.dod_producingApplication.description=Application de production
|
||||
dod_dod5015.property.dod_producingApplicationVersion.title=Version de l'application de production
|
||||
dod_dod5015.property.dod_producingApplicationVersion.description=Version de l'application de production
|
||||
dod_dod5015.property.dod_pdfVersion.title=Version PDF
|
||||
dod_dod5015.property.dod_pdfVersion.description=Version PDF
|
||||
dod_dod5015.property.dod_creatingApplication.title=Application de cr\u00e9ation
|
||||
dod_dod5015.property.dod_creatingApplication.description=Application de cr\u00e9ation
|
||||
dod_dod5015.property.dod_documentSecuritySettings.title=Param\u00e8tres de s\u00e9curit\u00e9 de document
|
||||
dod_dod5015.property.dod_documentSecuritySettings.description=Param\u00e8tres de s\u00e9curit\u00e9 de document
|
||||
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Document d'archives de photographie num\u00e9rique
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Document d'archives de photographie num\u00e9rique
|
||||
dod_dod5015.property.dod_caption.title=L\u00e9gende
|
||||
dod_dod5015.property.dod_caption.description=L\u00e9gende
|
||||
dod_dod5015.property.dod_photographer.title=Photographe
|
||||
dod_dod5015.property.dod_photographer.description=Photographe
|
||||
dod_dod5015.property.dod_copyright.title=Copyright
|
||||
dod_dod5015.property.dod_copyright.description=Copyright
|
||||
dod_dod5015.property.dod_bitDepth.title=Profondeur de couleur
|
||||
dod_dod5015.property.dod_bitDepth.description=Profondeur de couleur
|
||||
dod_dod5015.property.dod_imageSizeX.title=Taille d'image X
|
||||
dod_dod5015.property.dod_imageSizeX.description=Taille d'image X
|
||||
dod_dod5015.property.dod_imageSizeY.title=Taille d'image Y
|
||||
dod_dod5015.property.dod_imageSizeY.description=Taille d'image Y
|
||||
dod_dod5015.property.dod_imageSource.title=Source d'image
|
||||
dod_dod5015.property.dod_imageSource.description=Source d'image
|
||||
dod_dod5015.property.dod_compression.title=Compression
|
||||
dod_dod5015.property.dod_compression.description=Compression
|
||||
dod_dod5015.property.dod_iccIcmProfile.title=Profil ICC/ICM
|
||||
dod_dod5015.property.dod_iccIcmProfile.description=Profil ICC/ICM
|
||||
dod_dod5015.property.dod_exifInformation.title=Informations EXIF
|
||||
dod_dod5015.property.dod_exifInformation.description=Informations EXIF
|
||||
|
||||
dod_dod5015.aspect.dod_webRecord.title=Document d'archives Web
|
||||
dod_dod5015.aspect.dod_webRecord.description=Document d'archives Web
|
||||
dod_dod5015.property.dod_webFileName.title=Nom de fichier Web
|
||||
dod_dod5015.property.dod_webFileName.description=Nom de fichier Web
|
||||
dod_dod5015.property.dod_webPlatform.title=Plate-forme Web
|
||||
dod_dod5015.property.dod_webPlatform.description=Plate-forme Web
|
||||
dod_dod5015.property.dod_webSiteName.title=Nom de site Web
|
||||
dod_dod5015.property.dod_webSiteName.description=Nom de site Web
|
||||
dod_dod5015.property.dod_webSiteURL.title=URL de site Web
|
||||
dod_dod5015.property.dod_webSiteURL.description=URL de site Web
|
||||
dod_dod5015.property.dod_captureMethod.title=M\u00e9thode de capture
|
||||
dod_dod5015.property.dod_captureMethod.description=M\u00e9thode de capture
|
||||
dod_dod5015.property.dod_captureDate.title=Date de capture
|
||||
dod_dod5015.property.dod_captureDate.description=Date de capture
|
||||
dod_dod5015.property.dod_contact.title=Contact
|
||||
dod_dod5015.property.dod_contact.description=Contact
|
||||
dod_dod5015.property.dod_contentManagementSystem.title=Syst\u00e8me de gestion du contenu
|
||||
dod_dod5015.property.dod_contentManagementSystem.description=Syst\u00e8me de gestion du contenu
|
||||
|
@@ -1,73 +0,0 @@
|
||||
dod_dod5015.description=Modello di contenuto DOD5015
|
||||
|
||||
dod_dod5015.type.dod_recordSeries.title=Serie di record (obsoleto)
|
||||
dod_dod5015.type.dod_recordSeries.description=Serie di record (obsoleto)
|
||||
|
||||
dod_dod5015.aspect.dod_scannedRecord.title=Record scansionato
|
||||
dod_dod5015.aspect.dod_scannedRecord.description=Record scansionato
|
||||
dod_dod5015.property.dod_scannedFormat.title=Formato immagine
|
||||
dod_dod5015.property.dod_scannedFormat.description=Formato immagine
|
||||
dod_dod5015.property.dod_scannedFormatVersion.title=Formato immagine e versione
|
||||
dod_dod5015.property.dod_scannedFormatVersion.description=Formato immagine e versione
|
||||
dod_dod5015.property.dod_resolutionX.title=Risoluzione immagine X
|
||||
dod_dod5015.property.dod_resolutionX.description=Risoluzione immagine X
|
||||
dod_dod5015.property.dod_resolutionY.title=Risoluzione immagine Y
|
||||
dod_dod5015.property.dod_resolutionY.description=Risoluzione immagine Y
|
||||
dod_dod5015.property.dod_scannedBitDepth.title=Profondit\u00e0 in bit scansionata
|
||||
dod_dod5015.property.dod_scannedBitDepth.description=Profondit\u00e0 in bit scansionata
|
||||
|
||||
dod_dod5015.aspect.dod_pdfRecord.title=Record PDF
|
||||
dod_dod5015.aspect.dod_pdfRecord.description=Record PDF
|
||||
dod_dod5015.property.dod_producingApplication.title=Generazione applicazione
|
||||
dod_dod5015.property.dod_producingApplication.description=Generazione applicazione
|
||||
dod_dod5015.property.dod_producingApplicationVersion.title=Generazione versione applicazione
|
||||
dod_dod5015.property.dod_producingApplicationVersion.description=Generazione versione applicazione
|
||||
dod_dod5015.property.dod_pdfVersion.title=Versione PDF
|
||||
dod_dod5015.property.dod_pdfVersion.description=Versione PDF
|
||||
dod_dod5015.property.dod_creatingApplication.title=Creazione applicazione
|
||||
dod_dod5015.property.dod_creatingApplication.description=Creazione applicazione
|
||||
dod_dod5015.property.dod_documentSecuritySettings.title=Impostazioni di protezione documento
|
||||
dod_dod5015.property.dod_documentSecuritySettings.description=Impostazioni di protezione documento
|
||||
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.title=Record fotografia digitale
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.description=Record fotografia digitale
|
||||
dod_dod5015.property.dod_caption.title=Didascalia
|
||||
dod_dod5015.property.dod_caption.description=Didascalia
|
||||
dod_dod5015.property.dod_photographer.title=Fotografo
|
||||
dod_dod5015.property.dod_photographer.description=Fotografo
|
||||
dod_dod5015.property.dod_copyright.title=Copyright
|
||||
dod_dod5015.property.dod_copyright.description=Copyright
|
||||
dod_dod5015.property.dod_bitDepth.title=Profondit\u00e0 in bit
|
||||
dod_dod5015.property.dod_bitDepth.description=Profondit\u00e0 in bit
|
||||
dod_dod5015.property.dod_imageSizeX.title=Dimensioni immagine X
|
||||
dod_dod5015.property.dod_imageSizeX.description=Dimensioni immagine X
|
||||
dod_dod5015.property.dod_imageSizeY.title=Dimensioni immagine Y
|
||||
dod_dod5015.property.dod_imageSizeY.description=Dimensioni immagine Y
|
||||
dod_dod5015.property.dod_imageSource.title=Origine immagine
|
||||
dod_dod5015.property.dod_imageSource.description=Origine immagine
|
||||
dod_dod5015.property.dod_compression.title=Compressione
|
||||
dod_dod5015.property.dod_compression.description=Compressione
|
||||
dod_dod5015.property.dod_iccIcmProfile.title=Profilo ICC/ICM
|
||||
dod_dod5015.property.dod_iccIcmProfile.description=Profilo ICC/ICM
|
||||
dod_dod5015.property.dod_exifInformation.title=Informazioni EXIF
|
||||
dod_dod5015.property.dod_exifInformation.description=Informazioni EXIF
|
||||
|
||||
dod_dod5015.aspect.dod_webRecord.title=Record Web
|
||||
dod_dod5015.aspect.dod_webRecord.description=Record Web
|
||||
dod_dod5015.property.dod_webFileName.title=Nome file Web
|
||||
dod_dod5015.property.dod_webFileName.description=Nome file Web
|
||||
dod_dod5015.property.dod_webPlatform.title=Piattaforma Web
|
||||
dod_dod5015.property.dod_webPlatform.description=Piattaforma Web
|
||||
dod_dod5015.property.dod_webSiteName.title=Nome sito Web
|
||||
dod_dod5015.property.dod_webSiteName.description=Nome sito Web
|
||||
dod_dod5015.property.dod_webSiteURL.title=URL sito Web
|
||||
dod_dod5015.property.dod_webSiteURL.description=URL sito Web
|
||||
dod_dod5015.property.dod_captureMethod.title=Metodo di acquisizione
|
||||
dod_dod5015.property.dod_captureMethod.description=Metodo di acquisizione
|
||||
dod_dod5015.property.dod_captureDate.title=Data di acquisizione
|
||||
dod_dod5015.property.dod_captureDate.description=Data di acquisizione
|
||||
dod_dod5015.property.dod_contact.title=Contatto
|
||||
dod_dod5015.property.dod_contact.description=Contatto
|
||||
dod_dod5015.property.dod_contentManagementSystem.title=Sistema di gestione dei contenuti
|
||||
dod_dod5015.property.dod_contentManagementSystem.description=Sistema di gestione dei contenuti
|
||||
|
@@ -1,73 +0,0 @@
|
||||
dod_dod5015.description=DOD5015\u30b3\u30f3\u30c6\u30f3\u30c4\u30e2\u30c7\u30eb
|
||||
|
||||
dod_dod5015.type.dod_recordSeries.title=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
|
||||
dod_dod5015.type.dod_recordSeries.description=\u30ec\u30b3\u30fc\u30c9\u30b7\u30ea\u30fc\u30ba\uff08\u975e\u63a8\u5968\uff09
|
||||
|
||||
dod_dod5015.aspect.dod_scannedRecord.title=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.aspect.dod_scannedRecord.description=\u30b9\u30ad\u30e3\u30f3\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.property.dod_scannedFormat.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
|
||||
dod_dod5015.property.dod_scannedFormat.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8
|
||||
dod_dod5015.property.dod_scannedFormatVersion.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
|
||||
dod_dod5015.property.dod_scannedFormatVersion.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3068\u30d0\u30fc\u30b8\u30e7\u30f3
|
||||
dod_dod5015.property.dod_resolutionX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
|
||||
dod_dod5015.property.dod_resolutionX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6X
|
||||
dod_dod5015.property.dod_resolutionY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
|
||||
dod_dod5015.property.dod_resolutionY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u89e3\u50cf\u5ea6Y
|
||||
dod_dod5015.property.dod_scannedBitDepth.title=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
|
||||
dod_dod5015.property.dod_scannedBitDepth.description=\u30b9\u30ad\u30e3\u30f3\u3057\u305f\u30d3\u30c3\u30c8\u6df1\u5ea6
|
||||
|
||||
dod_dod5015.aspect.dod_pdfRecord.title=PDF\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.aspect.dod_pdfRecord.description=PDF\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.property.dod_producingApplication.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
|
||||
dod_dod5015.property.dod_producingApplication.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
|
||||
dod_dod5015.property.dod_producingApplicationVersion.title=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
|
||||
dod_dod5015.property.dod_producingApplicationVersion.description=\u88fd\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u30d0\u30fc\u30b8\u30e7\u30f3
|
||||
dod_dod5015.property.dod_pdfVersion.title=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
|
||||
dod_dod5015.property.dod_pdfVersion.description=PDF\u30d0\u30fc\u30b8\u30e7\u30f3
|
||||
dod_dod5015.property.dod_creatingApplication.title=\u5275\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
|
||||
dod_dod5015.property.dod_creatingApplication.description=\u5275\u4f5c\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3
|
||||
dod_dod5015.property.dod_documentSecuritySettings.title=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
|
||||
dod_dod5015.property.dod_documentSecuritySettings.description=\u6587\u66f8\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u8a2d\u5b9a
|
||||
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.title=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.aspect.dod_digitalPhotographRecord.description=\u30c7\u30b8\u30bf\u30eb\u5199\u771f\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.property.dod_caption.title=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
|
||||
dod_dod5015.property.dod_caption.description=\u30ad\u30e3\u30d7\u30b7\u30e7\u30f3
|
||||
dod_dod5015.property.dod_photographer.title=\u5199\u771f\u5bb6
|
||||
dod_dod5015.property.dod_photographer.description=\u5199\u771f\u5bb6
|
||||
dod_dod5015.property.dod_copyright.title=\u8457\u4f5c\u6a29
|
||||
dod_dod5015.property.dod_copyright.description=\u8457\u4f5c\u6a29
|
||||
dod_dod5015.property.dod_bitDepth.title=\u30d3\u30c3\u30c8\u6df1\u5ea6
|
||||
dod_dod5015.property.dod_bitDepth.description=\u30d3\u30c3\u30c8\u6df1\u5ea6
|
||||
dod_dod5015.property.dod_imageSizeX.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
|
||||
dod_dod5015.property.dod_imageSizeX.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baX
|
||||
dod_dod5015.property.dod_imageSizeY.title=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
|
||||
dod_dod5015.property.dod_imageSizeY.description=\u30a4\u30e1\u30fc\u30b8\u306e\u30b5\u30a4\u30baY
|
||||
dod_dod5015.property.dod_imageSource.title=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
|
||||
dod_dod5015.property.dod_imageSource.description=\u30a4\u30e1\u30fc\u30b8\u30bd\u30fc\u30b9
|
||||
dod_dod5015.property.dod_compression.title=\u5727\u7e2e
|
||||
dod_dod5015.property.dod_compression.description=\u5727\u7e2e
|
||||
dod_dod5015.property.dod_iccIcmProfile.title=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
|
||||
dod_dod5015.property.dod_iccIcmProfile.description=ICC/ICM\u30d7\u30ed\u30d5\u30a1\u30a4\u30eb
|
||||
dod_dod5015.property.dod_exifInformation.title=EXIF\u60c5\u5831
|
||||
dod_dod5015.property.dod_exifInformation.description=EXIF\u60c5\u5831
|
||||
|
||||
dod_dod5015.aspect.dod_webRecord.title=Web\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.aspect.dod_webRecord.description=Web\u30ec\u30b3\u30fc\u30c9
|
||||
dod_dod5015.property.dod_webFileName.title=Web\u30d5\u30a1\u30a4\u30eb\u540d
|
||||
dod_dod5015.property.dod_webFileName.description=Web\u30d5\u30a1\u30a4\u30eb\u540d
|
||||
dod_dod5015.property.dod_webPlatform.title=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
|
||||
dod_dod5015.property.dod_webPlatform.description=Web\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0
|
||||
dod_dod5015.property.dod_webSiteName.title=Web\u30b5\u30a4\u30c8\u540d
|
||||
dod_dod5015.property.dod_webSiteName.description=Web\u30b5\u30a4\u30c8\u540d
|
||||
dod_dod5015.property.dod_webSiteURL.title=Web\u30b5\u30a4\u30c8URL
|
||||
dod_dod5015.property.dod_webSiteURL.description=Web\u30b5\u30a4\u30c8URL
|
||||
dod_dod5015.property.dod_captureMethod.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
|
||||
dod_dod5015.property.dod_captureMethod.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u624b\u6cd5
|
||||
dod_dod5015.property.dod_captureDate.title=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
|
||||
dod_dod5015.property.dod_captureDate.description=\u30ad\u30e3\u30d7\u30c1\u30e3\u65e5
|
||||
dod_dod5015.property.dod_contact.title=\u9023\u7d61\u5148
|
||||
dod_dod5015.property.dod_contact.description=\u9023\u7d61\u5148
|
||||
dod_dod5015.property.dod_contentManagementSystem.title=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
|
||||
dod_dod5015.property.dod_contentManagementSystem.description=\u30b3\u30f3\u30c6\u30f3\u30c4\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0
|
||||
|
@@ -1,8 +0,0 @@
|
||||
# Classified Records Capabilities
|
||||
capability.group.classifiedRecords.title=Classified Records
|
||||
capability.UpdateClassificationDates.title=Update Classification Dates
|
||||
capability.CreateModifyDestroyClassificationGuides.title=Create Modify Destroy Classification Guides
|
||||
capability.UpgradeDowngradeAndDeclassifyRecords.title=Upgrade Downgrade and Declassify Records
|
||||
capability.UpdateExemptionCategories.title=Update Exemption Categories
|
||||
capability.MapClassificationGuideMetadata.title=Map Classification Guide Metadata
|
||||
capability.CreateModifyDestroyTimeframes.title=Create Modify Destroy Time Frames
|
@@ -1,8 +0,0 @@
|
||||
# Classified Records Capabilities
|
||||
capability.group.classifiedRecords.title=Klassifizierte Datens\u00e4tze
|
||||
capability.UpdateClassificationDates.title=Klassifizierungsdaten aktualisieren
|
||||
capability.CreateModifyDestroyClassificationGuides.title=Klassifizierungsleitfaden erstellen/\u00e4ndern/vernichten
|
||||
capability.UpgradeDowngradeAndDeclassifyRecords.title=Datens\u00e4tze h\u00f6her-/herunterstufen und ihre Klassifizierung aufheben
|
||||
capability.UpdateExemptionCategories.title=Ausnahmekategorien aktualisieren
|
||||
capability.MapClassificationGuideMetadata.title=Metadaten f\u00fcr Klassifizierungsleitfaden zuordnen
|
||||
capability.CreateModifyDestroyTimeframes.title=Zeitrahmen erstellen/\u00e4ndern/vernichten
|
@@ -1,8 +0,0 @@
|
||||
# Classified Records Capabilities
|
||||
capability.group.classifiedRecords.title=Documentos de archivo clasificados
|
||||
capability.UpdateClassificationDates.title=Actualizar fechas de clasificaci\u00f3n
|
||||
capability.CreateModifyDestroyClassificationGuides.title=Crear, modificar o destruir gu\u00edas de clasificaci\u00f3n
|
||||
capability.UpgradeDowngradeAndDeclassifyRecords.title=Subir, bajar y desclasificar documentos de archivo
|
||||
capability.UpdateExemptionCategories.title=Actualizar categor\u00edas de exenci\u00f3n
|
||||
capability.MapClassificationGuideMetadata.title=Asignar metadatos de gu\u00eda de clasificaci\u00f3n
|
||||
capability.CreateModifyDestroyTimeframes.title=Crear, modificar o destruir plazos de tiempo
|
@@ -1,8 +0,0 @@
|
||||
# Classified Records Capabilities
|
||||
capability.group.classifiedRecords.title=Documents d'archives classifi\u00e9s
|
||||
capability.UpdateClassificationDates.title=Dates de mise \u00e0 jour des classifications
|
||||
capability.CreateModifyDestroyClassificationGuides.title=Guides de cr\u00e9ation, de modification et de destruction de classification
|
||||
capability.UpgradeDowngradeAndDeclassifyRecords.title=Mettre \u00e0 jour, r\u00e9trograder et d\u00e9classifier des documents d'archives
|
||||
capability.UpdateExemptionCategories.title=Mettre \u00e0 jour des cat\u00e9gories d'exemptions
|
||||
capability.MapClassificationGuideMetadata.title=Mapper les m\u00e9tadonn\u00e9es de guide de classification
|
||||
capability.CreateModifyDestroyTimeframes.title=Cr\u00e9er, modifier, d\u00e9truire des p\u00e9riodes
|
@@ -1,8 +0,0 @@
|
||||
# Classified Records Capabilities
|
||||
capability.group.classifiedRecords.title=Record classificati
|
||||
capability.UpdateClassificationDates.title=Aggiorna date di classificazione
|
||||
capability.CreateModifyDestroyClassificationGuides.title=Crea, modifica, elimina definitivamente le guide di classificazione
|
||||
capability.UpgradeDowngradeAndDeclassifyRecords.title=Aggiorna, esegui downgrade e declassifica record
|
||||
capability.UpdateExemptionCategories.title=Aggiorna categorie di esclusione
|
||||
capability.MapClassificationGuideMetadata.title=Esegui mapping dei metadati delle guide di classificazione
|
||||
capability.CreateModifyDestroyTimeframes.title=Crea, modifica, elimina definitivamente gli intervalli di tempo
|
@@ -1,8 +0,0 @@
|
||||
# Classified Records Capabilities
|
||||
capability.group.classifiedRecords.title=\u5206\u985e\u6e08\u307f\u30ec\u30b3\u30fc\u30c9
|
||||
capability.UpdateClassificationDates.title=\u5206\u985e\u65e5\u306e\u66f4\u65b0
|
||||
capability.CreateModifyDestroyClassificationGuides.title=\u5206\u985e\u30ac\u30a4\u30c9\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
|
||||
capability.UpgradeDowngradeAndDeclassifyRecords.title=\u30ec\u30b3\u30fc\u30c9\u306e\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9/\u30c0\u30a6\u30f3\u30b0\u30ec\u30fc\u30c9/\u5206\u985e\u89e3\u9664
|
||||
capability.UpdateExemptionCategories.title=\u9069\u7528\u9664\u5916\u30ab\u30c6\u30b4\u30ea\u306e\u66f4\u65b0
|
||||
capability.MapClassificationGuideMetadata.title=\u5206\u985e\u30ac\u30a4\u30c9\u30e1\u30bf\u30c7\u30fc\u30bf\u306e\u30de\u30c3\u30d7
|
||||
capability.CreateModifyDestroyTimeframes.title=\u6642\u9593\u67a0\u306e\u4f5c\u6210/\u4fee\u6b63/\u7834\u68c4
|
@@ -4,11 +4,6 @@
|
||||
log4j.logger.org.alfresco.module.org_alfresco_module_rm.caveat=warn
|
||||
log4j.logger.org.alfresco.module.org_alfresco_module_rm.security.RMMethodSecurityPostProcessor=warn
|
||||
|
||||
#
|
||||
# Module patches
|
||||
#
|
||||
log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
|
||||
|
||||
#
|
||||
# RM permission debug
|
||||
#
|
||||
@@ -24,5 +19,10 @@ log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
|
||||
#
|
||||
# Behaviour debug
|
||||
#
|
||||
log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=debug
|
||||
log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=debug
|
||||
log4j.logger.org.alfresco.repo.policy.annotation.AnnotatedBehaviourPostProcessor=info
|
||||
log4j.logger.org.alfresco.module.org_alfresco_module_rm.behaviour.BaseBehaviourBean=info
|
||||
|
||||
#
|
||||
# Patch debug
|
||||
#
|
||||
log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info
|
@@ -160,6 +160,22 @@ 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
|
||||
|
@@ -610,7 +610,6 @@
|
||||
</properties>
|
||||
</aspect>
|
||||
|
||||
<!-- @deprecated as of 2.1 -->
|
||||
<aspect name="rma:recordsManagementRoot">
|
||||
<title>Records Management Root</title>
|
||||
<associations>
|
||||
@@ -733,7 +732,88 @@
|
||||
<title>Original Name</title>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
</property>
|
||||
</property>
|
||||
|
||||
<property name="rma:publicationDate">
|
||||
<title>Publication Date</title>
|
||||
<type>d:date</type>
|
||||
<mandatory>true</mandatory>
|
||||
</property>
|
||||
|
||||
<property name="rma: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="rma: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="rma: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="rma: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="rma: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="rma: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="rma: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>
|
||||
|
||||
|
@@ -24,6 +24,7 @@
|
||||
</props>
|
||||
</list>
|
||||
</property>
|
||||
<property name="modulePatchExecuter" ref="rm.modulePatchExecuter"/>
|
||||
</bean>
|
||||
|
||||
<!-- Bootstap the message property files -->
|
||||
@@ -86,7 +87,7 @@
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/rm-deprecated-context.xml"/>
|
||||
|
||||
<!-- Import the RM module patches -->
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/rm-patch-context.xml"/>
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml"/>
|
||||
|
||||
<!-- Import RM UI evaluators -->
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/rm-ui-evaluators-context.xml"/>
|
||||
|
@@ -0,0 +1,6 @@
|
||||
#
|
||||
# Alfresco Records Management Module Schema Version
|
||||
#
|
||||
# @since 2.2
|
||||
#
|
||||
org_alfresco_module_rm.schema=1000
|
@@ -0,0 +1,44 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||
|
||||
<beans>
|
||||
|
||||
<!-- rm module patch executer -->
|
||||
<bean id="rm.modulePatchExecuter" parent="module.baseComponent" class="org.alfresco.module.org_alfresco_module_rm.patch.ModulePatchExecuterImpl">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="description" value="RM patch executer"/>
|
||||
<property name="sinceVersion" value="2.2"/>
|
||||
<property name="executeOnceOnly" value="false"/>
|
||||
<property name="moduleSchema" value="1003"/>
|
||||
<property name="attributeService" ref="AttributeService" />
|
||||
<property name="dependsOn">
|
||||
<list>
|
||||
<ref bean="org_alfresco_module_rm_bootstrapData" />
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- rm module patch parent bean -->
|
||||
<bean id="rm.parentModulePatch" abstract="true" init-method="init">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="fixesFromSchema" value="0"/>
|
||||
<property name="modulePatchExecuter" ref="rm.modulePatchExecuter"/>
|
||||
<property name="transactionService" ref="transactionService"/>
|
||||
</bean>
|
||||
|
||||
<!-- import patch implementations -->
|
||||
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml"/>
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml"/>
|
||||
<import resource="classpath:alfresco/module/org_alfresco_module_rm/patch/rm-patch-v22-context.xml"/>
|
||||
|
||||
<!-- compatibility beans -->
|
||||
|
||||
<!-- @depracted since 2.2 -->
|
||||
<bean id="rm.baseModulePatch" abstract="true" parent="module.baseComponent" init-method="init">
|
||||
<property name="retryingTransactionHelper" ref="retryingTransactionHelper"/>
|
||||
<property name="behaviourFilter" ref="policyBehaviourFilter" />
|
||||
<property name="modulePatchExecuter" ref="rm.modulePatchExecuter" />
|
||||
</bean>
|
||||
|
||||
</beans>
|
@@ -0,0 +1,66 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||
|
||||
<beans>
|
||||
|
||||
<!-- RM v2.0 Patches -->
|
||||
|
||||
<bean id="org_alfresco_module_rm_notificationTemplatePatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v20.NotificationTemplatePatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_notificationTemplatePatch"/>
|
||||
<property name="description" value="Patches new versions of the notification templates."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
<property name="notificationHelper" ref="recordsManagementNotificationHelper"/>
|
||||
<property name="contentService" ref="ContentService"/>
|
||||
<property name="versionService" ref="VersionService"/>
|
||||
<property name="auditService" ref="AuditService"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2ModelPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v20.RMv2ModelPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2ModelPatch"/>
|
||||
<property name="description" value="Patches the existing RM data for the RM v2.0 model updates."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="patchDAO" ref="patchDAO"/>
|
||||
<property name="nodeDAO" ref="nodeDAO" />
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2FilePlanNodeRefPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v20.RMv2FilePlanNodeRefPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2FilePlanNodeRefPatch"/>
|
||||
<property name="description" value="Patches the existing RM data with the root file plan values."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="patchDAO" ref="patchDAO"/>
|
||||
<property name="nodeDAO" ref="nodeDAO" />
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
<property name="permissionService" ref="PermissionService"/>
|
||||
<property name="filePlanService" ref="FilePlanService" />
|
||||
<property name="filePlanRoleService" ref="filePlanRoleService" />
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2SavedSearchPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v20.RMv2SavedSearchPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2SavedSearchPatch"/>
|
||||
<property name="description" value="Patches the existing saved seaches."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="recordsManagementSearchService" ref="RecordsManagementSearchService" />
|
||||
<property name="siteService" ref="SiteService" />
|
||||
<property name="contentService" ref="ContentService"/>
|
||||
</bean>
|
||||
|
||||
</beans>
|
@@ -3,84 +3,11 @@
|
||||
|
||||
<beans>
|
||||
|
||||
<!-- Base bean definitions -->
|
||||
|
||||
<bean id="rm.baseModulePatch" abstract="true" parent="module.baseComponent">
|
||||
<property name="retryingTransactionHelper" ref="retryingTransactionHelper"/>
|
||||
<property name="behaviourFilter" ref="policyBehaviourFilter" />
|
||||
</bean>
|
||||
|
||||
<bean id="rm.baseCapabilityPatch" abstract="true" parent="rm.baseModulePatch">
|
||||
<property name="filePlanService" ref="FilePlanService"/>
|
||||
<property name="filePlanRoleService" ref="FilePlanRoleService"/>
|
||||
<property name="capabilityService" ref="CapabilityService"/>
|
||||
</bean>
|
||||
|
||||
<!-- RM v2.0 Patches -->
|
||||
|
||||
<bean id="org_alfresco_module_rm_notificationTemplatePatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.NotificationTemplatePatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_notificationTemplatePatch"/>
|
||||
<property name="description" value="Patches new versions of the notification templates."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
<property name="notificationHelper" ref="recordsManagementNotificationHelper"/>
|
||||
<property name="contentService" ref="ContentService"/>
|
||||
<property name="versionService" ref="VersionService"/>
|
||||
<property name="auditService" ref="AuditService"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2ModelPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv2ModelPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2ModelPatch"/>
|
||||
<property name="description" value="Patches the existing RM data for the RM v2.0 model updates."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="patchDAO" ref="patchDAO"/>
|
||||
<property name="nodeDAO" ref="nodeDAO" />
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2FilePlanNodeRefPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv2FilePlanNodeRefPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2FilePlanNodeRefPatch"/>
|
||||
<property name="description" value="Patches the existing RM data with the root file plan values."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="patchDAO" ref="patchDAO"/>
|
||||
<property name="nodeDAO" ref="nodeDAO" />
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
<property name="permissionService" ref="PermissionService"/>
|
||||
<property name="filePlanService" ref="FilePlanService" />
|
||||
<property name="filePlanRoleService" ref="filePlanRoleService" />
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2SavedSearchPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv2SavedSearchPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2SavedSearchPatch"/>
|
||||
<property name="description" value="Patches the existing saved seaches."/>
|
||||
<property name="sinceVersion" value="2.0"/>
|
||||
<property name="appliesFromVersion" value="2.0"/>
|
||||
<property name="recordsManagementSearchService" ref="RecordsManagementSearchService" />
|
||||
<property name="siteService" ref="SiteService" />
|
||||
<property name="contentService" ref="ContentService"/>
|
||||
</bean>
|
||||
|
||||
<!-- RM v2.1 Patches -->
|
||||
|
||||
<bean id="org_alfresco_module_rm_notificationTemplatePatch_v21"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.NotificationTemplatePatch_v21">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.NotificationTemplatePatch_v21">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_notificationTemplatePatch_v21"/>
|
||||
<property name="description" value="Patches new versions of the notification templates."/>
|
||||
@@ -98,7 +25,7 @@
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv21InPlacePatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv21InPlacePatch">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21InPlacePatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21InPlacePatch"/>
|
||||
<property name="description" value="Patches the existing RM data for the RM v2.1 InPlace features."/>
|
||||
@@ -113,20 +40,23 @@
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv21CapabilityPatch"
|
||||
parent="rm.baseCapabilityPatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv21CapabilityPatch">
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21CapabilityPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21CapabilityPatch"/>
|
||||
<property name="description" value="Patches the existing RM data for the RM v2.1 updated capabilities."/>
|
||||
<property name="sinceVersion" value="2.1"/>
|
||||
<property name="appliesFromVersion" value="2.1"/>
|
||||
<property name="filePlanService" ref="FilePlanService"/>
|
||||
<property name="filePlanRoleService" ref="FilePlanRoleService"/>
|
||||
<property name="capabilityService" ref="CapabilityService"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv2RMAdminUserPatch"
|
||||
<bean id="org_alfresco_module_rm_RMv21RMAdminUserPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv2RMAdminUserPatch">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21RMAdminUserPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv2RMAdminUserPatch"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21RMAdminUserPatch"/>
|
||||
<property name="description" value="Adds the global RM admin user to all existing file plans."/>
|
||||
<property name="sinceVersion" value="2.1"/>
|
||||
<property name="appliesFromVersion" value="2.1"/>
|
||||
@@ -139,7 +69,7 @@
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv21RecordInheritancePatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv21RecordInheritancePatch">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21RecordInheritancePatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21RecordInheritancePatch"/>
|
||||
<property name="description" value="Adjust record permission inheritance."/>
|
||||
@@ -154,7 +84,7 @@
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv21RolesPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv21RolesPatch">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21RolesPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21RolesPatch"/>
|
||||
<property name="description" value="Add existing roles to the rm zone."/>
|
||||
@@ -167,7 +97,7 @@
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv21ReportServicePatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv21ReportServicePatch">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21ReportServicePatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21ReportServicePatch"/>
|
||||
<property name="description" value="Add report service templates."/>
|
||||
@@ -179,7 +109,7 @@
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv21BehaviorScriptsPatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv21BehaviorScriptsPatch">
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v21.RMv21BehaviorScriptsPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv21BehaviorScriptsPatch"/>
|
||||
<property name="description" value="Move existing behavior scripts to their dedicated behavior folder, freeing existing scripts folder up for non-behavior RM scripts."/>
|
||||
@@ -188,34 +118,5 @@
|
||||
<property name="fileFolderService" ref="FileFolderService"/>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
</bean>
|
||||
|
||||
<!-- RM v2.2 Patches -->
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv22ReportTemplatePatch"
|
||||
parent="rm.baseModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv22ReportTemplatePatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv22ReportTemplatePatch"/>
|
||||
<property name="description" value="Patches new versions of the report templates."/>
|
||||
<property name="sinceVersion" value="2.2"/>
|
||||
<property name="appliesFromVersion" value="2.2"/>
|
||||
<property name="dependsOn">
|
||||
<list>
|
||||
<ref bean="org_alfresco_module_rm_RMv21ReportServicePatch" />
|
||||
</list>
|
||||
</property>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
<property name="contentService" ref="ContentService"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv22CapabilityPatch"
|
||||
parent="rm.baseCapabilityPatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.RMv22CapabilityPatch">
|
||||
<property name="moduleId" value="org_alfresco_module_rm"/>
|
||||
<property name="name" value="org_alfresco_module_rm_RMv22CapabilityPatch"/>
|
||||
<property name="description" value="Patches the existing RM data for the RM v2.2 updated capabilities."/>
|
||||
<property name="sinceVersion" value="2.2"/>
|
||||
<property name="appliesFromVersion" value="2.2"/>
|
||||
</bean>
|
||||
|
||||
|
||||
</beans>
|
@@ -0,0 +1,40 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
||||
|
||||
<beans>
|
||||
|
||||
<!-- RM v2.2 Patches -->
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv22ReportTemplatePatch"
|
||||
parent="rm.parentModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v22.RMv22ReportTemplatePatch">
|
||||
<property name="description" value="Patches new versions of the report templates."/>
|
||||
<property name="fixesToSchema" value="1000"/>
|
||||
<property name="targetSchema" value="1001"/>
|
||||
<property name="nodeService" ref="NodeService"/>
|
||||
<property name="contentService" ref="ContentService"/>
|
||||
</bean>
|
||||
|
||||
<bean id="org_alfresco_module_rm_RMv22CapabilityPatch"
|
||||
parent="rm.parentModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v22.RMv22CapabilityPatch">
|
||||
<property name="description" value="Patches the existing RM data for the RM v2.2 updated capabilities."/>
|
||||
<property name="fixesToSchema" value="1001"/>
|
||||
<property name="targetSchema" value="1002"/>
|
||||
<property name="filePlanService" ref="FilePlanService"/>
|
||||
<property name="filePlanRoleService" ref="FilePlanRoleService"/>
|
||||
<property name="capabilityService" ref="CapabilityService"/>
|
||||
</bean>
|
||||
|
||||
<bean id="rm.dodModelSeparationModulePatch"
|
||||
parent="rm.parentModulePatch"
|
||||
class="org.alfresco.module.org_alfresco_module_rm.patch.v22.RMv22DODModelSeparationModulePatch">
|
||||
<property name="description" value="DOD model separation module patch"/>
|
||||
<property name="fixesToSchema" value="1002"/>
|
||||
<property name="targetSchema" value="1003"/>
|
||||
<property name="qnameDAO" ref="qnameDAO"/>
|
||||
<property name="patchDAO" ref="patchDAO"/>
|
||||
<property name="nodeDAO" ref="nodeDAO"/>
|
||||
</bean>
|
||||
|
||||
</beans>
|
0
rm-server/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml
Normal file → Executable file
0
rm-server/config/alfresco/module/org_alfresco_module_rm/rm-audit-context.xml
Normal file → Executable file
@@ -33,8 +33,14 @@
|
||||
<property name="appliesToFolderLevel" value="false"/>
|
||||
</bean>
|
||||
|
||||
<bean id="disposition.properties.publicationdate" parent="disposition.properties.base">
|
||||
<property name="name" value="rma:publicationDate" />
|
||||
<property name="appliesToFolderLevel" value="false"/>
|
||||
</bean>
|
||||
|
||||
<bean id="disposition.properties.created" parent="disposition.properties.base">
|
||||
<property name="name" value="cm:created" />
|
||||
<property name="appliesToRecordLevel" value="false"/>
|
||||
</bean>
|
||||
|
||||
</beans>
|
Reference in New Issue
Block a user