W3C TF home

RDF in XHTML Taskforce - Current Issues (2005)


As of 2007-01-31 the RDFa issues list is no longer maintained here. The RDFa issues list is now in the SWD Issues Tracker.

The following issues are currently ongoing with respect to RDF/A.

Issues not yet resolved:

1. QNames in href and about

There is strong desire (?requirement?) for using QNames in place of URIs in order to achieve compactness of an HTML document instance. One use case expects to have substantial numbers of such URI references within a single document and wants to save storage space and transmission time.

Option A: qhref and qabout parallel href and about with datatype QName. see 2005-07-12 meeting record

Option B: a new syntax for distinguishing a QName from a URI; "compact URI". see Mark Birbeck message of 2005-07-19 and Jeremy Carroll's summary of qname/bnode proposal.

RESOLVED: Option B, we are using CURIEs. See telecon notes.

2. Reification

The concept of reification has been confusing and awkward to use (in RDF/XML at least).

Proposal: RDF/A does not need to support a compact notation for reification.

3. Custom Attributes for RDF shorthand

4. Role Attribute for RDF type declarations

Initial Motivation: to reduce the use of rdf:type in some examples.
Discussions:

Points of Debate about role: Points of Debate about class:

TENTATIVE RESOLUTION: class is rdf:type, while role is xhtml2:role.

5. (Local) blank node identifiers

How to refer to "blank nodes" (nodes that do not have an externally referencable identifer) from within an XHTML document. See "how do we get anonymous nodes?".

TENTATIVELY RESOLVED using CURIE: with the current CURIE approach, this is resolved.

HOWEVER, further discussion is under way.

UPDATE 2006-12-17 and TENTATIVE RESOLUTION: current tentative resolution is to use the REL attribute on other elements to allow striping and thus bnode creation without explicit names (see thread.)

6. Applying Metadata to the src URI

Images and Objects have a src attribute. There is currently no way to attach metadata to the URI value of that attribute without repeating the URI in an about attribute. Should we find a way to change this such that the image or object URI is not repeated?

A few options:

TENTATIVELY RESOLVED as YES: but pending some further report from MarkB and the HTML WG on the nature of the src attribute.

TENTATIVELY CHANGED to NO: src should behave like href for RDF/A, it's an object, not a subject. See telecon notes.

7. Syntactic Sugar for class attribute

Should the class attribute be syntactic sugar for rdf:type? Consider the following XHTML:

<div class="biblio:Publication"> <meta property="dc:title">A Standards-Based Virtual Machine</meta> </div>

which would, under this new syntactic sugar, provide the following triples:

_:div0 rdf:type biblio:Publication . _:div0 dc:title "A Standards-Based Virtual Machine" .

The class attribute would allow for multiple values, just like the current definition. Each value would be the object of a new triple.

CLOSED: this is the same issue as Issue #4. Resolution will come from resolution to that issue.

8. Reifying Any Statement, not just link or meta.

We may want to reify any existing RDF/A statement, not just those expressed with link or meta. In fact, we can do this without complicating the processor at all. Simply, when trying to determine the subject or object of an RDF/A element by traveling up the DOM tree (or checking the immediate parent in the case of a link or meta), if an element with a rev,rel, or property attribute is encountered first, then the child RDF/A statement has, as subject or object, that reified parent statement.

For example:

This document is licensed under a <a about="" rel="cc:license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/"> Creative Commons License <meta property="dc:creator" content="Ben Adida" /> </a>

would yield the following:

