I was thinking that a user who had a website (storage area) could create there own pod-cast, and they would need a way to generate a pod-cast play list.
so lets say in media center you created a play-list for the week, month, year etc...
lets say this list has 365 media files in it
and you wanted to create multiple play-lists
you could use a program that would take this list and create lets say 365 pod-cast play lists from today's date to a year from now.
you could set this Plug-in to include so many files within each one of the play-lists so if today's play list may include 7 files, tomorrow could include 7 files but drop one file, and pick a new file to play into the list. once you run out of files it would continue generating play-lists taking files from the beginning of the list.
so you may have a setting for, number of play lists, number of files in a play list, increment file (#1 in the case above it would be 1).
so when a user logs onto a page you could create (in this case a index.html) to redirect to one of 365 pages, or maybe 12 pages for 1 play-list for each month.
this code put in a index.html would redirect a user to one of 12 html pages depending on the month of the year
============================================================
<html>
<head>
<script type="text/javascript">
<!-- Begin
function monthPage() {
today = new Date();
m = new Array("Index-01.html","Index-02.html","Index-03.html","Index-04.html","Index-05.html","Index-06.html","Index-07.html","Index-08.html","Index-09.html","Index-10.html","Index-11.html","Index-12.html");
window.location = m[today.getMonth()];
}
// End -->
</script>
</head>
<body onload="monthPage()">
</body>
</html>
=========================================================
maybe this plug-in could also generate html pages for you to increment the play-list.