source: documented-example-collections/trunk/garish/metadata/ex.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: 3.6 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 name of this sets family. -->
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 namespace of this metadata set. -->
12 <!ELEMENT MetadataSet ((Name|Description|Element)+)>
13 <!ATTLIST MetadataSet
14 contact CDATA #REQUIRED
15 creator CDATA #REQUIRED
16 description CDATA #REQUIRED
17 family CDATA #REQUIRED
18 lastchanged CDATA #REQUIRED
19 name CDATA #REQUIRED
20 namespace CDATA #REQUIRED>
21
22 <!-- The name of a metadata set. Is language specific. -->
23 <!ELEMENT Name (#PCDATA)>
24 <!ATTLIST Name
25 language CDATA "en">
26
27 <!-- The description of a metadata set. Is language specific. -->
28 <!ELEMENT Description (#PCDATA)>
29 <!ATTLIST Description
30 language CDATA "en">
31
32 <!-- An element in the metadata set. -->
33 <!ELEMENT Element (Attribute*,OptionList?)>
34 <!ATTLIST Element
35 name CDATA #REQUIRED
36 occurances CDATA "0">
37
38 <!-- Each element has several attribute children. -->
39 <!ELEMENT Attribute (#PCDATA)>
40 <!ATTLIST Attribute
41 name CDATA #REQUIRED>
42
43 <!-- For listing predefined values for this element. -->
44 <!ELEMENT OptionList (Value+)>
45 <!ATTLIST OptionList
46 restricted (true|false) "false">
47]>
48
49<MetadataSet
50contact = "nzdl.org"
51creator = "New Zealand Digital Libraries Project: Greenstone"
52family = "Extracted Greenstone"
53lastchanged = "Tue May 20 10:30:32 2003 - jmt12 on narya"
54namespace = "ex"
55>
56
57 <Name language="en">Extracted Greenstone Metadata 1.0</Name>
58
59 <Description language="en">This document is the reference description, version 1.0 of the automatically extracted Greenstone Metadata Element Set.</Description>
60
61 <Element name="Encoding">
62 <Attribute name="comment" language="en">Not always available.</Attribute>
63 <Attribute name="definition" language="en">The encoding of the imported document as extracted by Greenstone.</Attribute>
64 <Attribute name="identifier" language="en">Encoding</Attribute>
65 </Element>
66
67 <Element name="Language">
68 <Attribute name="comment" language="en">Not always available.</Attribute>
69 <Attribute name="definition" language="en">The language of the imported document as extracted by Greenstone.</Attribute>
70 <Attribute name="identifier" language="en">Language</Attribute>
71 </Element>
72
73 <Element name="Source">
74 <Attribute name="comment" language="en">Hidden in the Librarian Interface as it already shown by the various file trees.</Attribute>
75 <Attribute name="definition" language="en">The filename of the document imported by Greenstone.</Attribute>
76 <Attribute name="identifier" language="en">Source</Attribute>
77 </Element>
78
79 <Element name="Title">
80 <Attribute name="comment" language="en">Not always available.</Attribute>
81 <Attribute name="definition" language="en">The title of the imported document as extracted by Greenstone.</Attribute>
82 <Attribute name="identifier" language="en">Title</Attribute>
83 </Element>
84
85</MetadataSet>
Note: See TracBrowser for help on using the repository browser.