alternates-brainstorming: Difference between revisions
Jump to navigation
Jump to search
DavidJanes (talk | contribs) |
DavidJanes (talk | contribs) |
||
Line 72: | Line 72: | ||
<pre><nowiki> | <pre><nowiki> | ||
< | <ol class="altgroup"> | ||
<li><a href="example.mp3" type="audio/mpeg">MP3 alternative</a></li> | <li><a href="example.mp3" type="audio/mpeg">MP3 alternative</a></li> | ||
<li><a href="example.wav" type="audio/wav">WAV alternative</a></li> | <li><a href="example.wav" type="audio/wav">WAV alternative</a></li> | ||
<li><a href="example.mov" type="video/quicktime">MOV alternative</a></li> | <li><a href="example.mov" type="video/quicktime">MOV alternative</a></li> | ||
</ | </ol> | ||
</nowiki></pre> | </nowiki></pre> | ||
Revision as of 00:23, 18 November 2005
Introduction
This page is to talk about alternates, that is, places where a user may be given several different items to choose amongst that at some logical level are considered equivalent.
Discussion Participants
Editor
Authors
- David Janes, BlogMatrix, Inc.
- Lucas Gonze
- Greg Borenstein
Interested Folks
Brainstorms
Strawman 1
<fieldset> <a href="example.mp3" type="audio/mpeg">MP3 alternative</a> <a href="example.wav" type="audio/wav">WAV alternative</a> <a href="example.mov" type="video/quicktime">MOV alternative</a> </fieldset>
Discussion
- is legal but warps XHTML definitions -- David Janes
Strawman 2
<select id="entryN"> <option value="example.mp3">MP3 alternative</option> <option value="example.mov">WAV alternative</option> <option value="example.wav">MOV alternative</option> </select>
Discussion
- is legal but warps XHTML definitions -- David Janes
- butt ugly, probably beyond redemption -- David Janes
Strawman 3
<div class="altgroup"> <a class="alternate" href="example.mp3" type="audio/mpeg">MP3 alternative</a> <a class="alternate" href="example.wav" type="audio/wav">WAV alternative</a> <a class="alternate" href="example.mov" type="video/quicktime">MOV alternative</a> </div>
Discussion
Strawman 4 (lists)
An example of a list that expresses no preference.
<ul class="altgroup"> <li><a href="example.mp3" type="audio/mpeg">MP3 alternative</a></li> <li><a href="example.wav" type="audio/wav">WAV alternative</a></li> <li><a href="example.mov" type="video/quicktime">MOV alternative</a></li> </ul>
An example of a list that expresses a preference (i.e. first is best, last is worst)
<ol class="altgroup"> <li><a href="example.mp3" type="audio/mpeg">MP3 alternative</a></li> <li><a href="example.wav" type="audio/wav">WAV alternative</a></li> <li><a href="example.mov" type="video/quicktime">MOV alternative</a></li> </ol>
Discussion
- this rocks, though I'm a little indifferent to altgroup. The only downside is that 'loosely coupled' alternates may not be covered; on the other hand, this may not be so much of an issue. We will know more from the examples -- David Janes
See Also
- alternates-examples
- alternates-brainstorming
- media-metadata-examples -- Yahoo's Media RSS uses this