 
					
				
		
05-27-2009 03:25 PM
<alfresco-config>
 <config evaluator="string-compare" condition="Languages" >
      <languages>
     <!– <language locale="nl_BE">Nederlands (Belgie)</language> –>
      <language locale="nl_NL">Nederlands</language>
      </languages>
      </config>
 <config evaluator="string-compare" condition="Advanced Search">
      <advanced-search>
         <content-types>
         <type name="custom:tctdocument"/>
    </content-types>
         <custom-properties>
         <meta-data type="custom:tctdocument" property="custom:Afzender"/>
         <meta-data type="custom:tctdocument" property="custom:AangetekendDatum"/>
         <meta-data type="custom:tctdocument" property="custom:DatumBinnenkomst"/>
         <meta-data type="custom:tctdocument" property="custom:OrigineelNummStuk"/>
         <meta-data type="custom:tctdocument" property="custom:KorteInhoud"/>
         <meta-data type="custom:tctdocument" property="custom:NaarWie"/>
         <meta-data type="custom:tctdocument" property="custom:Towho"/>
         <meta-data type="custom:tctdocument" property="custom:VerzendDatum"/>
         <meta-data type="custom:tctdocument" property="custom:Aantekening"/>
         <meta-data type="custom:tctdocument" property="custom:Referentie"/>
         <meta-data type="custom:tctdocument" property="custom:Bijlagen"/>
         <meta-data type="custom:tctdocument" property="custom:DatumBinnenkomst"/>
              
          <!–  <meta-data aspect="app:simpleworkflow" property="app:approveStep" />
 –>
         </custom-properties>
      </advanced-search>
   </config>
  
<!– the following code ensures that the properties are available to edit in the edit properties window for tct content –>
<config evaluator="node-type" condition="custom:tctdocument">
   <property-sheet>
      <show-property name="mimetype"
         display-label-id="content_type"
         component-generator="MimeTypeSelectorGenerator"/>
      <show-property name="size"
         display-label-id="size"
         converter="org.alfresco.faces.ByteSizeConverter"
         show-in-edit-mode="false"/>
      <show-property name="custom:Afzender"/>
      <show-property name="custom:AangetekendDatum"/>
      <show-property name="custom:DatumBinnenkomst"/>
      <show-property name="custom:OrigineelNummStuk"/>
      <show-property name="custom:KorteInhoud"/>
      <show-property name="custom:NaarWie"/>
      <show-property name="custom:Towho"/>
      <show-property name="custom:VerzendDatum"/>
      <show-property name="custom:Aantekening"/>
      
<show-property name="custom:Referentie"/>
      <show-property name="custom:Bijlagen"/>
   </property-sheet>
</config>
  
<!– The following code ensures that the tct document content type is listed when you create new content –>
<config evaluator="string-compare" condition="Content Wizards">
   <content-types>
      <type name="custom:tctdocument"/>
   </content-types>
</config>
<!– List the custom aspect in business rules Action wizard –>
<config evaluator="string-compare" condition="Action Wizards">
   
   <aspects>
   <aspect name="custom:DocumentID"/>
   </aspects>
   
   <subtypes>
      <type name="custom:tctdocument"/>
   </subtypes>
</config>
</alfresco-config>
<?xml version="1.0" encoding="UTF-8"?>
<!– Custom Model –>
<!– Note: This model is pre-configured to load at startup of the Repository.  So, all custom –>
<!–       types and aspects added here will automatically be registered –>
<model name="custom:customModel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
   <!– Optional meta-data about the model –>   
   <description>Custom Model</description>
   <author></author>
   <version>1.0</version>
   <imports>
        <!– Import Alfresco Dictionary Definitions –>
      <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
      <!– Import Alfresco Content Domain Model Definitions –>
      <import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
   </imports>
   <!– Introduction of new namespaces defined by this model –>
   <!– NOTE: The following namespace custom.model should be changed to reflect your own namespace –>
   <namespaces>
      <namespace uri="custom.model" prefix="custom"/>
   </namespaces>
   
   
<types>
   <!–Definition of new content type for TCT: TCT Document –>
   <type name="custom:tctdocument">
   <title>TCT Document</title>
   <parent>cm:content</parent>         
   <properties>
      <property name="custom:Afzender">
            <title>Afzender</title>
            <type>d:text</type>
      </property>
      
      <property name="custom:AangetekendDatum">
            <title>Aangetekend datum van het stuk</title>
            <type>d:date</type>
      </property>
      
      <property name="custom:DatumBinnenkomst">
            <title>Datum binnenkomst</title>
            <type>d:date</type>
      </property>
      
      <property name="custom:OrigineelNummStuk">
            <title>Extern nummer</title>
            <type>d:int</type>
      </property>
      
      <property name="custom:KorteInhoud">
            <title>Korte inhoud</title>
            <type>d:text</type>
      </property>
      
      <property name="custom:NaarWie">
            <title>Intern Naar wie verzonden</title>
            <type>d:text</type>
      </property>
      
      <property name="custom:Towho">
            <title>Extern Naar wie verzonden</title>
            <type>d:text</type>
      </property>
      
      <property name="custom:VerzendDatum">
            <title>Verzend datum</title>
            <type>d:date</type>
      </property>
      
      <property name="custom:Aantekening">
            <title>Aantekening</title>
            <type>d:text</type>
      </property>
      
      <property name="custom:Referentie">
            <title>Referentie naar andere stukken</title>
            <type>d:text</type>
      </property>
      
      <property name="custom:Bijlagen">
            <title>Aantal Bijlagen</title>
            <type>d:int</type>
      </property>
   </properties>
   
   <mandatory-aspects>
   <aspect>cm:versionable</aspect>
   </mandatory-aspects>
   
   </type>
   
</types>
   
   
<!–
   <aspects>
      <aspect name="custom:DocumentID">
      <title>Document ID</title>
      <properties>
         <property name="custom:DocumentID">
         <title>Document ID</title>
         <type>d:text</type>
         </property>
      </properties>
      </aspect>
      
      <aspect name="custom:status">
      <title>Status</title>
      <properties>
         <property name="custom:status">
         <title>Status</title>
         <type>d:text</type>
         </property>
      </properties>
      </aspect>
      
   </aspects>
   –>
      
</model>
 
					
				
		
06-01-2009 12:32 PM
 The custom-model-context.xml was not 'activated' by default. After you've installed Alfresco, It has .sample as an extension (custom-model-context.xml.sample)
 The custom-model-context.xml was not 'activated' by default. After you've installed Alfresco, It has .sample as an extension (custom-model-context.xml.sample) 
					
				
				
			
		
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.