178 lines
7.9 KiB
HTML
178 lines
7.9 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
|
|
<link rel="stylesheet" type="text/css" href="sdd1.css">
|
|
</head>
|
|
<body bgcolor="#ffffff">
|
|
<a name="PageTop"></a>
|
|
<p />
|
|
<h2><a name="SDD_Part_0_Introduction_and_Prim"></a> SDD Part 0: Introduction and Primer to the SDD Standard </h2>
|
|
<p />
|
|
<h3><a name="3_12_Attaching_Media_to_SDD_Item"></a> 3.12 Attaching Media to SDD Items </h3>
|
|
<p />
|
|
<h4><a name="3_12_1_Media_resources_in_SDD"></a><a name="3_12_1_Media_resources_in_SDD_"></a> 3.12.1 Media resources in SDD. </h4>
|
|
<p />
|
|
<p />
|
|
The location of media in an SDD instance document is represented by a simple resource list. Media may include images (.jpeg, .png etc.), sound, video and web resources. SDD allows external references, embedded resource data, and provides for a multilingual caption.
|
|
<p />
|
|
Media items are defined within the <MediaObjects> element and simply referenced each time they are used elsewhere in an SDD instance document.
|
|
<p />
|
|
Simple SDD code for associated media has the basic structure shown below and in Example 3.12.1.1.
|
|
<p />
|
|
<img alt="media.gif" src="http://wiki.tdwg.org/twiki/static/_publish/media.gif" />
|
|
<p />
|
|
<h4><a name="Example_3_12_1_1_A_simple_SDD_me"></a> Example 3.12.1.1 - A simple SDD media dialog </h4>
|
|
<p />
|
|
<table bgcolor="#ddddff" border="0" width="100%" cellpadding="5" cellspacing="5" style="border-collapse: collapse" bordercolor="#111111">
|
|
<p />
|
|
<tr>
|
|
<td>
|
|
<p />
|
|
<p />
|
|
<pre>
|
|
<MediaObjects>
|
|
<MediaObject id="m1">
|
|
<Representation>
|
|
<Label>Image description, e. g., to be used for alt-attribute in html.</Label>
|
|
</Representation>
|
|
<Type>Text</Type>
|
|
<Data href="file:/Media/Html/Gleditsia_triacanthos.htm"/>
|
|
</MediaObject>
|
|
<MediaObject id="m2">
|
|
<Representation>
|
|
<Label>No caption</Label>
|
|
</Representation>
|
|
<Type>Image</Type>
|
|
<Data href="file:/Media/Images/Gleditsia triacanthos.jpg"/>
|
|
</MediaObject>
|
|
</MediaObjects>
|
|
</pre>
|
|
<p />
|
|
</td>
|
|
</tr>
|
|
<p />
|
|
</table>
|
|
<p />
|
|
The location of locally stored media objects is defined relative to the SDD instance document.
|
|
<p />
|
|
The <Representation> element provides a label for the media object. This may be useful if the instance document includes multiple descriptions for different purposes, or is intended for publication in multiple languages (see the topic <a href="sddlanguage.html">Language support in SDD</a>.
|
|
<p />
|
|
<Owners> refers to a person, persons or institution defined in the SDD <a href="sddagents.html"><Agents></a> element.
|
|
<p />
|
|
<IPRStatements> records the original source of media (for example the full citation for a publication). and any restrictions on useage. May contain URL to IPR statements external to the SDD instance document.
|
|
<p />
|
|
Media items are defined once and referenced for each useage. Multiple media items of different types may be referenced for an item.
|
|
<p />
|
|
<h4><a name="Example_3_12_1_2_Referencing_med"></a> Example 3.12.1.2 - Referencing media </h4>
|
|
<p />
|
|
<table bgcolor="#ddddff" border="0" width="100%" cellpadding="5" cellspacing="5" style="border-collapse: collapse" bordercolor="#111111">
|
|
<p />
|
|
<tr>
|
|
<td>
|
|
<p />
|
|
<p />
|
|
<pre>
|
|
<Dataset>
|
|
|
|
<TaxonNames>
|
|
<TaxonName id="t1">
|
|
<Representation>
|
|
<Label>Gleditsia triacanthos</Label>
|
|
<MediaObject ref="m1"/>
|
|
<MediaObject ref="m2"/>
|
|
</Representation>
|
|
</TaxonName>
|
|
</TaxonNames>
|
|
<Characters>
|
|
<CategoricalCharacter id="c1">
|
|
<Representation>
|
|
<Label>Armature</Label>
|
|
</Representation>
|
|
<States>
|
|
<StateDefinition id="s1">
|
|
<Representation>
|
|
<Label>armed</Label>
|
|
<MediaObject ref="m3"/>
|
|
<MediaObject ref="m4"/>
|
|
</Representation>
|
|
</StateDefinition>
|
|
</States>
|
|
</CategoricalCharacter>
|
|
</Characters>
|
|
<MediaObjects>
|
|
... media dialog goes here
|
|
</MediaObjects>
|
|
|
|
</Dataset>
|
|
|
|
</pre>
|
|
<p />
|
|
</td>
|
|
</tr>
|
|
<p />
|
|
</table>
|
|
<p />
|
|
Associated information may include captions, web addresses and translations. Media may be directly embedded in the SDD code instead of referenced with a URL.
|
|
<p />
|
|
<h4><a name="Example_3_12_1_3_Associated_info"></a> Example 3.12.1.3 - Associated information for embedded media </h4>
|
|
<p />
|
|
<table bgcolor="#ddddff" border="0" width="100%" cellpadding="5" cellspacing="5" style="border-collapse: collapse" bordercolor="#111111">
|
|
<p />
|
|
<tr>
|
|
<td>
|
|
<p />
|
|
<p />
|
|
<pre>
|
|
<MediaObjects>
|
|
<MediaObject id="m1" uri="urn:lsid:local:local:129739128">
|
|
<Representation>
|
|
<Label>Image description, e. g., to be used for alt-attribute in html.</Label>
|
|
</Representation>
|
|
<Owners>
|
|
<Agent ref="a1" role="own "/>
|
|
</Owners>
|
|
<Type>Image</Type>
|
|
<Data href="http://test.edu/test.jpg"/>
|
|
</MediaObject>
|
|
<MediaObject id="m2">
|
|
<Representation>
|
|
<Label>Morning call of Homo sapiens</Label>
|
|
</Representation>
|
|
<Type>Sound</Type>
|
|
<Data href="http://test.edu/123.mp3"/>
|
|
</MediaObject>
|
|
<MediaObject id="m3">
|
|
<Representation>
|
|
<Label>Melampsora evonymi-caprearum</Label>
|
|
<!-- Details like Caption are optional -->
|
|
<Detail role="Caption" xml:lang="fr"><i>Melampsora evonymi-caprearum</i> Kleb., stade II sur <i>Salix caprea</i>L.</Detail>
|
|
<Detail role="Caption" xml:lang="de"><i>Melampsora evonymi-caprearum</i> Kleb., Sporenstadium II auf <i>Salix caprea</i> L.</Detail>
|
|
<Detail role="Caption" xml:lang="en"><i>Melampsora evonymi-caprearum</i> Kleb., spore stage II on <i>Salix caprea</i> L.</Detail>
|
|
</Representation>
|
|
<Type>Image</Type>
|
|
<!-- Optionally Resources may be included rather than referencenced through URIs.
|
|
An additional href specifying the source of the encoded resource is optional (in addition to the encoded content) -->
|
|
<EncodedData ContentType="image/png" href="http://test.edu/Melampsora_evonymi-caprearum.png">R0lGODlhcgGSALMAAAQCAEMmCZtuMFQxDS8b</EncodedData>
|
|
</MediaObject>
|
|
</MediaObjects>
|
|
</pre>
|
|
<p />
|
|
</td>
|
|
</tr>
|
|
<p />
|
|
</table>
|
|
<p />
|
|
Available "roles" within the <Detail> element are; Abstract, Caption, Coverage, Description, Normative and UnknownDetailRole.
|
|
<p />
|
|
If resources are included within the SDD instance document they should be directly encoded, i.e. not wrapped into a MIME object first.
|
|
<p />
|
|
<p />
|
|
<p />
|
|
<p />
|
|
<p />
|
|
<p />
|
|
-- DonovanSharp - 05 Jun 2006
|
|
<p />
|
|
<p />
|
|
</body></html> |