mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
Moved data-model master into its own directory
This commit is contained in:
@@ -0,0 +1,195 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
||||
http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<!-- ================================================================== -->
|
||||
<!-- = This context is only used to run DataModel specific tests = -->
|
||||
<!-- = It is not, and must not, be included in the repository context = -->
|
||||
<!-- ================================================================== -->
|
||||
|
||||
<!-- Core and miscellaneous bean definitions -->
|
||||
|
||||
<!-- -->
|
||||
<!-- I18N -->
|
||||
<!-- -->
|
||||
|
||||
<bean id="resourceBundles" class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
|
||||
<property name="resourceBundles">
|
||||
<list>
|
||||
<value>alfresco.messages.dictionary-messages</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<!-- -->
|
||||
<!-- Data Dictionary -->
|
||||
<!-- -->
|
||||
|
||||
<!-- Constraint Registry -->
|
||||
<bean id="cm:constraintRegistry" class="org.alfresco.repo.dictionary.constraint.ConstraintRegistry" />
|
||||
|
||||
<alias name="dictionaryDAO" alias="namespaceDAO"/>
|
||||
|
||||
<bean name="prefixesCache" class="org.alfresco.repo.cache.MemoryCache" />
|
||||
|
||||
<bean id="dictionaryDAO" class="org.alfresco.repo.dictionary.DictionaryDAOImpl" init-method="init">
|
||||
<property name="tenantService">
|
||||
<ref bean="tenantService"/>
|
||||
</property>
|
||||
<property name="dictionaryRegistryCache">
|
||||
<ref bean="compiledModelsCache"/>
|
||||
</property>
|
||||
<property name="defaultAnalyserResourceBundleName">
|
||||
<value>${lucene.defaultAnalyserResourceBundleName}</value>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="threadFactory" class="org.alfresco.util.TraceableThreadFactory">
|
||||
<property name="threadDaemon" value="true" />
|
||||
<property name="threadPriority" value="5" />
|
||||
</bean>
|
||||
|
||||
<bean id="handler" class="java.util.concurrent.ThreadPoolExecutor$CallerRunsPolicy"/>
|
||||
<bean id="workQueue" class="java.util.concurrent.LinkedBlockingQueue" />
|
||||
<bean id="timeUnit" class="java.util.concurrent.TimeUnit" factory-method="valueOf">
|
||||
<constructor-arg value="SECONDS" />
|
||||
</bean>
|
||||
|
||||
<bean id="threadPoolExecutor" class="org.alfresco.util.DynamicallySizedThreadPoolExecutor">
|
||||
<constructor-arg value="20"/>
|
||||
<constructor-arg value="20"/>
|
||||
<constructor-arg value="90"/>
|
||||
<constructor-arg ref="timeUnit"/>
|
||||
<constructor-arg ref="workQueue"/>
|
||||
<constructor-arg ref="threadFactory"/>
|
||||
<constructor-arg ref="handler"/>
|
||||
</bean>
|
||||
|
||||
<bean id="asynchronouslyRefreshedCacheRegistry" class="org.alfresco.util.cache.DefaultAsynchronouslyRefreshedCacheRegistry" />
|
||||
|
||||
<bean id="compiledModelsCache" class="org.alfresco.repo.dictionary.CompiledModelsCache" >
|
||||
<property name="dictionaryDAO" ref="dictionaryDAO" />
|
||||
<property name="tenantService" ref="tenantService" />
|
||||
<property name="registry" ref="asynchronouslyRefreshedCacheRegistry" />
|
||||
<property name="threadPoolExecutor" ref="threadPoolExecutor" />
|
||||
</bean>
|
||||
|
||||
<bean name="messageLookup" class="org.alfresco.repo.i18n.StaticMessageLookup" />
|
||||
|
||||
<bean id="dictionaryService" class="org.alfresco.repo.dictionary.DictionaryComponent" depends-on="dictionaryBootstrap">
|
||||
<property name="dictionaryDAO">
|
||||
<ref bean="dictionaryDAO" />
|
||||
</property>
|
||||
<property name="messageLookup">
|
||||
<ref bean="messageLookup" />
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="namespaceService" class="org.alfresco.repo.dictionary.DictionaryNamespaceComponent"
|
||||
depends-on="dictionaryDAO">
|
||||
<property name="namespaceDAO">
|
||||
<ref bean="namespaceDAO" />
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="dictionaryModelBootstrap" class="org.alfresco.repo.dictionary.DictionaryBootstrap" init-method="bootstrap" abstract="true">
|
||||
<property name="dictionaryDAO"><ref bean="dictionaryDAO"/></property>
|
||||
<property name="tenantService">
|
||||
<ref bean="tenantService"/>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="resourceBundles">
|
||||
<property name="models">
|
||||
<list>
|
||||
<!-- System models -->
|
||||
<value>alfresco/model/dictionaryModel.xml</value>
|
||||
</list>
|
||||
</property>
|
||||
<property name="labels">
|
||||
<list>
|
||||
<value>alfresco/messages/dictionary-model</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="tenantService" class="org.alfresco.repo.tenant.SingleTServiceImpl" />
|
||||
|
||||
<!-- Characterset decoder -->
|
||||
<bean id="charset.finder" class="org.alfresco.repo.content.encoding.ContentCharsetFinder">
|
||||
<property name="defaultCharset">
|
||||
<value>UTF-8</value>
|
||||
</property>
|
||||
<property name="mimetypeService">
|
||||
<ref bean="mimetypeService"/>
|
||||
</property>
|
||||
<property name="charactersetFinders">
|
||||
<list>
|
||||
<bean class="org.alfresco.encoding.GuessEncodingCharsetFinder" />
|
||||
<bean class="org.alfresco.encoding.TikaCharsetFinder" />
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="mimetypeService" class="org.alfresco.repo.content.MimetypeMap" init-method="init" >
|
||||
<property name="configService">
|
||||
<ref bean="mimetypeConfigService" />
|
||||
</property>
|
||||
<property name="contentCharsetFinder">
|
||||
<ref bean="charset.finder"/>
|
||||
</property>
|
||||
<property name="jsonObjectMapper" ref="mimetypeServiceJsonObjectMapper" />
|
||||
</bean>
|
||||
|
||||
<bean id="mimetypeServiceJsonObjectMapper" class="com.fasterxml.jackson.databind.ObjectMapper" />
|
||||
|
||||
<bean id="mimetypeConfigService" class="org.springframework.extensions.config.xml.XMLConfigService" init-method="init">
|
||||
<constructor-arg>
|
||||
<bean class="org.springframework.extensions.config.source.UrlConfigSource">
|
||||
<constructor-arg>
|
||||
<list>
|
||||
<value>classpath:alfresco/mimetype/mimetype-map.xml</value>
|
||||
<value>classpath:alfresco/mimetype/mimetype-map-openoffice.xml</value>
|
||||
</list>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
</constructor-arg>
|
||||
</bean>
|
||||
|
||||
<!-- -->
|
||||
<!-- CMIS Data Dictionary -->
|
||||
<!-- -->
|
||||
|
||||
<bean id="OpenCMISDictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
|
||||
<property name="models">
|
||||
<list>
|
||||
<value>alfresco/model/cmisModel.xml</value>
|
||||
</list>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="OpenCMISPropertyLuceneBuilderMapping" class="org.alfresco.opencmis.mapping.RuntimePropertyLuceneBuilderMapping" >
|
||||
<property name="dictionaryService" ref="dictionaryService" />
|
||||
<property name="cmisDictionaryService" ref="OpenCMISDictionaryService" />
|
||||
</bean>
|
||||
|
||||
<bean name="immutableSingletonCache" class="org.alfresco.repo.cache.MemoryCache" />
|
||||
|
||||
<bean id="OpenCMISDictionaryService" class="org.alfresco.opencmis.dictionary.CMISStrictDictionaryService" init-method="init">
|
||||
<property name="cmisMapping" ref="OpenCMISMapping" />
|
||||
<property name="dictionaryService" ref="dictionaryService" />
|
||||
<property name="dictionaryDAO" ref="dictionaryDAO" />
|
||||
<property name="singletonCache" ref="immutableSingletonCache"/>
|
||||
<property name="propertyLuceneBuilderMapping" ref="OpenCMISPropertyLuceneBuilderMapping" />
|
||||
<property name="tenantService" ref="tenantService" />
|
||||
</bean>
|
||||
|
||||
<bean id="OpenCMISMapping" class="org.alfresco.opencmis.mapping.CMISMapping" >
|
||||
<property name="cmisVersion" value="CMIS_1_0" />
|
||||
<property name="dictionaryService" ref="dictionaryService" />
|
||||
<property name="namespaceService" ref="namespaceService" />
|
||||
</bean>
|
||||
|
||||
</beans>
|
@@ -0,0 +1,90 @@
|
||||
# Dictionary-related messages
|
||||
|
||||
d_dictionary.model.err.no_model=Model ''{0}'' does not exist
|
||||
d_dictionary.model.err.type_not_found=Failed to create anonymous type as specified type {0} not found
|
||||
d_dictionary.model.err.aspect_not_found=Failed to create anonymous type as specified aspect {0} not found
|
||||
d_dictionary.model.err.duplicate_constraint_on_model=Found duplicate constraint definition ''{0}'' within model ''{1}''
|
||||
d_dictionary.model.err.parse.failure=Failed to parse model
|
||||
d_dictionary.model.err.create_m2model.failure=Failed to create M2 Model
|
||||
|
||||
d_dictionary.constraint.err.cyclic_ref=Constraint ''{0}'' is part of a cyclic reference of constraints
|
||||
d_dictionary.constraint.err.type_and_ref=Constraint ''{0}'' cannot have a ''type'' and be a ''reference'' attribute
|
||||
d_dictionary.constraint.err.type_or_ref=Constraint ''{0}'' must have either a ''type'' or a ''reference'' attribute
|
||||
d_dictionary.constraint.err.ref_not_found=Constraint reference ''{0}'' not found on constraint ''{1}''
|
||||
d_dictionary.constraint.err.anon_needs_property=Anonymous constraints can only be declared within the context of a property
|
||||
d_dictionary.constraint.err.invalid_type=Constraint type ''{0}'' on constraint ''{1}'' is not a well-known type or a valid Constraint implementation
|
||||
d_dictionary.constraint.err.property_simple_and_list=Constraint ''{0}'' has both a simple and list value for property ''{1}''
|
||||
d_dictionary.constraint.err.construct_failure=Failed to construct an instance of type ''{0}'' for constraint ''{1}''
|
||||
d_dictionary.constraint.err.property_mismatch=Property mismatch setting property ''{0}'' on constraint ''{1}''
|
||||
d_dictionary.constraint.err.reserved_property=Property ''{0}'' is reserved and can''t be set on constraint ''{1}''.
|
||||
d_dictionary.constraint.err.property_not_set=Property ''{0}'' has not been set on constraint ''{1}''
|
||||
d_dictionary.constraint.err.evaluate_exception=Exception during evaluation of constraint ''{0}'': {1}
|
||||
d_dictionary.constraint.err.namespace_not_defined=Cannot define constraint ''{0}'' as namespace ''{1}'' is not defined by model ''{2}''
|
||||
|
||||
d_dictionary.property.err.property_type_not_specified=Property type of property ''{0}'' must be specified
|
||||
d_dictionary.property.err.property_type_not_found=Property type ''{0}'' of property ''{1}'' is not found
|
||||
d_dictionary.property.err.single_valued_content=Content properties must be single-valued
|
||||
d_dictionary.property.err.duplicate_constraint_on_property=Found duplicate constraint definition ''{0}'' within property ''{1}''
|
||||
d_dictionary.property.err.cannot_relax_mandatory=Cannot relax mandatory attribute of property ''{0}
|
||||
d_dictionary.property.err.cannot_relax_mandatory_enforcement=Cannot relax mandatory attribute enforcement of property ''{0}
|
||||
|
||||
d_dictionary.constraint.registered.not_registered=There is no constraint registered by name ''{0}''.
|
||||
|
||||
d_dictionary.constraint.regex.no_match=Value ''{0}'' does not match regular expression: {1}
|
||||
d_dictionary.constraint.regex.match=Value ''{0}'' matches regular expression: {1}
|
||||
d_dictionary.constraint.regex.error.cm\:filename=Value ''{0}'' is not valid as a file name. This property must be a valid file name.
|
||||
|
||||
d_dictionary.constraint.numeric_range.invalid_min_value=Invalid ''minValue'' property: {0}
|
||||
d_dictionary.constraint.numeric_range.invalid_max_value=Invalid ''maxValue'' property: {0}
|
||||
d_dictionary.constraint.numeric_range.non_numeric=Property value could not be converted to a double: {0}
|
||||
d_dictionary.constraint.numeric_range.out_of_range=Numeric value ''{0}'' is not in range [{1}; {2}]
|
||||
|
||||
d_dictionary.constraint.string_length.invalid_min_length=Invalid ''minLength'' property: {0}
|
||||
d_dictionary.constraint.string_length.invalid_max_length=Invalid ''maxLength'' property: {0}
|
||||
d_dictionary.constraint.string_length.non_string=Property value could not be converted to a String: {0}
|
||||
d_dictionary.constraint.string_length.invalid_length=String length of ''{0}'' is not in range [{1}; {2}]
|
||||
|
||||
d_dictionary.constraint.list_of_values.no_values=The list of allowed values is empty
|
||||
d_dictionary.constraint.list_of_values.non_string=Property value could not be converted to a String: {0}
|
||||
d_dictionary.constraint.list_of_values.invalid_value=The value is not an allowed value: {0}
|
||||
|
||||
d_dictionary.constraint.user_name.invalid_user_name=The value ''{0}'' is not an allowed user name: it is an authority of type: {1}
|
||||
d_dictionary.constraint.user_name.non_string=Property value could not be converted to a String: {0}
|
||||
|
||||
d_dictionary.constraint.authority_name.invalid_authority_name=The value ''{0}'' is not an allowed authority name: it is an authority of type: {1}
|
||||
d_dictionary.constraint.authority_name.non_string=Property value could not be converted to a String: {0}
|
||||
|
||||
d_dictionary.model_diff.element_type.unknown=Unknown element type ''{0}''
|
||||
d_dictionary.model_diff.diff_type.unknown=Unknown diff type ''{0}''
|
||||
|
||||
d_dictionary.compiled_model.err.compile.failure=Failed to compile model ''{0}''
|
||||
d_dictionary.compiled_model.err.duplicate_property_type=Found duplicate property type definition ''{0}''
|
||||
d_dictionary.compiled_model.err.duplicate_type=Found duplicate ''class'' definition. The ''type'' name ''{0}'' is already in use as a ''type'' or ''aspect'' name
|
||||
d_dictionary.compiled_model.err.duplicate_aspect=Found duplicate ''class'' definition. The ''aspect'' name ''{0}'' is already in use as a ''type'' or ''aspect'' name
|
||||
d_dictionary.compiled_model.err.duplicate_constraint=Found duplicate constraint definition ''{0}''
|
||||
d_dictionary.compiled_model.err.cyclic_ref=Class ''{0}'' is a part of a cyclic reference within model ''{1}''
|
||||
|
||||
d_dictionary.association.target_class_not_specified=Target class of association ''{0}'' must be specified
|
||||
d_dictionary.association.target_class_not_found=Target class ''{0}'' of association ''{1}'' is not found
|
||||
|
||||
d_dictionary.class_definition.class.namespace_not_defined=Cannot define class ''{0}'' as namespace ''{1}'' is not defined by model ''{2}''
|
||||
d_dictionary.class_definition.class.parent_not_found=Parent class ''{0}'' of class ''{1}'' is not found
|
||||
d_dictionary.class_definition.property.namespace_not_defined=Cannot define property ''{0}'' as namespace ''{1}'' is not defined by model ''{2}''
|
||||
d_dictionary.class_definition.property_not_exist=Class ''{0}'' attempting to override property ''{1}'' which does not exist
|
||||
d_dictionary.class_definition.association.namespace_not_defined=Cannot define association ''{0}'' as namespace ''{1}'' is not defined by model ''{2}''
|
||||
d_dictionary.class_definition.duplicate.property_definition=Found duplicate property definition ''{0}'' within class ''{1}''
|
||||
d_dictionary.class_definition.duplicate.property_existing_def=Found duplicate property definition ''{0}'' within class ''{1}'' and class ''{2}''
|
||||
d_dictionary.class_definition.duplicate.property_and_property_override=Found duplicate property and property override definition ''{0}'' within class ''{1}''
|
||||
d_dictionary.class_definition.duplicate.property_override_definition=Found duplicate property override definition ''{0}'' within class ''{1}''
|
||||
d_dictionary.class_definition.duplicate.association_definition=Found duplicate association definition ''{0}'' within class ''{1}''
|
||||
d_dictionary.class_definition.duplicate.association_existing_def=Found duplicate association definition ''{0}'' within class ''{1}'' and class ''{2}''
|
||||
d_dictionary.class_definition.duplicate.property_in_class_hierarchy=Duplicate property definition ''{0}'' found in class hierarchy of ''{1}''
|
||||
d_dictionary.class_definition.duplicate.association_in_class_hierarchy=Duplicate association definition ''{0}'' found in class hierarchy of ''{1}''
|
||||
d_dictionary.class_definition.mandatory_aspect_not_found=Mandatory aspect ''{0}'' of class ''{1}'' is not found
|
||||
|
||||
d_dictionary.bootstrap.model_not_found=Could not find bootstrap model ''{0}''
|
||||
d_dictionary.bootstrap.model_not_imported=Could not import bootstrap model ''{0}''
|
||||
|
||||
d_dictionary.data_type.namespace_not_defined=Cannot define data type ''{0}'' as namespace ''{1}'' is not defined by model ''{2}''
|
||||
d_dictionary.data_type.java_class_not_specified=Java class of data type ''{0}'' must be specified
|
||||
d_dictionary.data_type.java_class_invalid=Java class ''{0}'' of data type ''{1}'' is invalid
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Alfresco Dictionary Model
|
||||
|
||||
d_dictionary.datatype.d_any.title=Any
|
||||
d_dictionary.datatype.d_any.description=Any
|
||||
d_dictionary.datatype.d_text.title=Text
|
||||
d_dictionary.datatype.d_text.description=Text
|
||||
d_dictionary.datatype.d_content.title=Content
|
||||
d_dictionary.datatype.d_content.description=Content
|
||||
d_dictionary.datatype.d_int.title=Integer
|
||||
d_dictionary.datatype.d_int.description=Integer
|
||||
d_dictionary.datatype.d_long.title=Long
|
||||
d_dictionary.datatype.d_long.description=Long
|
||||
d_dictionary.datatype.d_float.title=Float
|
||||
d_dictionary.datatype.d_float.description=Float
|
||||
d_dictionary.datatype.d_double.title=Double
|
||||
d_dictionary.datatype.d_double.description=Double
|
||||
d_dictionary.datatype.d_date.title=Date
|
||||
d_dictionary.datatype.d_date.description=Date
|
||||
d_dictionary.datatype.d_datetime.title=Date and Time
|
||||
d_dictionary.datatype.d_datetime.description=Date and Time
|
||||
d_dictionary.datatype.d_boolean.title=Boolean
|
||||
d_dictionary.datatype.d_boolean.description=Boolean
|
||||
d_dictionary.datatype.d_qname.title=Qualified Name
|
||||
d_dictionary.datatype.d_qname.description=Qualified Name
|
||||
d_dictionary.datatype.d_guid.title=Unique Identifier
|
||||
d_dictionary.datatype.d_guid.description=Unique Identifier
|
||||
d_dictionary.datatype.d_category.title=Category
|
||||
d_dictionary.datatype.d_category.description=Category
|
||||
d_dictionary.datatype.d_noderef.title=Reference
|
||||
d_dictionary.datatype.d_noderef.description=Reference
|
||||
d_dictionary.datatype.d_path.title=Path
|
||||
d_dictionary.datatype.d_path.description=Path
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Modell f\u00fcr Alfresco W\u00f6rterbuch
|
||||
|
||||
d_dictionary.datatype.d_any.title=Jede
|
||||
d_dictionary.datatype.d_any.description=Jede
|
||||
d_dictionary.datatype.d_text.title=Text
|
||||
d_dictionary.datatype.d_text.description=Text
|
||||
d_dictionary.datatype.d_content.title=Inhalt
|
||||
d_dictionary.datatype.d_content.description=Inhalt
|
||||
d_dictionary.datatype.d_int.title=Integer
|
||||
d_dictionary.datatype.d_int.description=Integer
|
||||
d_dictionary.datatype.d_long.title=Long
|
||||
d_dictionary.datatype.d_long.description=Long
|
||||
d_dictionary.datatype.d_float.title=Float
|
||||
d_dictionary.datatype.d_float.description=Float
|
||||
d_dictionary.datatype.d_double.title=Double
|
||||
d_dictionary.datatype.d_double.description=Double
|
||||
d_dictionary.datatype.d_date.title=Datum
|
||||
d_dictionary.datatype.d_date.description=Datum
|
||||
d_dictionary.datatype.d_datetime.title=Datum und Uhrzeit
|
||||
d_dictionary.datatype.d_datetime.description=Datum und Uhrzeit
|
||||
d_dictionary.datatype.d_boolean.title=Boolesch
|
||||
d_dictionary.datatype.d_boolean.description=Boolesch
|
||||
d_dictionary.datatype.d_qname.title=Qualifizierter Name
|
||||
d_dictionary.datatype.d_qname.description=Qualifizierter Name
|
||||
d_dictionary.datatype.d_guid.title=Eindeutiger Identifikator
|
||||
d_dictionary.datatype.d_guid.description=Eindeutiger Identifikator
|
||||
d_dictionary.datatype.d_category.title=Kategorie
|
||||
d_dictionary.datatype.d_category.description=Kategorie
|
||||
d_dictionary.datatype.d_noderef.title=Referenz
|
||||
d_dictionary.datatype.d_noderef.description=Referenz
|
||||
d_dictionary.datatype.d_path.title=Pfad
|
||||
d_dictionary.datatype.d_path.description=Pfad
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Modelo de diccionario Alfresco
|
||||
|
||||
d_dictionary.datatype.d_any.title=Cualquiera
|
||||
d_dictionary.datatype.d_any.description=Cualquiera
|
||||
d_dictionary.datatype.d_text.title=Texto
|
||||
d_dictionary.datatype.d_text.description=Texto
|
||||
d_dictionary.datatype.d_content.title=Contenido
|
||||
d_dictionary.datatype.d_content.description=Contenido
|
||||
d_dictionary.datatype.d_int.title=Entero
|
||||
d_dictionary.datatype.d_int.description=Entero
|
||||
d_dictionary.datatype.d_long.title=Entero largo
|
||||
d_dictionary.datatype.d_long.description=Entero largo
|
||||
d_dictionary.datatype.d_float.title=Coma flotante
|
||||
d_dictionary.datatype.d_float.description=Coma flotante
|
||||
d_dictionary.datatype.d_double.title=Doble precisi\u00f3n
|
||||
d_dictionary.datatype.d_double.description=Doble precisi\u00f3n
|
||||
d_dictionary.datatype.d_date.title=Fecha
|
||||
d_dictionary.datatype.d_date.description=Fecha
|
||||
d_dictionary.datatype.d_datetime.title=Fecha y hora
|
||||
d_dictionary.datatype.d_datetime.description=Fecha y hora
|
||||
d_dictionary.datatype.d_boolean.title=Booleano
|
||||
d_dictionary.datatype.d_boolean.description=Booleano
|
||||
d_dictionary.datatype.d_qname.title=Nombre cualificado
|
||||
d_dictionary.datatype.d_qname.description=Nombre cualificado
|
||||
d_dictionary.datatype.d_guid.title=Identificador \u00fanico
|
||||
d_dictionary.datatype.d_guid.description=Identificador \u00fanico
|
||||
d_dictionary.datatype.d_category.title=Categor\u00eda
|
||||
d_dictionary.datatype.d_category.description=Categor\u00eda
|
||||
d_dictionary.datatype.d_noderef.title=Referencia
|
||||
d_dictionary.datatype.d_noderef.description=Referencia
|
||||
d_dictionary.datatype.d_path.title=Ruta
|
||||
d_dictionary.datatype.d_path.description=Ruta
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Mod\u00e8le de dictionnaire Alfresco
|
||||
|
||||
d_dictionary.datatype.d_any.title=Tout
|
||||
d_dictionary.datatype.d_any.description=Tout
|
||||
d_dictionary.datatype.d_text.title=Texte
|
||||
d_dictionary.datatype.d_text.description=Texte
|
||||
d_dictionary.datatype.d_content.title=Contenu
|
||||
d_dictionary.datatype.d_content.description=Contenu
|
||||
d_dictionary.datatype.d_int.title=Nombre entier
|
||||
d_dictionary.datatype.d_int.description=Nombre entier
|
||||
d_dictionary.datatype.d_long.title=Nombre Long
|
||||
d_dictionary.datatype.d_long.description=Nombre Long
|
||||
d_dictionary.datatype.d_float.title=Nombre d\u00e9cimal
|
||||
d_dictionary.datatype.d_float.description=Nombre d\u00e9cimal
|
||||
d_dictionary.datatype.d_double.title=Nombre Double
|
||||
d_dictionary.datatype.d_double.description=Nombre Double
|
||||
d_dictionary.datatype.d_date.title=Date
|
||||
d_dictionary.datatype.d_date.description=Date
|
||||
d_dictionary.datatype.d_datetime.title=Date et heure
|
||||
d_dictionary.datatype.d_datetime.description=Date et heure
|
||||
d_dictionary.datatype.d_boolean.title=Bool\u00e9en
|
||||
d_dictionary.datatype.d_boolean.description=Bool\u00e9en
|
||||
d_dictionary.datatype.d_qname.title=Nom Qualifi\u00e9
|
||||
d_dictionary.datatype.d_qname.description=Nom Qualifi\u00e9
|
||||
d_dictionary.datatype.d_guid.title=Identifiant Unique
|
||||
d_dictionary.datatype.d_guid.description=Identifiant Unique
|
||||
d_dictionary.datatype.d_category.title=Cat\u00e9gorie
|
||||
d_dictionary.datatype.d_category.description=Cat\u00e9gorie
|
||||
d_dictionary.datatype.d_noderef.title=R\u00e9f\u00e9rence
|
||||
d_dictionary.datatype.d_noderef.description=R\u00e9f\u00e9rence
|
||||
d_dictionary.datatype.d_path.title=Chemin
|
||||
d_dictionary.datatype.d_path.description=Chemin
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Modello di dizionario Alfresco
|
||||
|
||||
d_dictionary.datatype.d_any.title=Qualsiasi
|
||||
d_dictionary.datatype.d_any.description=Qualsiasi
|
||||
d_dictionary.datatype.d_text.title=Testo
|
||||
d_dictionary.datatype.d_text.description=Testo
|
||||
d_dictionary.datatype.d_content.title=Contenuto
|
||||
d_dictionary.datatype.d_content.description=Contenuto
|
||||
d_dictionary.datatype.d_int.title=Intero
|
||||
d_dictionary.datatype.d_int.description=Intero
|
||||
d_dictionary.datatype.d_long.title=Long
|
||||
d_dictionary.datatype.d_long.description=Long
|
||||
d_dictionary.datatype.d_float.title=Float
|
||||
d_dictionary.datatype.d_float.description=Float
|
||||
d_dictionary.datatype.d_double.title=Double
|
||||
d_dictionary.datatype.d_double.description=Double
|
||||
d_dictionary.datatype.d_date.title=Data
|
||||
d_dictionary.datatype.d_date.description=Data
|
||||
d_dictionary.datatype.d_datetime.title=Data e ora
|
||||
d_dictionary.datatype.d_datetime.description=Data e ora
|
||||
d_dictionary.datatype.d_boolean.title=Booleano
|
||||
d_dictionary.datatype.d_boolean.description=Booleano
|
||||
d_dictionary.datatype.d_qname.title=Nome qualificato
|
||||
d_dictionary.datatype.d_qname.description=Nome qualificato
|
||||
d_dictionary.datatype.d_guid.title=Identificativo unico
|
||||
d_dictionary.datatype.d_guid.description=Identificativo unico
|
||||
d_dictionary.datatype.d_category.title=Categoria
|
||||
d_dictionary.datatype.d_category.description=Categoria
|
||||
d_dictionary.datatype.d_noderef.title=Riferimento
|
||||
d_dictionary.datatype.d_noderef.description=Riferimento
|
||||
d_dictionary.datatype.d_path.title=Percorso
|
||||
d_dictionary.datatype.d_path.description=Percorso
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Alfresco\u30c7\u30a3\u30af\u30b7\u30e7\u30ca\u30ea\u30e2\u30c7\u30eb
|
||||
|
||||
d_dictionary.datatype.d_any.title=\u4efb\u610f
|
||||
d_dictionary.datatype.d_any.description=\u4efb\u610f
|
||||
d_dictionary.datatype.d_text.title=\u30c6\u30ad\u30b9\u30c8
|
||||
d_dictionary.datatype.d_text.description=\u30c6\u30ad\u30b9\u30c8
|
||||
d_dictionary.datatype.d_content.title=\u30b3\u30f3\u30c6\u30f3\u30c4
|
||||
d_dictionary.datatype.d_content.description=\u30b3\u30f3\u30c6\u30f3\u30c4
|
||||
d_dictionary.datatype.d_int.title=\u6574\u6570
|
||||
d_dictionary.datatype.d_int.description=\u6574\u6570
|
||||
d_dictionary.datatype.d_long.title=\u9577\u6574\u6570
|
||||
d_dictionary.datatype.d_long.description=\u9577\u6574\u6570
|
||||
d_dictionary.datatype.d_float.title=\u6d6e\u52d5\u5c0f\u6570
|
||||
d_dictionary.datatype.d_float.description=\u6d6e\u52d5\u5c0f\u6570
|
||||
d_dictionary.datatype.d_double.title=\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570
|
||||
d_dictionary.datatype.d_double.description=\u500d\u7cbe\u5ea6\u6d6e\u52d5\u5c0f\u6570
|
||||
d_dictionary.datatype.d_date.title=\u65e5\u4ed8
|
||||
d_dictionary.datatype.d_date.description=\u65e5\u4ed8
|
||||
d_dictionary.datatype.d_datetime.title=\u65e5\u6642
|
||||
d_dictionary.datatype.d_datetime.description=\u65e5\u6642
|
||||
d_dictionary.datatype.d_boolean.title=\u8ad6\u7406\u578b
|
||||
d_dictionary.datatype.d_boolean.description=\u8ad6\u7406\u578b
|
||||
d_dictionary.datatype.d_qname.title=\u4fee\u98fe\u540d
|
||||
d_dictionary.datatype.d_qname.description=\u4fee\u98fe\u540d
|
||||
d_dictionary.datatype.d_guid.title=\u4e00\u610f\u8b58\u5225\u5b50
|
||||
d_dictionary.datatype.d_guid.description=\u4e00\u610f\u8b58\u5225\u5b50
|
||||
d_dictionary.datatype.d_category.title=\u30ab\u30c6\u30b4\u30ea
|
||||
d_dictionary.datatype.d_category.description=\u30ab\u30c6\u30b4\u30ea
|
||||
d_dictionary.datatype.d_noderef.title=\u53c2\u7167
|
||||
d_dictionary.datatype.d_noderef.description=\u53c2\u7167
|
||||
d_dictionary.datatype.d_path.title=\u30d1\u30b9
|
||||
d_dictionary.datatype.d_path.description=\u30d1\u30b9
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Alfresco-ordlistemodell
|
||||
|
||||
d_dictionary.datatype.d_any.title=Enhver
|
||||
d_dictionary.datatype.d_any.description=Enhver
|
||||
d_dictionary.datatype.d_text.title=Tekst
|
||||
d_dictionary.datatype.d_text.description=Tekst
|
||||
d_dictionary.datatype.d_content.title=Innhold
|
||||
d_dictionary.datatype.d_content.description=Innhold
|
||||
d_dictionary.datatype.d_int.title=Heltall
|
||||
d_dictionary.datatype.d_int.description=Heltall
|
||||
d_dictionary.datatype.d_long.title=Lang
|
||||
d_dictionary.datatype.d_long.description=Lang
|
||||
d_dictionary.datatype.d_float.title=Flyt
|
||||
d_dictionary.datatype.d_float.description=Flyt
|
||||
d_dictionary.datatype.d_double.title=Dobbel
|
||||
d_dictionary.datatype.d_double.description=Dobbel
|
||||
d_dictionary.datatype.d_date.title=Dato
|
||||
d_dictionary.datatype.d_date.description=Dato
|
||||
d_dictionary.datatype.d_datetime.title=Dato og klokkeslett
|
||||
d_dictionary.datatype.d_datetime.description=Dato og klokkeslett
|
||||
d_dictionary.datatype.d_boolean.title=Boolsk
|
||||
d_dictionary.datatype.d_boolean.description=Boolsk
|
||||
d_dictionary.datatype.d_qname.title=Kvalifisert navn
|
||||
d_dictionary.datatype.d_qname.description=Kvalifisert navn
|
||||
d_dictionary.datatype.d_guid.title=Unik identifikator
|
||||
d_dictionary.datatype.d_guid.description=Unik identifikator
|
||||
d_dictionary.datatype.d_category.title=Kategori
|
||||
d_dictionary.datatype.d_category.description=Kategori
|
||||
d_dictionary.datatype.d_noderef.title=Referanse
|
||||
d_dictionary.datatype.d_noderef.description=Referanse
|
||||
d_dictionary.datatype.d_path.title=Bane
|
||||
d_dictionary.datatype.d_path.description=Bane
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Alfresco-woordenboekmodel
|
||||
|
||||
d_dictionary.datatype.d_any.title=Willekeurig
|
||||
d_dictionary.datatype.d_any.description=Willekeurig
|
||||
d_dictionary.datatype.d_text.title=Tekst
|
||||
d_dictionary.datatype.d_text.description=Tekst
|
||||
d_dictionary.datatype.d_content.title=Content
|
||||
d_dictionary.datatype.d_content.description=Content
|
||||
d_dictionary.datatype.d_int.title=Integer
|
||||
d_dictionary.datatype.d_int.description=Integer
|
||||
d_dictionary.datatype.d_long.title=Long
|
||||
d_dictionary.datatype.d_long.description=Long
|
||||
d_dictionary.datatype.d_float.title=Float
|
||||
d_dictionary.datatype.d_float.description=Float
|
||||
d_dictionary.datatype.d_double.title=Double
|
||||
d_dictionary.datatype.d_double.description=Double
|
||||
d_dictionary.datatype.d_date.title=Datum
|
||||
d_dictionary.datatype.d_date.description=Datum
|
||||
d_dictionary.datatype.d_datetime.title=Datum en tijd
|
||||
d_dictionary.datatype.d_datetime.description=Datum en tijd
|
||||
d_dictionary.datatype.d_boolean.title=Boolean
|
||||
d_dictionary.datatype.d_boolean.description=Boolean
|
||||
d_dictionary.datatype.d_qname.title=Gekwalificeerde naam
|
||||
d_dictionary.datatype.d_qname.description=Gekwalificeerde naam
|
||||
d_dictionary.datatype.d_guid.title=Unieke id
|
||||
d_dictionary.datatype.d_guid.description=Unieke id
|
||||
d_dictionary.datatype.d_category.title=Categorie
|
||||
d_dictionary.datatype.d_category.description=Categorie
|
||||
d_dictionary.datatype.d_noderef.title=Verwijzing
|
||||
d_dictionary.datatype.d_noderef.description=Verwijzing
|
||||
d_dictionary.datatype.d_path.title=Pad
|
||||
d_dictionary.datatype.d_path.description=Pad
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Modelo de dicion\u00e1rio do Alfresco
|
||||
|
||||
d_dictionary.datatype.d_any.title=Qualquer
|
||||
d_dictionary.datatype.d_any.description=Qualquer
|
||||
d_dictionary.datatype.d_text.title=Texto
|
||||
d_dictionary.datatype.d_text.description=Texto
|
||||
d_dictionary.datatype.d_content.title=Conte\u00fado
|
||||
d_dictionary.datatype.d_content.description=Conte\u00fado
|
||||
d_dictionary.datatype.d_int.title=Inteiro
|
||||
d_dictionary.datatype.d_int.description=Inteiro
|
||||
d_dictionary.datatype.d_long.title=Longo
|
||||
d_dictionary.datatype.d_long.description=Longo
|
||||
d_dictionary.datatype.d_float.title=Flutuante
|
||||
d_dictionary.datatype.d_float.description=Flutuante
|
||||
d_dictionary.datatype.d_double.title=Duplo
|
||||
d_dictionary.datatype.d_double.description=Duplo
|
||||
d_dictionary.datatype.d_date.title=Data
|
||||
d_dictionary.datatype.d_date.description=Data
|
||||
d_dictionary.datatype.d_datetime.title=Data e hora
|
||||
d_dictionary.datatype.d_datetime.description=Data e hora
|
||||
d_dictionary.datatype.d_boolean.title=Booleano
|
||||
d_dictionary.datatype.d_boolean.description=Booleano
|
||||
d_dictionary.datatype.d_qname.title=Nome qualificado
|
||||
d_dictionary.datatype.d_qname.description=Nome qualificado
|
||||
d_dictionary.datatype.d_guid.title=Identificador exclusivo
|
||||
d_dictionary.datatype.d_guid.description=Identificador exclusivo
|
||||
d_dictionary.datatype.d_category.title=Categoria
|
||||
d_dictionary.datatype.d_category.description=Categoria
|
||||
d_dictionary.datatype.d_noderef.title=Refer\u00eancia
|
||||
d_dictionary.datatype.d_noderef.description=Refer\u00eancia
|
||||
d_dictionary.datatype.d_path.title=Caminho
|
||||
d_dictionary.datatype.d_path.description=Caminho
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=\u041c\u043e\u0434\u0435\u043b\u044c \u0441\u043b\u043e\u0432\u0430\u0440\u044f Alfresco
|
||||
|
||||
d_dictionary.datatype.d_any.title=\u041b\u044e\u0431\u043e\u0439
|
||||
d_dictionary.datatype.d_any.description=\u041b\u044e\u0431\u043e\u0439
|
||||
d_dictionary.datatype.d_text.title=\u0422\u0435\u043a\u0441\u0442
|
||||
d_dictionary.datatype.d_text.description=\u0422\u0435\u043a\u0441\u0442
|
||||
d_dictionary.datatype.d_content.title=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435
|
||||
d_dictionary.datatype.d_content.description=\u0421\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435
|
||||
d_dictionary.datatype.d_int.title=Integer
|
||||
d_dictionary.datatype.d_int.description=Integer
|
||||
d_dictionary.datatype.d_long.title=Long
|
||||
d_dictionary.datatype.d_long.description=Long
|
||||
d_dictionary.datatype.d_float.title=Float
|
||||
d_dictionary.datatype.d_float.description=Float
|
||||
d_dictionary.datatype.d_double.title=Double
|
||||
d_dictionary.datatype.d_double.description=Double
|
||||
d_dictionary.datatype.d_date.title=\u0414\u0430\u0442\u0430
|
||||
d_dictionary.datatype.d_date.description=\u0414\u0430\u0442\u0430
|
||||
d_dictionary.datatype.d_datetime.title=\u0414\u0430\u0442\u0430 \u0438 \u0432\u0440\u0435\u043c\u044f
|
||||
d_dictionary.datatype.d_datetime.description=\u0414\u0430\u0442\u0430 \u0438 \u0432\u0440\u0435\u043c\u044f
|
||||
d_dictionary.datatype.d_boolean.title=Boolean
|
||||
d_dictionary.datatype.d_boolean.description=Boolean
|
||||
d_dictionary.datatype.d_qname.title=\u041f\u043e\u043b\u043d\u043e\u0435 \u0438\u043c\u044f
|
||||
d_dictionary.datatype.d_qname.description=\u041f\u043e\u043b\u043d\u043e\u0435 \u0438\u043c\u044f
|
||||
d_dictionary.datatype.d_guid.title=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
|
||||
d_dictionary.datatype.d_guid.description=\u0423\u043d\u0438\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440
|
||||
d_dictionary.datatype.d_category.title=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f
|
||||
d_dictionary.datatype.d_category.description=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f
|
||||
d_dictionary.datatype.d_noderef.title=\u0421\u0441\u044b\u043b\u043a\u0430
|
||||
d_dictionary.datatype.d_noderef.description=\u0421\u0441\u044b\u043b\u043a\u0430
|
||||
d_dictionary.datatype.d_path.title=\u041f\u0443\u0442\u044c
|
||||
d_dictionary.datatype.d_path.description=\u041f\u0443\u0442\u044c
|
@@ -0,0 +1,34 @@
|
||||
# Display labels for Dictionary Model
|
||||
|
||||
d_dictionary.description=Alfresco \u5b57\u5178\u6a21\u578b
|
||||
|
||||
d_dictionary.datatype.d_any.title=\u4efb\u4f55
|
||||
d_dictionary.datatype.d_any.description=\u4efb\u4f55
|
||||
d_dictionary.datatype.d_text.title=\u6587\u672c
|
||||
d_dictionary.datatype.d_text.description=\u6587\u672c
|
||||
d_dictionary.datatype.d_content.title=\u5185\u5bb9
|
||||
d_dictionary.datatype.d_content.description=\u5185\u5bb9
|
||||
d_dictionary.datatype.d_int.title=\u6574\u6570
|
||||
d_dictionary.datatype.d_int.description=\u6574\u6570
|
||||
d_dictionary.datatype.d_long.title=\u957f\u6574\u578b
|
||||
d_dictionary.datatype.d_long.description=\u957f\u6574\u578b
|
||||
d_dictionary.datatype.d_float.title=\u6d6e\u70b9\u578b
|
||||
d_dictionary.datatype.d_float.description=\u6d6e\u70b9\u578b
|
||||
d_dictionary.datatype.d_double.title=\u53cc\u7cbe\u5ea6
|
||||
d_dictionary.datatype.d_double.description=\u53cc\u7cbe\u5ea6
|
||||
d_dictionary.datatype.d_date.title=\u65e5\u671f
|
||||
d_dictionary.datatype.d_date.description=\u65e5\u671f
|
||||
d_dictionary.datatype.d_datetime.title=\u65e5\u671f\u548c\u65f6\u95f4
|
||||
d_dictionary.datatype.d_datetime.description=\u65e5\u671f\u548c\u65f6\u95f4
|
||||
d_dictionary.datatype.d_boolean.title=\u5e03\u5c14\u503c
|
||||
d_dictionary.datatype.d_boolean.description=\u5e03\u5c14\u503c
|
||||
d_dictionary.datatype.d_qname.title=\u9650\u5b9a\u540d\u79f0
|
||||
d_dictionary.datatype.d_qname.description=\u9650\u5b9a\u540d\u79f0
|
||||
d_dictionary.datatype.d_guid.title=\u552f\u4e00\u6807\u8bc6\u7b26
|
||||
d_dictionary.datatype.d_guid.description=\u552f\u4e00\u6807\u8bc6\u7b26
|
||||
d_dictionary.datatype.d_category.title=\u7c7b\u522b
|
||||
d_dictionary.datatype.d_category.description=\u7c7b\u522b
|
||||
d_dictionary.datatype.d_noderef.title=\u5f15\u7528
|
||||
d_dictionary.datatype.d_noderef.description=\u5f15\u7528
|
||||
d_dictionary.datatype.d_path.title=\u8def\u5f84
|
||||
d_dictionary.datatype.d_path.description=\u8def\u5f84
|
@@ -0,0 +1,101 @@
|
||||
<alfresco-config area="mimetype-map">
|
||||
|
||||
<config evaluator="string-compare" condition="Mimetype Map">
|
||||
<mimetypes>
|
||||
|
||||
<!-- Open Office 2.x / Open Document -->
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.text" display="OpenDocument Text (OpenOffice 2.0)">
|
||||
<extension>odt</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.text-template" display="OpenDocument Text Template">
|
||||
<extension>ott</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.text-web" display="HTML Document Template">
|
||||
<extension>oth</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.text-master" display="OpenDocument Master Document">
|
||||
<extension>odm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.graphics" display="OpenDocument Drawing">
|
||||
<extension>odg</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.graphics-template" display="OpenDocument Drawing Template">
|
||||
<extension>otg</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.presentation" display="OpenDocument Presentation">
|
||||
<extension>odp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.presentation-template" display="OpenDocument Presentation Template">
|
||||
<extension>otp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.spreadsheet" display="OpenDocument Spreadsheet">
|
||||
<extension>ods</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.spreadsheet-template" display="OpenDocument Spreadsheet Template">
|
||||
<extension>ots</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.chart" display="OpenDocument Chart">
|
||||
<extension>odc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.formula" display="OpenDocument Formula">
|
||||
<extension>odf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.database" display="OpenDocument Database">
|
||||
<extension>odb</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.oasis.opendocument.image" display="OpenDocument Image">
|
||||
<extension>odi</extension>
|
||||
</mimetype>
|
||||
|
||||
<!-- OpenOffice 1.0 / StarOffice 6.0 -->
|
||||
<mimetype mimetype="application/vnd.sun.xml.calc" display="OpenOffice 1.0/StarOffice6.0 Calc 6.0">
|
||||
<extension>sxc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.sun.xml.calc.template" display="OpenOffice 1.0/StarOffice6.0 Calc 6.0 Template">
|
||||
<extension>stc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.sun.xml.draw" display="OpenOffice 1.0/StarOffice6.0 Draw 6.0">
|
||||
<extension>sxd</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.sun.xml.impress" display="OpenOffice 1.0/StarOffice6.0 Impress 6.0">
|
||||
<extension>sxi</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.sun.xml.impress.template" display="OpenOffice 1.0/StarOffice6.0 Impress 6.0 Template">
|
||||
<extension>sti</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.sun.xml.writer" display="OpenOffice 1.0/StarOffice6.0 Writer 6.0">
|
||||
<extension>sxw</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.sun.xml.writer.template" display="OpenOffice 1.0/StarOffice6.0 Writer 6.0 Template">
|
||||
<extension>stw</extension>
|
||||
</mimetype>
|
||||
|
||||
<!-- StarOffice 5.x -->
|
||||
<mimetype mimetype="application/vnd.stardivision.draw" display="StarDraw 5.x">
|
||||
<extension>sda</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.calc" display="StarCalc 5.x">
|
||||
<extension>sdc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.impress" display="StarImpress 5.x">
|
||||
<extension>sdd</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.impress-packed" display="StarImpress Packed 5.x">
|
||||
<extension>sdp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.chart" display="StaChart 5.x">
|
||||
<extension>sds</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.writer" display="StarWriter 5.x">
|
||||
<extension>sdw</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.writer-global" display="StarWriter 5.x global">
|
||||
<extension>sgl</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.stardivision.math" display="StarMath 5.x">
|
||||
<extension>smf</extension>
|
||||
</mimetype>
|
||||
</mimetypes>
|
||||
</config>
|
||||
|
||||
</alfresco-config>
|
641
data-model/src/main/resources/alfresco/mimetype/mimetype-map.xml
Normal file
641
data-model/src/main/resources/alfresco/mimetype/mimetype-map.xml
Normal file
@@ -0,0 +1,641 @@
|
||||
<alfresco-config area="mimetype-map">
|
||||
|
||||
<config evaluator="string-compare" condition="Mimetype Map">
|
||||
<mimetypes>
|
||||
|
||||
<mimetype mimetype="application/json" display="JSON">
|
||||
<extension default="true">json</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/eps" display="EPS Type PostScript">
|
||||
<extension default="true">eps</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="image/jp2" display="JPEG 2000 Image">
|
||||
<extension default="true">jp2</extension>
|
||||
<extension>jpx</extension>
|
||||
<extension>jpm</extension>
|
||||
<extension>jpc</extension>
|
||||
<extension>j2k</extension>
|
||||
<extension>jpf</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/vnd.ms-project" display="Microsoft Project">
|
||||
<extension default="true">mpp</extension>
|
||||
<extension>mpt</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="image/vnd.adobe.photoshop" display="Adobe Photoshop">
|
||||
<extension default="true">psd</extension>
|
||||
</mimetype>
|
||||
<!-- Legacy, no longer used -->
|
||||
<!--
|
||||
<mimetype mimetype="application/photoshop" display="Adobe Photoshop">
|
||||
</mimetype>
|
||||
-->
|
||||
|
||||
<mimetype mimetype="image/vnd.adobe.premiere" display="Adobe Premiere">
|
||||
<extension default="true">ppj</extension>
|
||||
<extension>prproj</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="audio/vnd.adobe.soundbooth" display="Adobe SoundBooth">
|
||||
<extension default="true">asnd</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/vnd.adobe.aftereffects.project" display="Adobe AfterEffects Project">
|
||||
<extension default="true">aep</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.adobe.aftereffects.template" display="Adobe AfterEffects Template">
|
||||
<extension default="true">aet</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/framemaker" display="Adobe FrameMaker">
|
||||
<extension default="true">fm</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/pagemaker" display="Adobe PageMaker">
|
||||
<extension default="true">pmd</extension>
|
||||
<extension>pm6</extension>
|
||||
<extension>p65</extension>
|
||||
<extension>pm</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/remote-printing" display="Printer Text File">
|
||||
<extension default="true">prn</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="text/plain" text="true" display="Plain Text">
|
||||
<extension display="Plain Text" default="true">txt</extension>
|
||||
<extension display="SQL">sql</extension>
|
||||
<extension display="Java Properties">properties</extension>
|
||||
<extension display="FreeMarker Template">ftl</extension>
|
||||
<extension display="Initialization Values">ini</extension>
|
||||
<extension display="Windows Batch Script">bat</extension>
|
||||
<extension display="Unix Shell Script">sh</extension>
|
||||
<extension display="Log">log</extension>
|
||||
<extension display="RTE File">rte</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/csv" text="true" display="Comma Separated Values (CSV)">
|
||||
<extension default="true">csv</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/html" text="true" display="HTML">
|
||||
<!-- first extension will be default unless otherwise specified -->
|
||||
<extension default="true">html</extension>
|
||||
<extension>htm</extension>
|
||||
<extension>shtml</extension>
|
||||
<extension>body</extension>
|
||||
<extension display="XSD">xsd</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/mediawiki" text="true" display="MediaWiki Markup">
|
||||
<extension display="MediaWiki Markup" default="true">mw</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/xhtml+xml" text="true" display="XHTML">
|
||||
<extension default="true">xhtml</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/postscript" display="PostScript">
|
||||
<!-- extension display will be same as mimetype's unless specified otherwise -->
|
||||
<extension default="true">ps</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/illustrator" display="Adobe Illustrator File">
|
||||
<extension default="true">ai</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/x-aiff" display="AIFF Audio">
|
||||
<extension>aiff</extension>
|
||||
<extension>aif</extension>
|
||||
<extension>aifc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/acp" display="Alfresco Content Package">
|
||||
<extension>acp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.visio" display="Microsoft Visio">
|
||||
<extension default="true">vsd</extension>
|
||||
<extension>vss</extension>
|
||||
<extension>vst</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.visio2013" display="Microsoft Visio 2013">
|
||||
<extension>vsdx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-visio.drawing.macroenabled.main+xml" display="Microsoft Visio macro-enabled drawing">
|
||||
<extension>vsdm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-visio.stencil.main+xml" display="Microsoft Visio stencil">
|
||||
<extension>vssx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-visio.stencil.macroenabled.main+xml" display="Microsoft Visio macro-enabled stencil">
|
||||
<extension>vssm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-visio.template.main+xml" display="Microsoft Visio template">
|
||||
<extension>vstx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-visio.template.macroenabled.main+xml" display="Microsoft Visio macro-enabled template">
|
||||
<extension>vstm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.adobe.xdp+xml" display="Adobe Acrobat XML Data Package">
|
||||
<extension>xdp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/basic" display="Basic Audio">
|
||||
<extension>au</extension>
|
||||
<extension>snd</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="video/ogg" display="Ogg Video">
|
||||
<extension default="true">ogv</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/ogg" display="Ogg Audio">
|
||||
<extension default="true">oga</extension>
|
||||
<extension>spx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/vorbis" display="Ogg Vorbis Audio">
|
||||
<extension default="true">ogg</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/ogg" display="Ogg Multiplex">
|
||||
<extension default="true">ogx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/x-flac" display="FLAC Audio">
|
||||
<extension default="true">flac</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="video/webm" display="WebM Video">
|
||||
<extension>webm</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="video/x-msvideo" display="MS Video">
|
||||
<extension>avi</extension>
|
||||
<extension>qvi</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/x-ms-asf" display="MS ASF Streaming Video">
|
||||
<extension>asf</extension>
|
||||
<extension>asx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/x-ms-wmv" display="MS WMV Streaming Video">
|
||||
<extension>wmv</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/x-ms-wma" display="MS WMA Streaming Audio">
|
||||
<extension>wma</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/x-rad-screenplay" display="RAD Screen Display">
|
||||
<extension>avx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-bcpio" display="">
|
||||
<extension>bcpio</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/octet-stream" display="Binary File (Octet Stream)">
|
||||
<extension display="Binary">bin</extension>
|
||||
<extension display="Binary Executable">exe</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-dosexec" display="Binary File">
|
||||
<extension display="Binary Executable">exe</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-netcdf" display="">
|
||||
<extension>cdf</extension>
|
||||
<extension>nc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-x509-ca-cert" display="">
|
||||
<extension>cer</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/cgm" display="CGM Image">
|
||||
<extension>cgm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/java" text="true" display="Java Class">
|
||||
<extension>class</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-cpio" display="">
|
||||
<extension>cpio</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-csh" display="">
|
||||
<extension>csh</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/css" text="true" display="Style Sheet">
|
||||
<extension>css</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/wordperfect" display="WordPerfect">
|
||||
<extension>wpd</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/xml" text="true" display="XML">
|
||||
<extension default="true">xml</extension>
|
||||
<extension display="DTD">dtd</extension>
|
||||
<extension display="XSLT">xslt</extension>
|
||||
<extension display="XSLT">xsl</extension>
|
||||
<extension display="XSD">xsd</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-dvi" display="">
|
||||
<extension>dvi</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/x-setext" text="true" display="">
|
||||
<extension>etx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/gif" display="GIF Image">
|
||||
<extension>gif</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-gtar" display="GZIP Tarball">
|
||||
<extension>gtar</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-gzip" display="GZIP">
|
||||
<extension>gzip</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-hdf" display="">
|
||||
<extension>hdf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/mac-binhex40" display="">
|
||||
<extension>hqx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/calendar" text="true" display="iCalendar File">
|
||||
<extension>ics</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/ief" display="IEF Image">
|
||||
<extension>ief</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/bmp" display="Bitmap Image">
|
||||
<extension>bmp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/jpeg" display="JPEG Image">
|
||||
<extension default="true">jpg</extension>
|
||||
<extension>jpeg</extension>
|
||||
<extension>jpe</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/svg+xml" display="Scalable Vector Graphics Image">
|
||||
<extension>svg</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-adobe" display="Adobe Digital Negative Image">
|
||||
<extension>dng</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-hasselblad" display="Hasselblad RAW Image">
|
||||
<extension>3fr</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-fuji" display="Fuji RAW Image">
|
||||
<extension>raf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-canon" display="Canon RAW Image">
|
||||
<extension default="true">cr2</extension>
|
||||
<extension>crw</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-kodak" display="Kodak RAW Image">
|
||||
<extension>k25</extension>
|
||||
<extension>kdc</extension>
|
||||
<extension>dcs</extension>
|
||||
<extension>drf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-minolta" display="Minolta RAW Image">
|
||||
<extension>mrw</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-nikon" display="Nikon RAW Image">
|
||||
<extension default="true">nef</extension>
|
||||
<extension>nrw</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-olympus" display="Olympus RAW Image">
|
||||
<extension>orf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-pentax" display="Pentax RAW Image">
|
||||
<extension default="true">pef</extension>
|
||||
<extension>ptx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-sony" display="Sony RAW Image">
|
||||
<extension default="true">arw</extension>
|
||||
<extension>srf</extension>
|
||||
<extension>sr2</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-sigma" display="Sigma RAW Image">
|
||||
<extension>x3f</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-panasonic" display="Panasonic RAW Image">
|
||||
<extension>rw2</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-leica" display="Leica RAW Image">
|
||||
<extension>rwl</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-raw-red" display="RED RAW Image">
|
||||
<extension>r3d</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-javascript" text="true" display="JavaScript">
|
||||
<extension>js</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-latex" text="true" display="LaTeX">
|
||||
<extension>latex</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-troff-man" display="Man Page">
|
||||
<extension>man</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-troff-me" display="">
|
||||
<extension>me</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-troff-mes" display="">
|
||||
<extension>ms</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-mif" display="">
|
||||
<extension>mif</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/mpeg" display="MPEG Video">
|
||||
<extension default="true">mpg</extension>
|
||||
<extension>mpeg</extension>
|
||||
<extension>mpe</extension>
|
||||
<extension>m1v</extension>
|
||||
<extension>m2v</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/mpeg" display="MPEG Audio">
|
||||
<extension default="true">mp3</extension>
|
||||
<extension>mp2</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/mp4" display="MPEG4 Audio">
|
||||
<extension default="true">m4a</extension>
|
||||
<extension>m4b</extension>
|
||||
<extension>mp4a</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/mp4" display="MPEG4 Video">
|
||||
<extension default="true">mp4</extension>
|
||||
<extension>mp4v</extension>
|
||||
<extension>mpg4</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/x-m4v" display="MPEG4 Video (m4v)">
|
||||
<extension>m4v</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/mpeg2" display="MPEG2 Video">
|
||||
<extension>mpeg2</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/mp2t" display="MPEG Transport Stream">
|
||||
<extension>ts</extension>
|
||||
<extension>m2ts</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/quicktime" display="Quicktime Video">
|
||||
<extension>mov</extension>
|
||||
<extension>qt</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/3gpp" display="3G Video">
|
||||
<extension>3gp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/3gpp2" display="3G2 Video">
|
||||
<extension default="true">3g2</extension>
|
||||
<extension>3gp2</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/x-sgi-movie" display="SGI Video">
|
||||
<extension>movie</extension>
|
||||
<extension>mpv2</extension>
|
||||
<extension>mv</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/oda" display="">
|
||||
<extension>oda</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-portable-bitmap" display="Portable Bitmap">
|
||||
<extension>pbm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/pdf" display="Adobe PDF Document">
|
||||
<extension>pdf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-portable-graymap" display="Greymap Image">
|
||||
<extension>pgm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/png" display="PNG Image">
|
||||
<extension>png</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-portable-anymap" display="Anymap Image">
|
||||
<extension>pnm</extension>
|
||||
<extension>rpnm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-portable-pixmap" display="Pixmap Image">
|
||||
<extension>ppm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-cmu-raster" display="Raster Image">
|
||||
<extension>ras</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-rgb" display="RGB Image">
|
||||
<extension>rgb</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-troff" display="">
|
||||
<extension>tr</extension>
|
||||
<extension>t</extension>
|
||||
<extension>roff</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/rtf" display="Rich Text Format">
|
||||
<extension>rtf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/richtext" display="Rich Text">
|
||||
<extension>rtx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/sgml" display="SGML (Human Readable)">
|
||||
<extension default="true">sgml</extension>
|
||||
<extension>sgm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/sgml" display="SGML (Machine Readable)">
|
||||
<extension>gml</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-sh" text="true" display="Shell Script">
|
||||
<extension>sh</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-shar" text="true" display="">
|
||||
<extension>shar</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-wais-source" display="">
|
||||
<extension>src</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-sv4cpio" display="">
|
||||
<extension>sv4cpio</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-sv4crc" display="">
|
||||
<extension>sv4crc</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.adobe.air-application-installer-package+zip" display="Adobe AIR">
|
||||
<extension>air</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-shockwave-flash" display="Shockwave Flash">
|
||||
<extension>swf</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="video/x-flv" display="Flash Video">
|
||||
<extension>flv</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-fla" display="Flash Source">
|
||||
<extension>fla</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/dita+xml" display="DITA">
|
||||
<extension display="DITA Topic" default="true">dita</extension>
|
||||
<extension display="DITA Conditional Processing Profile">ditaval</extension>
|
||||
<extension display="DITA Map">ditamap</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-tar" display="Tarball">
|
||||
<extension>tar</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-tcl" display="">
|
||||
<extension>tcl</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-tex" display="Tex">
|
||||
<extension>tex</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-texinfo" display="Tex Info">
|
||||
<extension>texinfo</extension>
|
||||
<extension>texi</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/tiff" display="TIFF Image">
|
||||
<extension>tiff</extension>
|
||||
<extension>tif</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/tab-separated-values" text="true" display="Tab Separated Values">
|
||||
<extension>tsv</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-ustar" display="">
|
||||
<extension>ustar</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="audio/x-wav" display="WAV Audio">
|
||||
<extension>wav</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="x-world/x-vrml" display="VRML">
|
||||
<extension>wrl</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-xbitmap" display="XBitmap Image">
|
||||
<extension>xbm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-xpixmap" display="XPixmap Image">
|
||||
<extension>xpm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-xwindowdump" display="XWindow Dump">
|
||||
<extension>xwd</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-compress" display="Z Compress">
|
||||
<extension>z</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/zip" display="ZIP">
|
||||
<extension display="ZIP" default="true">zip</extension>
|
||||
<extension display="WAR">war</extension>
|
||||
<extension display="JAR">jar</extension>
|
||||
<extension display="EAR">ear</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.android.package-archive" display="Android Package">
|
||||
<extension>apk</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="image/vnd.dwg" display="AutoCAD Drawing">
|
||||
<extension>dwg</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="image/x-dwt" display="AutoCAD Template">
|
||||
<extension>dwt</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="message/rfc822" display="EMail">
|
||||
<extension>eml</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-outlook" display="Microsoft Outlook Message">
|
||||
<extension>msg</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/msword" display="Microsoft Word">
|
||||
<extension display="Microsoft Word 97-2003 Document" default="true">doc</extension>
|
||||
<extension display="Microsoft Word 97-2003 Template">dot</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/vnd.ms-powerpoint" display="Microsoft PowerPoint">
|
||||
<extension display="PowerPoint Presentation">ppt</extension>
|
||||
<extension display="PowerPoint Slide Show">pps</extension>
|
||||
<extension display="PowerPoint Template" >pot</extension>
|
||||
<extension display="PowerPoint Add-in">ppa</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/vnd.ms-excel" display="Microsoft Excel">
|
||||
<extension display="Excel Spreadsheet" default="true">xls</extension>
|
||||
<extension display="Excel Template">xlt</extension>
|
||||
<extension display="Excel Macro">xlm</extension>
|
||||
</mimetype>
|
||||
|
||||
|
||||
<!-- Microsoft Office 2007 / 2010 -->
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.wordprocessingml.document" display="Microsoft Word 2007">
|
||||
<extension>docx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-word.document.macroenabled.12" display="Microsoft Word 2007 macro-enabled document">
|
||||
<extension>docm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.wordprocessingml.template" display="Microsoft Word 2007 template">
|
||||
<extension>dotx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-word.template.macroenabled.12" display="Microsoft Word 2007 macro-enabled document template">
|
||||
<extension>dotm</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.presentationml.presentation" display="Microsoft PowerPoint 2007">
|
||||
<extension>pptx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-powerpoint.presentation.macroenabled.12" display="Microsoft PowerPoint 2007 macro-enabled presentation">
|
||||
<extension>pptm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.presentationml.slideshow" display="Microsoft PowerPoint 2007 slide show">
|
||||
<extension>ppsx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-powerpoint.slideshow.macroenabled.12" display="Microsoft PowerPoint 2007 macro-enabled slide show">
|
||||
<extension>ppsm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.presentationml.template" display="Microsoft PowerPoint 2007 template">
|
||||
<extension>potx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-powerpoint.template.macroenabled.12" display="Microsoft PowerPoint 2007 macro-enabled presentation template">
|
||||
<extension>potm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-powerpoint.addin.macroenabled.12" display="Microsoft PowerPoint 2007 add-in">
|
||||
<extension>ppam</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.presentationml.slide" display="Microsoft PowerPoint 2007 slide">
|
||||
<extension>sldx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-powerpoint.slide.macroenabled.12" display="Microsoft PowerPoint 2007 macro-enabled slide">
|
||||
<extension>sldm</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" display="Microsoft Excel 2007">
|
||||
<extension>xlsx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.openxmlformats-officedocument.spreadsheetml.template" display="Microsoft Excel template 2007">
|
||||
<extension>xltx</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-excel.sheet.macroenabled.12" display="Microsoft Excel 2007 macro-enabled workbook">
|
||||
<extension>xlsm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-excel.template.macroenabled.12" display="Microsoft Excel 2007 macro-enabled workbook template">
|
||||
<extension>xltm</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-excel.addin.macroenabled.12" display="Microsoft Excel 2007 add-in">
|
||||
<extension>xlam</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.ms-excel.sheet.binary.macroenabled.12" display="Microsoft Excel 2007 binary workbook">
|
||||
<extension>xlsb</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="application/x-zip" display="Adobe Flex Project File">
|
||||
<extension default="true">fxp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-indesign" display="Adobe InDesign Document">
|
||||
<extension default="true">indd</extension>
|
||||
<extension>ind</extension>
|
||||
</mimetype>
|
||||
<!-- iWorks -->
|
||||
<mimetype mimetype="application/vnd.apple.keynote" display="Apple iWork Keynote">
|
||||
<extension>key</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.apple.pages" display="Apple iWork Pages">
|
||||
<extension>pages</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/vnd.apple.numbers" display="Apple iWork Numbers">
|
||||
<extension>numbers</extension>
|
||||
</mimetype>
|
||||
|
||||
<!-- Markdown -->
|
||||
<mimetype mimetype="text/x-markdown" display="Markdown">
|
||||
<extension default="true">md</extension>
|
||||
</mimetype>
|
||||
|
||||
<!-- RSS -->
|
||||
<mimetype mimetype="application/rss+xml" text="true" display="RSS">
|
||||
<extension>rss</extension>
|
||||
</mimetype>
|
||||
|
||||
<mimetype mimetype="text/x-java-source" text="true" display="Java Source File">
|
||||
<extension default="true">java</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="text/x-jsp" text="true" display="Java Server Page">
|
||||
<extension default="true">jsp</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/java-archive" display="Java Archive">
|
||||
<extension default="true">jar</extension>
|
||||
</mimetype>
|
||||
<mimetype mimetype="application/x-rar-compressed" display="RAR Archive">
|
||||
<extension default="true">rar</extension>
|
||||
</mimetype>
|
||||
|
||||
</mimetypes>
|
||||
</config>
|
||||
|
||||
</alfresco-config>
|
439
data-model/src/main/resources/alfresco/model/cmisModel.xml
Normal file
439
data-model/src/main/resources/alfresco/model/cmisModel.xml
Normal file
@@ -0,0 +1,439 @@
|
||||
<model name="cmis:cmismodel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
||||
|
||||
<description>CMIS Model Definitions</description>
|
||||
<version>1.0</version>
|
||||
|
||||
<imports>
|
||||
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d" />
|
||||
</imports>
|
||||
|
||||
<namespaces>
|
||||
<namespace uri="http://www.alfresco.org/model/cmis/1.0/cs01" prefix="cmis" />
|
||||
<namespace uri="http://www.alfresco.org/model/cmis/1.0/cs01ext" prefix="cmisext" />
|
||||
<namespace uri="http://www.alfresco.org/model/cmis/1.0/alfcmis" prefix="alfcmis" />
|
||||
</namespaces>
|
||||
|
||||
<data-types>
|
||||
|
||||
<data-type name="cmis:id">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.String</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="cmis:uri">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.String</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="cmis:html">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.String</java-class>
|
||||
</data-type>
|
||||
|
||||
</data-types>
|
||||
|
||||
<constraints>
|
||||
|
||||
<constraint name="cmis:allowedValuesForContentStreamAllowed" type="LIST">
|
||||
<parameter name="allowedValues">
|
||||
<list>
|
||||
<value>notallowed</value>
|
||||
<value>allowed</value>
|
||||
<value>required</value>
|
||||
</list>
|
||||
</parameter>
|
||||
</constraint>
|
||||
|
||||
</constraints>
|
||||
|
||||
<types>
|
||||
|
||||
<type name="cmisext:object">
|
||||
<properties>
|
||||
<property name="cmis:objectId">
|
||||
<title>Object Id</title>
|
||||
<description>The unique object id (a node ref)</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:objectTypeId">
|
||||
<title>Object Type Id</title>
|
||||
<description>Id of the object’s type</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>true</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:baseTypeId">
|
||||
<title>Base Type Id</title>
|
||||
<description>Id of the base object type for the object</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>true</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:name">
|
||||
<title>Name</title>
|
||||
<description>Name</description>
|
||||
<type>d:text</type>
|
||||
<protected>false</protected>
|
||||
<mandatory>true</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>both</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:createdBy">
|
||||
<title>Created by</title>
|
||||
<description>The authority who created this object</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:creationDate">
|
||||
<title>Creation Date</title>
|
||||
<description>The object creation date</description>
|
||||
<type>d:datetime</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:lastModifiedBy">
|
||||
<title>Last Modified By</title>
|
||||
<description>The authority who last modified this object</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:lastModificationDate">
|
||||
<title>Last Modified Date</title>
|
||||
<description>The date this object was last modified</description>
|
||||
<type>d:datetime</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:changeToken">
|
||||
<title>Change token</title>
|
||||
<description>Change Token</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="alfcmis:nodeRef">
|
||||
<title>Alfresco Node Ref</title>
|
||||
<description>Alfresco Node Ref</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<!-- V1.1 -->
|
||||
<property name="cmis:description">
|
||||
<title>Description</title>
|
||||
<description>Description</description>
|
||||
<type>d:text</type>
|
||||
<protected>false</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>true</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:secondaryObjectTypeIds">
|
||||
<title>Secondary Object Type Ids</title>
|
||||
<description>Ids of the secondary object types for the object</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>false</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>true</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>true</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmis:document">
|
||||
<title>Document</title>
|
||||
<description>Document Type</description>
|
||||
<parent>cmisext:object</parent>
|
||||
<properties>
|
||||
<property name="cmis:isImmutable">
|
||||
<title>Is Immutable</title>
|
||||
<description>Is the document immutable?</description>
|
||||
<type>d:boolean</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:isLatestVersion">
|
||||
<title>Is Latest Version</title>
|
||||
<description>Is this the latest version of the document?</description>
|
||||
<type>d:boolean</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:isMajorVersion">
|
||||
<title>Is Major Version</title>
|
||||
<description>Is this a major version of the document?</description>
|
||||
<type>d:boolean</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:isLatestMajorVersion">
|
||||
<title>Is Latest Major Version</title>
|
||||
<description>Is this the latest major version of the document?</description>
|
||||
<type>d:boolean</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:versionLabel">
|
||||
<title>Version Label</title>
|
||||
<description>The version label</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false"/>
|
||||
</property>
|
||||
<property name="cmis:versionSeriesId">
|
||||
<title>Version series id</title>
|
||||
<description>The version series id</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false"/>
|
||||
</property>
|
||||
<property name="cmis:isVersionSeriesCheckedOut">
|
||||
<title>Is Version Series Checked Out</title>
|
||||
<description>Is the version series checked out?</description>
|
||||
<type>d:boolean</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:versionSeriesCheckedOutBy">
|
||||
<title>Version Series Checked Out By</title>
|
||||
<description>The authority who checked out this document version series</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:versionSeriesCheckedOutId">
|
||||
<title>Version Series Checked Out Id</title>
|
||||
<description>The checked out version series id</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:checkinComment">
|
||||
<title>Checkin Comment</title>
|
||||
<description>The checkin comment</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:contentStreamLength">
|
||||
<title>Content Stream Length</title>
|
||||
<description>The length of the content stream</description>
|
||||
<type>d:long</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:contentStreamMimeType">
|
||||
<title>Content Stream MIME Type</title>
|
||||
<description>The content stream MIME type</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:contentStreamFileName">
|
||||
<title>Content Stream Filename</title>
|
||||
<description>The content stream filename</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>true</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:contentStreamId">
|
||||
<title>Content Stream Id</title>
|
||||
<description>Id of the stream</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<!-- V1.1 -->
|
||||
<property name="cmis:isPrivateWorkingCopy">
|
||||
<title>Is private working copy</title>
|
||||
<description>Indicates if this instance is a private working copy</description>
|
||||
<type>d:boolean</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmis:folder">
|
||||
<title>Folder</title>
|
||||
<description>Folder Type</description>
|
||||
<parent>cmisext:object</parent>
|
||||
<properties>
|
||||
<property name="cmis:parentId">
|
||||
<title>Parent Id</title>
|
||||
<description>The parent id of the folder</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="true">
|
||||
<tokenised>false</tokenised>
|
||||
</index>
|
||||
</property>
|
||||
<property name="cmis:path">
|
||||
<title>Path</title>
|
||||
<description>The fully qualified path to this folder/description</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false"/>
|
||||
</property>
|
||||
<property name="cmis:allowedChildObjectTypeIds">
|
||||
<title>Allowed Child Object Types Ids</title>
|
||||
<description>The allowed child object type ids</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory>false</mandatory>
|
||||
<multiple>true</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmis:relationship">
|
||||
<title>Relationship</title>
|
||||
<description>Relationship Type</description>
|
||||
<parent>cmisext:object</parent>
|
||||
<properties>
|
||||
<property name="cmis:sourceId">
|
||||
<title>Source Id</title>
|
||||
<description>The source id for the relationship</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory enforced="true">true</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
<property name="cmis:targetId">
|
||||
<title>Target Id</title>
|
||||
<description>The target id for the relationship</description>
|
||||
<type>cmis:id</type>
|
||||
<protected>true</protected>
|
||||
<mandatory enforced="true">true</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmis:policy">
|
||||
<title>Policy</title>
|
||||
<description>Policy Type</description>
|
||||
<parent>cmisext:object</parent>
|
||||
<properties>
|
||||
<property name="cmis:policyText">
|
||||
<title>Policy Text</title>
|
||||
<description>The policy text</description>
|
||||
<type>d:text</type>
|
||||
<protected>true</protected>
|
||||
<mandatory enforced="true">true</mandatory>
|
||||
<multiple>false</multiple>
|
||||
<index enabled="false" />
|
||||
</property>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmis:secondary">
|
||||
<title>Secondary Type</title>
|
||||
<description>Secondary Type</description>
|
||||
<parent>cmisext:object</parent>
|
||||
<properties>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmis:item">
|
||||
<title>Item Type</title>
|
||||
<description>CMIS Item</description>
|
||||
<parent>cmisext:object</parent>
|
||||
<properties>
|
||||
</properties>
|
||||
</type>
|
||||
|
||||
<type name="cmisext:aspects">
|
||||
<title>Aspects</title>
|
||||
<description>Aspects Type</description>
|
||||
<parent>cmis:policy</parent>
|
||||
</type>
|
||||
|
||||
</types>
|
||||
|
||||
</model>
|
@@ -0,0 +1,18 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_any.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_int.analyzer=org.alfresco.repo.search.impl.lucene.analysis.IntegerAnalyser
|
||||
d_dictionary.datatype.d_long.analyzer=org.alfresco.repo.search.impl.lucene.analysis.LongAnalyser
|
||||
d_dictionary.datatype.d_float.analyzer=org.alfresco.repo.search.impl.lucene.analysis.FloatAnalyser
|
||||
d_dictionary.datatype.d_double.analyzer=org.alfresco.repo.search.impl.lucene.analysis.DoubleAnalyser
|
||||
d_dictionary.datatype.d_date.analyzer=org.alfresco.repo.search.impl.lucene.analysis.DateAnalyser
|
||||
d_dictionary.datatype.d_datetime.analyzer=org.alfresco.repo.search.impl.lucene.analysis.DateAnalyser
|
||||
d_dictionary.datatype.d_boolean.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_qname.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_guid.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_category.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_noderef.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_path.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_locale.analyzer=org.alfresco.repo.search.impl.lucene.analysis.LowerCaseVerbatimAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.cz.CzechAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.cz.CzechAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.DanishSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.DanishSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.de.GermanAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.de.GermanAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.el.GreekAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.el.GreekAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.SpanishSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.SpanishSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.FinnishSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.FinnishSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.fr.FrenchAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.fr.FrenchAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.ItalianSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.ItalianSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.cjk.CJKAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.cjk.CJKAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.cjk.CJKAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.cjk.CJKAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.nl.DutchAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.nl.DutchAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.NorwegianSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.NorwegianSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.PortugueseSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.PortugueseSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.br.BrazilianAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.br.BrazilianAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.ru.RussianAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.ru.RussianAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.alfresco.repo.search.impl.lucene.analysis.SwedishSnowballAnalyser
|
||||
d_dictionary.datatype.d_content.analyzer=org.alfresco.repo.search.impl.lucene.analysis.SwedishSnowballAnalyser
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.th.ThaiAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.th.ThaiAnalyzer
|
@@ -0,0 +1,4 @@
|
||||
# Data Type Index Analyzers
|
||||
|
||||
d_dictionary.datatype.d_text.analyzer=org.apache.lucene.analysis.cn.ChineseAnalyzer
|
||||
d_dictionary.datatype.d_content.analyzer=org.apache.lucene.analysis.cn.ChineseAnalyzer
|
132
data-model/src/main/resources/alfresco/model/dictionaryModel.xml
Normal file
132
data-model/src/main/resources/alfresco/model/dictionaryModel.xml
Normal file
@@ -0,0 +1,132 @@
|
||||
<model name="d:dictionary" xmlns="http://www.alfresco.org/model/dictionary/1.0">
|
||||
|
||||
<description>Alfresco Dictionary Model</description>
|
||||
<author>Alfresco</author>
|
||||
<published>2005-09-29</published>
|
||||
<version>1.0</version>
|
||||
<analyserResourceBundleName>alfresco/model/dataTypeAnalyzers</analyserResourceBundleName>
|
||||
|
||||
<namespaces>
|
||||
<!-- Default Namespace -->
|
||||
<namespace uri="" prefix=""/>
|
||||
<!-- Default Alfresco Namespace -->
|
||||
<namespace uri="http://www.alfresco.org" prefix="alf"/>
|
||||
<!-- Dictionary Namespace -->
|
||||
<namespace uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
|
||||
<!-- View Namespace -->
|
||||
<namespace uri="http://www.alfresco.org/view/repository/1.0" prefix="view"/>
|
||||
</namespaces>
|
||||
|
||||
<data-types>
|
||||
|
||||
<data-type name="d:any">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.Object</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:encrypted">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.EmptyAnalyser</default-analyser-class>
|
||||
<java-class>javax.crypto.SealedObject</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:text">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.String</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:mltext">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.MLText</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:content">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.ContentData</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:int">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.IntegerAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.Integer</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:long">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.LongAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.Long</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:float">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.FloatAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.Float</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:double">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.DoubleAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.Double</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:date">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.DateAnalyser</default-analyser-class>
|
||||
<java-class>java.util.Date</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:datetime">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.DateTimeAnalyser</default-analyser-class>
|
||||
<java-class>java.util.Date</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:boolean">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>java.lang.Boolean</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:qname">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.namespace.QName</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:noderef">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.NodeRef</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:childassocref">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.ChildAssociationRef</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:assocref">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.AssociationRef</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:path">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.Path</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:category">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.AlfrescoStandardAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.NodeRef</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:locale">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.VerbatimAnalyser</default-analyser-class>
|
||||
<java-class>java.util.Locale</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:version">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.VerbatimAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.util.VersionNumber</java-class>
|
||||
</data-type>
|
||||
|
||||
<data-type name="d:period">
|
||||
<default-analyser-class>org.alfresco.repo.search.impl.lucene.analysis.VerbatimAnalyser</default-analyser-class>
|
||||
<java-class>org.alfresco.service.cmr.repository.Period</java-class>
|
||||
</data-type>
|
||||
|
||||
</data-types>
|
||||
|
||||
|
||||
<!-- TODO: Define dictionary meta model -->
|
||||
|
||||
</model>
|
Reference in New Issue
Block a user