Index: modules/playlist/playlist.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/playlist/playlist.module,v
retrieving revision 1.11
diff -u -r1.11 playlist.module
--- modules/playlist/playlist.module	14 Oct 2005 06:14:04 -0000	1.11
+++ modules/playlist/playlist.module	19 Oct 2005 04:50:49 -0000
@@ -13,6 +13,21 @@
  */
 function playlist_help($section) {
   switch ($section) {
+    case 'admin/help#playlist':
+      $output = '<p>'. t('The playlist module allows users to arrange content into personal playlists. This module empowers users to become organizers of content as they re-order content from the site and create lists of their favorite content items.  Once users have selected their favorite nodes and re-ordered them, others can share their <a href="http://en.wikipedia.org/wiki/RSS_%28file_format%29">RSS feeds</a>, <a href="http://en.wikipedia.org/wiki/Xspf">XSPF playlists</a>, <a href="http://en.wikipedia.org/wiki/M3U">M3U playlists</a>, or <a href="%elink-gonze-com">PLS playlists</a>. For instance, users could make <a href="%elink-en-wikipedia-org">podcasts</a> of their favorite audio on a site, or custom playlists of favorite songs, similar to iTunes playlists.', array('%elink-en-wikipedia-org' => 'http://en.wikipedia.org/wiki/Podcasts', '%elink-gonze-com' => 'http://gonze.com/playlists/playlist-format-survey.html#PLS')) .'</p>';
+      $output .= '<p>'. t('An RSS feed of the playlist is automatically generated of the personal playlist based on the time that it was added to the playlist (not based on order!). The XSPF, M3U, and PLS format can be used to export an XML feed of the playlist based on playlist order, which is useful for sharing playlists.') .'</p>';
+      $output .= t('<p>You can:</p>
+<ul>
+<li>create a new playlist at <a href="%node-add-playlist">create content &gt;&gt; playlist</a>.</li>
+<li>view your playlists at <strong>my playlists</strong>.</li>
+<li>add new audio to a playlist via the <strong>add to playlist</strong> link on audio posts.
+<li>edit the title and description of the playlist via the <strong>edit</strong> tab for the playlist.
+<li>manage your playlist files via the <strong>manage playlist files</strong> tab for the playlist.
+</li>
+</ul>
+', array('%node-add-playlist' => url('node/add/playlist')));
+      $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%playlist">Playlist page</a>.', array('%playlist' => 'http://www.drupal.org/handbook/modules/playlist/')) .'</p>';
+      return $output;
     case 'admin/modules#description':
       return t('Enables the creation of playlists, which contain audio tracks.');
     case 'node/add#playlist':
