source: documented-example-collections/trunk/dls-e/metadata/dls.mds@ 18738

Last change on this file since 18738 was 18738, checked in by oranfry, 15 years ago

the rest of the documented example collections

  • Property svn:executable set to *
File size: 4.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE MetadataSet [
3
4 <!-- The outer tag of any metadata set. Contains some number of elements. -->
5 <!-- @param contact A contact address for the creator. -->
6 <!-- @param creator The name of the entity resposibly for this set. -->
7 <!-- @param family The namespace of this metadata set. -->
8 <!-- @param lastchanged The full date, user name and machine name of the last editor. -->
9 <!-- uses the form: -->
10 <!-- Day Mon(th) dd hh:mm:ss yyyy '-' <username> on <machine> -->
11 <!-- @param namespace The abbreviated namespace of this metadata set. -->
12 <!ELEMENT MetadataSet (Element+)>
13 <!ATTLIST MetadataSet
14 contact CDATA #REQUIRED
15 creator CDATA #REQUIRED
16 family CDATA #REQUIRED
17 lastchanged CDATA #REQUIRED
18 namespace CDATA #REQUIRED>
19
20 <!-- The name of a metadata set. Is language specific. -->
21 <!ELEMENT Name (#PCDATA)>
22 <!ATTLIST Name
23 language CDATA "en">
24
25 <!-- The description of a metadata set. Is language specific. -->
26 <!ELEMENT Description (#PCDATA)>
27 <!ATTLIST Description
28 language CDATA "en">
29
30 <!-- An element in the metadata set. -->
31 <!ELEMENT Element (Attribute*,OptionList?)>
32 <!ATTLIST Element
33 hierarchy CDATA "false"
34 name CDATA #REQUIRED
35 occurances CDATA "0">
36
37 <!-- Each element has several attribute children. -->
38 <!ELEMENT Attribute (#PCDATA)>
39 <!ATTLIST Attribute
40 name CDATA #REQUIRED>
41
42 <!-- For listing predefined values for this element. -->
43 <!ELEMENT OptionList (Value+)>
44 <!ATTLIST OptionList
45 restricted (true|false) "false">
46]>
47
48<MetadataSet
49contact = "nzdl.org"
50creator = "New Zealand Digital Libraries Project: Greenstone"
51family = "Development Library Subset"
52lastchanged = "Tue Jun 04 10:35:30 2002 - jmt12 on blackbird"
53namespace = "dls">
54
55 <Name language="en">Development Library Subset Example Metadata</Name>
56
57 <Description language="en">A metadata set file for use in The Gatherer, created from original metadata found within the Development Library Subset.</Description>
58
59 <Element name="Title" remember_values="true">
60 <Attribute name="comment" language="en"></Attribute>
61 <Attribute name="definition" language="en">The title of this resource.</Attribute>
62 <Attribute name="identifier" language="en">Title</Attribute>
63 <Attribute name="version">1.0</Attribute>
64 </Element>
65
66 <Element name="Organization" hierarchy="true" remember_values="true">
67 <Attribute name="comment" language="en"></Attribute>
68 <Attribute name="definition" language="en">The organization responsible for producing this resource.</Attribute>
69 <Attribute name="identifier" language="en">Organization</Attribute>
70 <Attribute name="version">1.0</Attribute>
71 </Element>
72
73 <Element name="Subject" hierarchy="true" remember_values="true">
74 <Attribute name="comment" language="en">Currently uses a hierarchy.</Attribute>
75 <Attribute name="definition" language="en">The subject of this resource.</Attribute>
76 <Attribute name="identifier" language="en">Subject And Keywords</Attribute>
77 <Attribute name="version">1.0</Attribute>
78 </Element>
79
80 <Element name="Keyword" hierarchy="true" remember_values="true">
81 <Attribute name="comment" language="en">Informal.</Attribute>
82 <Attribute name="definition" language="en">A more specific indication of what the resource can be used for.</Attribute>
83 <Attribute name="identifier" language="en">Keyword</Attribute>
84 <Attribute name="version">1.0</Attribute>
85 </Element>
86
87 <Element name="Language" remember_values="true">
88 <Attribute name="comment" language="en"></Attribute>
89 <Attribute name="definition" language="en">The language of this resource.</Attribute>
90 <Attribute name="identifier" language="en">Language</Attribute>
91 <Attribute name="version">1.0</Attribute>
92 </Element>
93
94 <Element name="AZList" hierarchy="true" remember_values="true">
95 <Attribute name="comment" language="en">Not the same as an AZList classifier.</Attribute>
96 <Attribute name="definition" language="en">A customizable AZList based on document titles.</Attribute>
97 <Attribute name="identifier" language="en">AZList</Attribute>
98 <Attribute name="version">1.0</Attribute>
99 </Element>
100
101</MetadataSet>
102
Note: See TracBrowser for help on using the repository browser.