This Version: November 8, 2002
Latest Version: http://www.rddl.org/
Previous Version: March 5, 2001
Editors:
rddl:resource
Elementrddl:resource
xlink:role
xlink:arcrole
xlink:href
xlink:title
xlink:type
xlink:show
and xlink:actuate
rddl:nature
rddl:purpose
rddl:title
This document describes the Resource Directory Description Language (RDDL). A RDDL document, called a Resource Directory, provides a package of information about some target, including:
This version of the specification describes two versions of the Resource Directory syntax; one in XLink and another in RDF. XLink-specific material is visually distinguished like this. RDF-specific material is visually distinguished like this.
For purposes of this discussion, we assume that the XLink
namespace http://www.w3.org/1999/xlink
is bound to
the prefix xlink
, that the RDF
namespace http://www.w3.org/1999/02/22-rdf-syntax-ns#
is
bound the prefix rdf
, and that the
namespace http://www.rddl.org/
is bound to the prefix rddl
.
A DTD for RDDL has been defined using Modularization for XHTML.
This document describes the syntax and semantics of the Resource Directory Description Language 1.0,
and also serves as a Resource Directory Description for the namespace http://www.rddl.org/
.
This specification is subject to change without notice.
However, each version is associated with a version specific URI.
Version specific RDDL namespace URIs are named as: "http://www.rddl.org/" + YYYYMMDD.
Backwards incompatible changes will be publicly announced and associated with
a new namespace URI.
The Resource Directory Description Language was initially proposed and
specified after discussion on the xml-dev mailing list.
Extending HTML with a resource
element was proposed in 1996 by Tim Berners-Lee and Dave Raggett.
RDDL reflects contributions from many participants in the xml-dev mailing
list
This document has no official standing and has not been considered nor approved by any organization.
The Resource Directory Description Language is an extension of XHTML Basic
1.0 with an added element named resource
.
This element serves as an XLink to the referenced resource, and contains
a human-readable description of the resource and machine readable links which describe
the purpose of the link and the nature of the resource being linked to.
The nature of the resource being linked to is indicated by the xlink:role
attribute and the purpose of the link is indicated by the xlink:arcrole
attribute.
The Resource Directory Description Language is an extension of XHTML Basic 1.0
with an added element named resource
into
which RDF Descriptions are inserted.
These assertions are about a
related resource, identified by URI.
An arbitrary number of properties may be asserted concerning each related
resource; several convenient ones are predefined in the RDDL vocabulary.
Only one is required, a property identified as rddl:prose
which
identifies a human-readable description of that resource.
Of the other predefined properties, the two most important are identified
as rddl:nature
and rddl:purpose
which
respectively identify the nature and purpose of the related resource.
For example, suppose that the XML Namespace identified
by http://example.com/L
has a DTD
at http://example.com/schemas/L.dtd
, a RelaxNG schema
at http://example.com/schemas/L.rng
, and user documentation
at http://example.com/docs/L.html
.
Here is a RDDL document that could be served as a
representation of http://example.com/L
.
<html xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:rddl="http://www.rddl.org/" > <head><title>RDDL Description for http://example.org/L</title></head> <body><h1>RDDL Description for http://example.org/L</h1> <p>This document describes the "L" namespace and provides links to related resources</p> <rddl:resource xlink:type="simple" xlink:title="DTD" xlink:role="http://www.isi.edu/in-notes/iana/assignments/media-types/application/xml-dtd" xlink:arcrole="http://www.rddl.org/purposes#validation" xlink:href="http://example.org/schemas/L.dtd"> <p>A DTD for the L language.</p> </rddl:resource> <rddl:resource xlink:type="simple" xlink:title="Relax NG Schema" xlink:role="http://relaxng.org/ns/structure/1.0" xlink:arcrole="http://www.rddl.org/purposes#validation" xlink:href="http://example.org/schemas/L.rng"> <p>A RelaxNG schema for the L language.</p> </rddl:resource> <rddl:resource xlink:type="simple" xlink:title="User Documentation" xlink:role="http://www.w3.org/1999/xhtml" xlink:arcrole="http://www.rddl.org/purposes#reference" xlink:href="http://example.org/schemas/L.html"> <p>Reference documentation for L, in XHTML.</p> </rddl:resource> </body> </html>
<html xmlns:rddl="http://www.rddl.org/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" > <head><title>RDDL Description for http://example.org/L</title></head> <body><h1>RDDL Description for http://example.org/L</h1> <p>This document describes the "L" namespace and provides links to related resources</p> <rddl:resource> <rdf:description about="http://example.org/schemas/L.dtd" rddl:title="DTD"> <rddl:nature rdf:resource= "http://www.isi.edu/in-notes/iana/assignments/media-types/application/xml-dtd" /> <rddl:purpose rdf:resource="http://www.rddl.org/purposes#validation" /> <rddl:prose><p>A DTD for the L language.</p></rddl:prose> </rdf:description> </rddl:resource> <rddl:resource> <p id="rng-prose">A RelaxNG schema for the L language.</p> <rdf:description about="http://example.org/schemas/L.rng" rddl:title="Relax NG Schema"> <rddl:nature rdf:resource="http://relaxng.org/ns/structure/1.0" /> <rddl:purpose rdf:resource="http://www.rddl.org/purposes#validation" /> <rddl:prose rdf:resource="#rng-prose" /> </rdf:description> </rddl:resource> <rddl:resource> <rdf:description about="http://example.org/schemas/L.html" rddl:title="User Documentation"> <rddl:nature rdf:resource="http://www.w3.org/1999/xhtml" /> <rddl:purpose rdf:resource="http://www.rddl.org/purposes#reference"/> <rddl:prose> <p>Reference documentation for L, in XHTML.</p> </rddl:prose> </rdf:description> </rddl:resource> </body> </html>
XML Namespaces are identified by a URI. If the URI can be dereferenced to yield a representation of the namespace, the representation can be referred to as a "namespace document". Resource Directories as defined by RDDL are designed to serve as namespace documents. It should be emphasized, though, that for a large proportion of applications, there is no requirement or expectation that namespace documents be retrieved at run-time, whether the namespace document is in RDDL or any other form.
The RDF specification requires that RDF assertions be packaged in an XML
document whose root element is in the RDF namespace and whose local part is
RDF
, conventionally written <rdf:RDF>
.
The design of RDDL assumes that the embedded RDF assertions about related
resources are an integral part of a RDDL document and are to read and used
according to RDF semantics.
One (roundabout) way to achieve this would be to subject a RDDL document to
a preprocessing step that extracted all RDF assertions and wrapped them in
an <rdf:RDF>
root element.
Related resources have a nature, a
machine-readable label provided by
the value of the xlink:role
attribute.
Related resources have a nature, a
machine-readable label provided by
the value of the rddl:nature
property.
For example, the nature of an XML Schema designed for use with a namespace
would be given as "http://www.w3.org/2001/XMLSchema"
.
In cases where there is only one resource with a particular nature, the purpose of the linked resource may be inferred from this nature. For example, if there is only one related resource for a particular namespace whose nature indicates that it is a schema, processing software might infer that its purpose is to validate elements in that namespace.
Related resources may have a purpose,
a machine-readable label provided by the value of the xlink:arcrole
attribute.
Related resources may have a purpose, a
machine-readable label provided by the value of the rddl:purpose
property.
The purpose is designed to convey the intended usage of the related resource.
For example, two related resources might have natures that indicate they
are both schemas, but the purposes might indicate that one is designed to
validate the "strict" version of the language, the other the "forgiving" form.
rddl:resource
ElementThe resource
element is in a namespace whose name
is http://www.rddl.org/
.
In this discussion, we assume the use of the namespace prefix
rddl
, and refer to this element as rddl:resource
.
The rddl:resource
element represents a
simple xlink, using the
attributes defined in the XLink namespace.
The rddl:resource
element contains one or
more RDF assertions about the related resource.
The rddl:resource
must occur in the content of the HTML body
element.
In the RDDL DTD, the XHTML %Flow.mix entity has been
redefined to contain rddl:resource
so it roughly may be placed anywhere a p
element may be placed.
The rddl:resource
element itself uses the %Flow.mix content model, and should have human-readable content
which describes the associated resource.
Here is a DTD fragment declaring the rddl:resource
element,
edited for clarity.
<!ELEMENT rddl:resource (#PCDATA | %Flow.mix;)*> <!ATTLIST rddl:resource id ID #IMPLIED xml:lang NMTOKEN #IMPLIED xml:base CDATA #IMPLIED xmlns:rddl CDATA #FIXED "http://www.rddl.org/" xlink:type (simple) #FIXED "simple" xlink:arcrole CDATA #IMPLIED xlink:role CDATA "http://www.rddl.org/#resource" xlink:href CDATA #IMPLIED xlink:title CDATA #IMPLIED xlink:show CDATA #FIXED "none" xlink:actuate CDATA #FIXED "none" >
The id
attribute value may be used to give the resource
description a unique identifier.
The rdf:ID
attribute value may be used to give the resource
description a unique identifier.
The base URI of a RDDL document may be specified according to the W3C XML Base recommendation.
The xml:base
attribute may be specified on the root html
element or on a rddl:resource
element.
Future versions of XHTML may allow the use of xml:base
on some or all XHTML elements,
and its semantics should apply even when on another XHTML element, for example
the body
, or div
element,
that contains a rddl:resource
element.
The language of the text contained by an element is specified by the xml:lang attribute.
This attribute can be specified on
XHTML elements and on the rddl:resource
element.
An html
element in an XHTML document may specify both lang
and xml:lang
attributes,
but the lang
attribute is not used by RDDL processors.
rddl:resource
In the following discussion, several attributes appear which are defined by XLink.
xlink:role
The value of this attribute must be a URI reference. A URI reference may contain a URI part and a fragment identifier. Per XLink, when present the URI part must be an absolute URI. It provides a machine-readable identifier for the nature of the related resource. Software may dispatch on this value.
When the related resource is an XML language for which a namespace name has been defined, and for which the namespace name adequately distinguishes the nature of the resource, the namespace name should be used as its nature.
When the related resource is not an XML document but is adequately distinguished by a MIME type, the value of the
xlink:role
attribute may reflect this MIME type with values formed by the concatenation of the prefix
http://www.isi.edu/in-notes/iana/assignments/media-types/
with a MIME type e.g.
http://www.isi.edu/in-notes/iana/assignments/media-types/text/css
.
It is anticipated that many related-resource natures will be well known. A list of well-known natures may be found in the RDDL directory http://www.rddl.org/natures.
If no nature is provided for a related resource, the default value is
http://www.rddl.org/#resource
.
xlink:arcrole
The value of this attribute must be a URI reference. A URI reference may contain a URI part and a fragment identifier. Per XLink, when present the URI part must be an absolute URI. It provides a machine-readable identifier for the purpose of the link to the related resource. Software may dispatch on this value.
It is anticipated that the purposes of many related resources will be well known. A list of well-known purposes may be found in the RDDL directory http://www.rddl.org/purposes.
xlink:href
This XLink locator attribute's value is a URI reference to the target related resource.
xlink:title
A human readable short descriptive title. This should be specified but not be seen as a replacement for descriptive content.
xlink:type
The xlink:type
is always "simple" in this version of the specification.
xlink:show
and xlink:actuate
Not used. The only legal value is "none".
rddl:nature
The value of this attribute must be a URI reference. It provides a machine-readable identifier for the nature of the related resource. Software may dispatch on this value.
When the related resource is an XML language for which a namespace name has been defined, and for which the namespace name adequately distinguishes the nature of the resource, the namespace name should be used as its nature.
When the related resource is not an XML document but is adequately
distinguished by a MIME type, the value of the rddl:nature
property may reflect this MIME type with values formed by the concatenation
of the prefix
http://www.isi.edu/in-notes/iana/assignments/media-types/
with a MIME type e.g.
http://www.isi.edu/in-notes/iana/assignments/media-types/text/css
.
It is anticipated that many related-resource natures will be well known. A list of well-known natures may be found in the RDDL directory http://www.rddl.org/natures.
If no nature is provided for a related resource, the default value is
http://www.rddl.org/#resource
.
rddl:purpose
The value of this property must be a URI reference. It provides a machine-readable identifier for the purpose of the link to the related resource. Software may dispatch on this value.
It is anticipated that the purposes of many related resources will be well known. A list of well-known purposes may be found in the RDDL directory http://www.rddl.org/purposes.
rddl:title
A human readable short descriptive title.
This should be specified but not be seen as a replacement for descriptive
content to be provided in rddl:prose
.