XSPF v1 Notes and Errata: Difference between revisions

From XiphWiki
Jump to navigation Jump to search
m (Links pointed to the draft not final version by mistake)
Line 49: Line 49:


== Whitespace==
== Whitespace==
Whitespace handling in XML can be a little difficult to understand at first.
Since XSPF is based on XML, people implementing XSPF readers or writers
do have to know about the basics of whitespace handling in XSPF.
The good things is we summed it up here to make things easier for you.
=== Ignore in non-leaf elements ===
Whitespace in elements only holding child elements but no text
must be ignored. This rul applies to these four elements:
* '''playlist'''
* '''playlist.attribution'''
* '''playlist.trackList'''
* '''playlist.trackList.track'''
=== Process in non-string leaf elements ===
TODO
=== Keep in "real" string leaf elements ===
Whitespace in string elements is significant and has to be preserved.
So if '''<annotation>''' contains line feeds the annotation text
really spans several lines:
<annotation>Line feeds and even spaces are preserved.
This example annotation spans two lines</annotation>
=== Do X in Extensions ===
TODO
TODO



Revision as of 15:45, 14 May 2007

This page lists errata of the XSPF version 1 document and also gives advice on using and understanding XSPF.

Notes

<trackList> and <trackNum> spelling

Please not that trackList and trackNum elements MUST NOT be written in all lowercase since XSPF is case-sensitive. These two are the only elements containing capital letters so just remember trackList and trackNum and your XSPF will be fine.

Absolute vs. relative URIs in key attibutes

The attributes rel (<meta> and <link>) and application (<extension>) are by XSPF v1 specification allowed to hold relative URIs. For example this meta element is legal in XSPF v1:

<meta rel="playCount">14</meta>

While this might look elegant it comes with several drawbacks:

  • You might easily forget that this string is a URI and include non-URI characters like spaces by mistake (e.g. rel="play count" is not valid)
  • You lose the namespace concept: nobody will know what or whom this key belongs to or came from

For these reasons it is strongly recommended to use absolute URIs as keys instead:

<meta rel="http://example.com/track/meta/playCount/1/0/">14</meta>

Version information in key attributes

When defining you own extensions to XSPF you will have to choose an application URI for your onw extensions:

<extension application="http://example.com/myext/">
  ..
</extension>

Please consider including version information in your application URIs and increase it whenever the structure of your extension changes:

<extension application="http://example.com/xspf/track/1/0/">
  ..
</extension>

This enables others to properly distinct different versions of your extensions without the need to do version guessing. Adding version information to rel of <meta> and <link> is a good idea as well:

<meta rel="http://example.com/track/meta/playCount/1/0/">14</meta>

Element order

TODO

Whitespace

Whitespace handling in XML can be a little difficult to understand at first. Since XSPF is based on XML, people implementing XSPF readers or writers do have to know about the basics of whitespace handling in XSPF. The good things is we summed it up here to make things easier for you.

Ignore in non-leaf elements

Whitespace in elements only holding child elements but no text must be ignored. This rul applies to these four elements:

  • playlist
  • playlist.attribution
  • playlist.trackList
  • playlist.trackList.track

Process in non-string leaf elements

TODO

Keep in "real" string leaf elements

Whitespace in string elements is significant and has to be preserved. So if <annotation> contains line feeds the annotation text really spans several lines:

<annotation>Line feeds and even spaces are preserved.
This example annotation spans two lines</annotation>

Do X in Extensions

TODO

Errata

4.1.1.2.12.2 content

This paragraph describes the content of playlist.meta. It also reads "xspf:playlist elements MAY contain exactly one" which does not make sense for the content of an element and can be safely ignored.

4.1.1.2.14.1.1.1.12.2 content

This paragraph describes the content of playlist.trackList.track.meta. It also reads "xspf:playlist elements MAY contain exactly one" which does not make sense for the content of an element and can be safely ignored.