source: main/tags/2.62/gli/metadata/dls.mds

Last change on this file was 10585, checked in by kjdon, 19 years ago

reformatted the MetadataSet element so there are no spaces between attribute name and value

  • Property svn:keywords set to Author Date Id Revision
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 contact="nzdl.org" creator="New Zealand Digital Libraries Project: Greenstone" family="Development Library Subset" lastchanged="Tue Jun 04 10:35:30 2002 - jmt12 on blackbird" namespace="dls">
49
50 <Name language="en">Development Library Subset Example Metadata</Name>
51
52 <Description language="en">A metadata set file for use in The Gatherer, created from original metadata found within the Development Library Subset.</Description>
53
54 <Element name="Title" remember_values="true">
55 <Attribute name="comment" language="en"></Attribute>
56 <Attribute name="definition" language="en">The title of this resource.</Attribute>
57 <Attribute name="identifier" language="en">Title</Attribute>
58 <Attribute name="version">1.0</Attribute>
59 </Element>
60
61 <Element name="Organization" hierarchy="true" remember_values="true">
62 <Attribute name="comment" language="en"></Attribute>
63 <Attribute name="definition" language="en">The organization responsible for producing this resource.</Attribute>
64 <Attribute name="identifier" language="en">Organization</Attribute>
65 <Attribute name="version">1.0</Attribute>
66 </Element>
67
68 <Element name="Subject" hierarchy="true" remember_values="true">
69 <Attribute name="comment" language="en">Currently uses a hierarchy.</Attribute>
70 <Attribute name="definition" language="en">The subject of this resource.</Attribute>
71 <Attribute name="identifier" language="en">Subject And Keywords</Attribute>
72 <Attribute name="version">1.0</Attribute>
73 </Element>
74
75 <Element name="Keyword" hierarchy="true" remember_values="true">
76 <Attribute name="comment" language="en">Informal.</Attribute>
77 <Attribute name="definition" language="en">A more specific indication of what the resource can be used for.</Attribute>
78 <Attribute name="identifier" language="en">Keyword</Attribute>
79 <Attribute name="version">1.0</Attribute>
80 </Element>
81
82 <Element name="Language" remember_values="true">
83 <Attribute name="comment" language="en"></Attribute>
84 <Attribute name="definition" language="en">The language of this resource.</Attribute>
85 <Attribute name="identifier" language="en">Language</Attribute>
86 <Attribute name="version">1.0</Attribute>
87 </Element>
88
89 <Element name="AZList" hierarchy="true" remember_values="true">
90 <Attribute name="comment" language="en">Not the same as an AZList classifier.</Attribute>
91 <Attribute name="definition" language="en">A customizable AZList based on document titles.</Attribute>
92 <Attribute name="identifier" language="en">AZList</Attribute>
93 <Attribute name="version">1.0</Attribute>
94 </Element>
95
96</MetadataSet>
97
Note: See TracBrowser for help on using the repository browser.