From 0f839d0f799eeb778cf085fea3a8a7715fc72ddf Mon Sep 17 00:00:00 2001 Message-Id: <0f839d0f799eeb778cf085fea3a8a7715fc72ddf.1715122466.git.mdw@distorted.org.uk> From: Mark Wooding Date: Thu, 26 Nov 2009 18:58:20 +0000 Subject: [PATCH] Playlists and misc Organization: Straylight/Edgeware From: Richard Kettlewell --- disobedience/manual/Makefile.am | 7 +- disobedience/manual/index.html | 13 ++++ disobedience/manual/misc.html | 72 ++++++++++++++++++++ disobedience/manual/playlists.html | 105 +++++++++++++++++++++++++++++ 4 files changed, 194 insertions(+), 3 deletions(-) create mode 100644 disobedience/manual/misc.html create mode 100644 disobedience/manual/playlists.html diff --git a/disobedience/manual/Makefile.am b/disobedience/manual/Makefile.am index 6eddcbc..bb86aa3 100644 --- a/disobedience/manual/Makefile.am +++ b/disobedience/manual/Makefile.am @@ -16,12 +16,13 @@ # along with this program. If not, see . # -dochtml_DATA=index.html intro.html tabs.html window.html \ - disobedience.css \ +dochtml_DATA=index.html intro.html misc.html playlists.html \ + properties.html tabs.html window.html disobedience.css \ arch-simple.png button-pause.png button-playing.png \ button-random.png button-rtp.png button-scratch.png \ choose-search.png choose.png disobedience-debian-menu.png \ disobedience-terminal.png disorder-email-confirm.png \ disorder-web-login.png login.png menu-control.png \ menu-edit.png menu-help.png menu-server.png queue-menu.png \ - queue.png queue2.png recent.png volume-slider.png + queue.png queue2.png recent.png track-properties.png \ + volume-slider.png diff --git a/disobedience/manual/index.html b/disobedience/manual/index.html index 7e37478..a6a2136 100644 --- a/disobedience/manual/index.html +++ b/disobedience/manual/index.html @@ -56,6 +56,19 @@ along with this program. If not, see .
  • How to edit track properties.
  • +

    5. Playlists

    + +
      +
    • What playlists are.
    • +
    • Editing playlists.
    + +

    Appendix

    + +
      +
    • Reporting bugs
    • +
    • Copyright notice
    • +
    + diff --git a/disobedience/manual/misc.html b/disobedience/manual/misc.html new file mode 100644 index 0000000..5ab5f38 --- /dev/null +++ b/disobedience/manual/misc.html @@ -0,0 +1,72 @@ + + + + + Disobedience: Appendix + + + +

    Appendix

    + +

    Reporting Bugs

    + +

    Please report bugs using + DisOrder's bug + tracker.

    + +

    Copyright Notice

    + +

    Copyright © 2003-2009 Richard Kettlewell
    + + Portions copyright © 2007 Ross + Younger
    + + Portions copyright © 2007, 2008 Mark Wooding
    + + Portions extracted from MPG321, Copyright © 2001 Joe + Drew, Copyright © 2000-2001 Robert Leslie
    + + Portions copyright © 1997-2006 Free Software Foundation, Inc
    + + Portions Copyright © 2000 Red Hat, + Inc., Jonathan Blandford

    + +

    This program is free software: you can redistribute it and/or modify it + under the terms of the GNU + General Public License as published by the Free Software Foundation, + either version 3 of the License, or (at your option) any later version.

    + +

    This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details.

    + +

    You should have received a copy of the GNU General Public License along + with this program. If not, see http://www.gnu.org/licenses/.

    + + + + diff --git a/disobedience/manual/playlists.html b/disobedience/manual/playlists.html new file mode 100644 index 0000000..4a49102 --- /dev/null +++ b/disobedience/manual/playlists.html @@ -0,0 +1,105 @@ + + + + + Disobedience: Playlists + + + +

    5. Playlists

    + +

    The chapter describes playlist and how to use them.

    + +

    5.1 What are playlists?

    + +

    A playlist is a named list of tracks stored by the server. It + can be edit by either just its owner or, alternatively, by all + users. It can be played as a unit when required.

    + +

    Playlists fall into three categories:

    + + + + + + + + + + + + + + + + + +
    SharedShared playlists have no owner and can be seen and edited + by anybody.
    PublicPublic playlist are owned by their creator and can be seen + by anybody. Only their creator can edit them, however.
    PrivatePrivate playlists are owned by their creator and can only + be seen or edited by their creator.
    + +

    To bring up the playlist window, select Edit > Edit + Playlists from the menu.

    + +

    5.2 Creating Playlists

    + + + +

    To create a playlist, click the Add button in the + playlist editor. This will create a pop-up window where you can + enter the name of the new playlist and decide whether it is + shared, public or private.

    + +

    Only Roman letters (without any accents) and digits are allowed + in playlist names.

    + +

    5.3 Editing Playlists

    + + + +

    When a playlist is selected, you can edit in the right hand half + of the playlist window. The editor is very similar in structure + and function to the queue. You can + rearrange tracks within it by drag and drop and you can drag tracks + from the Choose tab into it.

    + +

    5.3 Playing Playlists

    + +

    There are three ways to play a playlist:

    + +
      + +
    1. Right clicking in the playlist editor will create a pop-up + menu. In addition to the familiar options there is an option to + play this playlist.
    2. + +
    3. You can select all the tracks and drag them to the desired + point in the Queue tab.
    4. + +
    5. You can use Control > Activate Playlist from the main + menu.
    6. + +
    + + + -- [mdw]