aboutsummaryrefslogtreecommitdiff
path: root/packages/darwin_app/spotlight_importer/schema.xml
blob: 748b96e80e5f6bef17281883f62b5f3b0ed94572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
 
<schema version="1.0" xmlns="http://www.apple.com/metadata"
                      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                      xsi:schemaLocation="http://www.apple.com/metadata file:///System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Resources/MetadataSchema.xsd">
    <!--
            The 'attributes' section defines custom attributes that this metadata importer supports.  
            Below is an example of a multivalued string attribute.  Uncomment this part 
            of the file if you need to define a custom attribute.
     
            'multivalued' indicates whether the attribute is an array type or not.
     
            'type' indicates the data type of the attribute.   
                        Available types are CFString, CFNumber, CFDate, CFBoolean and CFData.  
     
            If you don't need to define a custom attribute, it is safe to remove this section.
            
    <attributes>
        <attribute name="com_Foo_YourAttrName" multivalued="true" type="CFString"/>
    </attributes>
     
            
            To see the system's definitions for the builtin attributes and file types, look at the system schema,
            /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework/Resources/schema.xml
    -->

    <types>
        <type name="org.puredata.pd-patch">  <!-- add one <type>...</type> entry for each UTI that you need to define.
         
            <!-- 'allattrs' is a whitespace separated list of all of the attributes that this UTI type normally has.
                 It does not have to be exhaustive. -->
            <allattrs>
            </allattrs>
            <!-- 'displayattrs' is a whitespace separated list of the attributes that should normally be displayed when previewing files of this UTI type. -->
            <displayattrs>
            </displayattrs>
            
        </type>
		<type name="org.puredata.max-patch">
            <allattrs>
            </allattrs>
			<displayattrs>
            </displayattrs>
            
        </type>
    </types>
</schema>