RE: Dublin Core to IMS/LOM

Thanks John.

For those people interested, here is a sample conversion from DC embedded in
HTML, to DC in RDF/XML, to DC in IMS XML.

DC embedded in XHTML meta-data

<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" /> 
<meta name="DC.title" lang="en" content="The University of Birmingham" /> 
<meta name="DC.description" lang="en" content="The University of Birmingham,
UK home page, including links for prospective students, former students
(alumni), business and industry, and staff. There is also information on
research developments, about the University and Birmingham." /> 
<meta name="DC.date" scheme="W3CDTF" content="2003-09-02" /> 
<meta name="DC.format" content="text/html" /> 
<meta name="DC.format" content="13455 bytes" /> 
<meta name="DC.identifier" content="http://www.bham.ac.uk/" /> 
<meta name="DC.language" content="en-uk" /> 
<meta name="DC.rights" content="http://www.general.bham.ac.uk/legal/" /> 

DC in RDF

<?xml version="1.0"?>
<!DOCTYPE rdf:RDF SYSTEM
"http://dublincore.org/documents/2002/07/31/dcmes-xml/dcmes-xml-dtd.dtd">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
xmlns:dc="http://purl.org/dc/elements/1.1/">
	<rdf:Description rdf:about="http://www.bham.ac.uk/">
		<dc:title>The University of Birmingham</dc:title>
		<dc:description>
The University of Birmingham, UK home page, including links
for prospective students, former students (alumni),
business and industry, and staff. There is also information
on research developments, about the University and
Birmingham.
    		</dc:description>
		<dc:date>2003-09-02</dc:date>
		<dc:format>text/html</dc:format>
		<dc:format>13455 bytes</dc:format>
		<dc:language>en-uk</dc:language>
		<dc:rights>http://www.general.bham.ac.uk/legal/</dc:rights>
	</rdf:Description>
</rdf:RDF>

IMS LOM

<?xml version="1.0" encoding="UTF-8"?>
<lom xmlns="http://www.imsglobal.org/xsd/imsmd_v1p2" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.imsglobal.org/xsd/imsmd_v1p2
http://www.rdn.ac.uk/publications/rdn-ltsn-ap/ims/imsmd_v1p2p2.xsd">
	<general>
		<title>
			<langstring xml:lang="en">The University of
Birmingham</langstring>
		</title>
		<language>en-uk</language>
		<description>
			<langstring xml:lang="en">The University of
Birmingham, UK home page, including links for prospective students, former
students (alumni), business and industry, and staff. There is also
information on research developments, about the University and
Birmingham.</langstring>
		</description>
	</general>
	<lifecycle>
  </lifecycle>
	<technical>
		<format>text/html</format>
		<location>http://www.bham.ac.uk/</location>
	</technical>
	<educational>
  </educational>
	<rights>
		<description>
	
<langstring>http://www.general.bham.ac.uk/legal/</langstring>
		</description>
	</rights>
</lom>

> -----Original Message-----
> From: Gilbert, John [mailto:John.Gilbert@hp.com]
> Sent: 04 September 2003 14:45
> To: www-rdf-dspace@w3.org
> Subject: Dublin Core to IMS/LOM
> 
> 
> 
> This may be of interest:
> 
> UKOLN have an online Dublin Core metadata editor tool, which 
> extracts Dublin
> Core from webpages and allows you edit it. Amongst other 
> features is the
> ability to convert the DC to IMS based on the IMS spec, and 
> LOM based on the
> IEEE LTSC spec.
> 
> http://www.ukoln.ac.uk/metadata/dcdot/
> 
> 1. enter a webpage url and hit submit
> 2. click convert metadata to [other formats]
> 3. select an appropriate format and click 'create'
> 
> JohnG.
> 

Received on Thursday, 4 September 2003 11:44:21 UTC