<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Time-stamp: "2007-03-28 23:01:27 ADT"

XSL for generating an m3u playlist file from an RSS-with-enclosures
podcast.  Not guaranteed to be brilliantly robust, but try it and see.

-->
<stylesheet version="1.0"
  xmlns = "http://www.w3.org/1999/XSL/Transform"
  xmlns:rss = "http://purl.org/rss/1.0/"
>

<output method="text" encoding="utf-8"/>

<template match="/">#EXTM3U&#13;
<for-each select="/rss/channel/item"
>#EXTINF:-1, <value-of select="description" /> - <value-of select="title" /><text>&#13;
</text><value-of select="enclosure/@url" /><text>&#13;
</text></for-each></template></stylesheet>
