source: trunk/gli/metadata/dls.mds@ 4293

Last change on this file since 4293 was 4293, checked in by jmt12, 21 years ago

Initial revision

  • Property svn:keywords set to Author Date Id Revision
File size: 4.2 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 name CDATA #REQUIRED
34 occurances CDATA "0">
35
36 <!-- Each element has several attribute children. -->
37 <!ELEMENT Attribute (#PCDATA)>
38 <!ATTLIST Attribute
39 name CDATA #REQUIRED>
40
41 <!-- For listing predefined values for this element. -->
42 <!ELEMENT OptionList (Value+)>
43 <!ATTLIST OptionList
44 restricted (true|false) "false">
45]>
46
47<MetadataSet
48contact = "nzdl.org"
49creator = "New Zealand Digital Libraries Project: Greenstone"
50family = "Development Library Subset"
51lastchanged = "Tue Jun 04 10:35:30 2002 - jmt12 on blackbird"
52namespace = "dls">
53
54 <Name language="en">Development Library Subset Example Metadata</Name>
55
56 <Description language="en">A metadata set file for use in The Gatherer, created from original metadata found within the Development Library Subset.</Description>
57
58 <Element name="AZList">
59 <Attribute name="comment" language="en">Not the same as an AZList classifier.</Attribute>
60 <Attribute name="definition" language="en">A customizable AZList based on document titles.</Attribute>
61 <Attribute name="identifier" language="en">AZList</Attribute>
62 <Attribute name="version">1.0</Attribute>
63 </Element>
64
65 <Element name="Keyword">
66 <Attribute name="comment" language="en">Informal.</Attribute>
67 <Attribute name="definition" language="en">A more specific indication of what the resourse can be used for.</Attribute>
68 <Attribute name="identifier" language="en">Keyword</Attribute>
69 <Attribute name="version">1.0</Attribute>
70 </Element>
71
72 <Element name="Language">
73 <Attribute name="comment" language="en">Language.</Attribute>
74 <Attribute name="definition" language="en">The language of this resource.</Attribute>
75 <Attribute name="identifier" language="en">Language</Attribute>
76 <Attribute name="version">1.0</Attribute>
77 </Element>
78
79 <Element name="Organization">
80 <Attribute name="comment" language="en">Organization.</Attribute>
81 <Attribute name="definition" language="en">The organization responisble for producing this resource.</Attribute>
82 <Attribute name="identifier" language="en">Organization</Attribute>
83 <Attribute name="version">1.0</Attribute>
84 </Element>
85
86 <Element name="Subject">
87 <Attribute name="comment" language="en">Currently uses a hierarchy.</Attribute>
88 <Attribute name="definition" language="en">The subject of this resource.</Attribute>
89 <Attribute name="identifier" language="en">Subject</Attribute>
90 <Attribute name="version">1.0</Attribute>
91 </Element>
92
93 <Element name="Title">
94 <Attribute name="comment" language="en">Title.</Attribute>
95 <Attribute name="definition" language="en">The title of this resource.</Attribute>
96 <Attribute name="identifier" language="en">Title</Attribute>
97 <Attribute name="version">1.0</Attribute>
98 </Element>
99
100</MetadataSet>
101
Note: See TracBrowser for help on using the repository browser.