source: gsdl/tags/greenstone-3_01-distribution/gli/metadata/ex.mds@ 14121

Last change on this file since 14121 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: 3.5 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 contact="nzdl.org" creator="New Zealand Digital Libraries Project: Greenstone" family="Extracted Greenstone" lastchanged="Tue May 20 10:30:32 2003 - jmt12 on narya" namespace="ex" >
50
51 <Name language="en">Extracted Greenstone Metadata 1.0</Name>
52
53 <Description language="en">This document is the reference description, version 1.0 of the automatically extracted Greenstone Metadata Element Set.</Description>
54
55 <Element name="Encoding">
56 <Attribute name="comment" language="en">Not always available.</Attribute>
57 <Attribute name="definition" language="en">The encoding of the imported document as extracted by Greenstone.</Attribute>
58 <Attribute name="identifier" language="en">Encoding</Attribute>
59 </Element>
60
61 <Element name="Language">
62 <Attribute name="comment" language="en">Not always available.</Attribute>
63 <Attribute name="definition" language="en">The language of the imported document as extracted by Greenstone.</Attribute>
64 <Attribute name="identifier" language="en">Language</Attribute>
65 </Element>
66
67 <Element name="Source">
68 <Attribute name="comment" language="en">Hidden in the Librarian Interface as it already shown by the various file trees.</Attribute>
69 <Attribute name="definition" language="en">The filename of the document imported by Greenstone.</Attribute>
70 <Attribute name="identifier" language="en">Source</Attribute>
71 </Element>
72
73 <Element name="Title">
74 <Attribute name="comment" language="en">Not always available.</Attribute>
75 <Attribute name="definition" language="en">The title of the imported document as extracted by Greenstone.</Attribute>
76 <Attribute name="identifier" language="en">Title</Attribute>
77 </Element>
78
79</MetadataSet>
Note: See TracBrowser for help on using the repository browser.