[ <> cc:license <http://creativecommons.org/licenses/by-nc-nd/2.5/> ] dc:creator "Ben Adida" .

DEFERRED: No action will be taken on this proposal in this task force, as per telecon.

Should a link element be allowed to have content which would then be clickable? The reason for this is that link plays a special role, e.g. in reification and blank node annotation, and it doesn't seem like a good idea to exclude clickable links from those special roles.

For example, assuming one wants to say that "Fyodor Dostoyevsky" is the author of a quotation, one could write the following statement:

<blockquote> <p> Rodion Romanovitch! My dear friend! If you go on in this way you will go mad, I am positive! Drink, pray, if only a few drops! </p> -- <link rel="dc:creator" href="http://dostoyevsky.com">Fyodor Dostoyevsky</link> </blockquote>

RESOLVED: Any visible HTML element with an href attribute is clickable. However, at the XHTML WG's discretion, link and meta may be display:none by default. See TF Telecon Notes from 2006-02-06.

10. Predicate Inheritance

It may be possible to reintroduce predicate inheritance without exploding the complexity of the processor. The way to limit this feature while maintaining its advantage is to mandate that a predicate is always inherited along with its subject, and that children elements cannot override the subject and expect to inherit the predicate.

Here's how it's useful:

<div about="#publication_2" id="publication_2" class="biblio:Publication"> <link rel="dc:creator" href="http://www.blogger.com/profile/1109404" /> <meta property="dc:title">XForms and Internet Applications</meta> Tags: <ul rel="taxo:topics"> <li href="#tag_standards">Standards</li> <li href="#tag_xforms">XForms</li> </ul> </div>

Note how the ul element clearly inherits the about from the div, which is then the subject of all triples with predicate taxo:topics. The result is:

<#publication_2> rdf:type biblio:Publication . <#publication_2> dc:creator <http://www.blogger.com/profile/1109404> <#publication_2> dc:title "XForms and Internet Applications" . <#publication_2> taxo:topics <#tag_standards> . <#publication_2> taxo:topics <#tag_xforms> .

The general rule is that an RDF/A element without a predicate will search up the DOM tree for the closest predicate-containing element. That predicate-containing element cannot have its own object within the same element. Subject resolution then begins on that predicate-containing element.

RESOLVED: NO further inheritance, as per telecon.

11. Curie Base

If a CURIE is unqualified, what is its base? It could be either the current URI base, or the default namespace.

RESOLVED, in telecon, as Default Namespace.

12. CURIEs in Predicate Attributes

Currently, about and href attributes are of type CURIE/URI, which means that the value of the attribute can be either a CURIE or a URI. When it is a CURIE, it needs to be wrapped in square brackets as follows: [cc:license], in order to differentiate CURIEs from URIs.

Should rel, rev, property have the same CURIE/URI type? Or should they be CURIE only, since there is no precedent for them being URIs?

The advantage of CURIE only is that we get automatic backwards compatibility for things like rel="next", which would be interpreted as CURIE in the default XML namespace of xhtml2.

If we go with CURIE/URI, then we can always declare parser-level legacy conditions for things like rel="next", which would immediately be transformed into rel="[next]" or maybe even more directly to rel="[xhtml2:next]".

Details discussed during telecon.

Debate continuing on the mailing list.

13. Plain Literals

Given the RDF/A statement:

<meta about="" property="dc:creator"><b>B</b>en <b>A</b>adida</meta>

How might one designate that the value of the object should be the plain literal "Ben Adida"? Should there be some means of instructing the parser to concatenate all the text elements of children elements?

TENTATIVE RESOLUTION: The complications of solving this case seem unnecessary for the problem at hand. Currently, we recommend using the content attribute.

14. xml:lang

In the current RDF/A Syntax document (as of 2005-11-27), xml:lang is discarded for XML literals. While this may have been okay for RDF/XML, it's much worse for XHTML, which should be treated with "more respect." The fix for this may involve adding an extra SPAN or DIV as appropriate to XML literals.

15. Comments from Christian Hoertnagl

We need to address all comments from Christian Hoertnagl.

16. RDF/A Containers: Addressing DL

The RDF/A Containers proposal does not address DL. We should eventually address it.

17. head edge case: default about

What happens if the head of an HTML document has an explicit about attribute?

Proposed Resolution: the default subject for the whole document is then the value of that about. This is particularly useful for those web pages that describe a non-information resource.

RESOLVED: NOT the above proposal. Instead, about is consistently inherited, but there is an assumed about="" on the head to ensure that meta and link are backwards compatible. See telecon notes.

What happens if we nest meta's and link's

This is closely tied to the issue on reifying any statement

Proposed Resolution: the subject of the inners are the same as the subject of the outer. In particular, if the outer has a about, then that's the subject for the inners. If the outer has not about, then the subject is the outer's immediate parent. A good example is found here.

19. XHTML 1.1 Namespace doesn't end in / or #

How can we resolve CURIEs?

Note (2006-05-13): as the TF is considering grounding CURIEs in the current URI (possibly followed by "#"), this may no longer be an issue.

20. rel,rev,property is CURIE, or CURIEs?

RESOLVED: CURIES, plural, as per telecon

21. hGRDDL as a general way to transform HTML into HTML with RDFa

The task force needs to cooperate with the GRDDL folks to think about the hGRDDL proposal.

In addition to this proposal, the task force is considering default hGRDDL profiles for XHTML1 and XHTML2, which would resolve issues such as rel="next". This may require GRDDL to think about pipelining for multiple transformations.

22. Section 3 of the Primer should be better motivated.

Gary Ng says that Section 3 of the Primer should be better motivated, a bit more like section 2.

23. The RDFa syntax document.

The RDFa Syntax document has some bugs and is out of date. This is a non-inclusive list:

24. EliasT and LeeF comments.

EliasT sent comments on June 3rd, 2006 regarding the RDFa Syntax document.

LeeF sent comments on May 31st, 2006 regarding the RDFa Primer document.

These comment should be addressed ASAP.


$Revision: 1.38 $ of $Date: 2007/02/14 13:09:20 $