- From: Manu Sporny <msporny@digitalbazaar.com>
- Date: Tue, 07 Aug 2007 22:58:17 -0400
- To: RDFa mailing list <public-rdf-in-xhtml-tf@w3.org>
Hausenblas, Michael wrote:
> Not tested, but what's about:
>
> <div instanceof="hmedia:Audio" about="#song">
> <span instanceof="hmedia:Sample" about="#song_sample"
> <a rel="hmedia:uri" about="#song_sample"
> href="http://www.bitmunk.com/sample/6011101"
> property="dc:title" content="Listen to a Sample">
> </a>
> </div>
>
> Ok, it does not visually render in the browser,
> but I does address your issue, right?
Yes, I think that addresses part of the issue. We're concerned about
visually rendering that in the browser as well... what we would like is
the following:
- Something that doesn't require the use of an extra RDFa class
- Simpler, more straight-forward markup when specifying URL display
characteristics
- Visible data
- In general, better usability
something like this:
<div instanceof="hmedia:Audio" about="#song">
<a href="http://www.bitmunk.com/sample/6011101"
rel="hmedia:sample" about="#HREF" property="dc:title">
A Sample
</a>
</div>
or in other words, we'd like the following (N3):
<#song> rdf:type hmedia:Audio;
hmedia:sample <http://www.bitmunk.com/sample/6011101> .
<http://www.bitmunk.com/sample/6011101> dc:title "A Sample" .
Niklas, apologies, as it seems that I didn't state the problem very well
the first time around :) - we'd like something a bit more terse than
what you proposed (even though it did solve the problem I had previously
stated).
Apologies if this makes no sense, as I'm still coming up to speed with
what is/isn't possible via chaining in RDFa. Can we get the above N3
without having to use a hmedia:Sample class?
-- manu
--
Manu Sporny
President/CEO, Digital Bazaar, Inc.
Starfish Distributed Filesystem Launched
http://blog.digitalbazaar.com/2007/03/19/googlefs-for-the-rest-of-us/
Received on Wednesday, 8 August 2007 02:58:34 UTC