diff options
author | sigger <sigger@ampache> | 2006-02-02 04:34:15 +0000 |
---|---|---|
committer | sigger <sigger@ampache> | 2006-02-02 04:34:15 +0000 |
commit | 1e7684528e28aea6f30e31fa3f674d61e282df30 (patch) | |
tree | d43678e0104f8a299663779f0c9d23799d885bc3 /templates | |
parent | 27847d72ca91c107a1f74cb1e072e58c9cbe7b8f (diff) | |
download | ampache-1e7684528e28aea6f30e31fa3f674d61e282df30.tar.gz ampache-1e7684528e28aea6f30e31fa3f674d61e282df30.tar.bz2 ampache-1e7684528e28aea6f30e31fa3f674d61e282df30.zip |
mpd mini-control for all pages! final ajax tweak? etc
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.inc | 9 | ||||
-rw-r--r-- | templates/javascript_refresh.inc | 6 | ||||
-rw-r--r-- | templates/show_mpdminicontrol.inc | 95 | ||||
-rw-r--r-- | templates/show_mpdplay.inc | 9 |
4 files changed, 109 insertions, 10 deletions
diff --git a/templates/header.inc b/templates/header.inc index d0ddff1e..514c2310 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -46,6 +46,10 @@ if (conf('use_rss')) { ?> <img class="pageheader" src="<?php echo $web_path; ?><?php echo conf('theme_path'); ?>/images/ampache.gif" border="0" title="Ampache: For the love of music" alt="Ampache: For the love of music" /> </a> </div><!--End topbarleft --> + <?php if (($user->prefs['play_type']=='mpd') && ($location['page'] != 'mpd.php')) { + $myMpd = init_mpd(); + show_template ('show_mpdminicontrol'); + } else { ?> <div id="topbarright"> <a href="http://www.ampache.org/index.php">Ampache v.<?php echo conf('version'); ?></a><br /> <b><?php echo _("You are currently logged in as") . " " . $GLOBALS['user']->fullname; ?></b> @@ -59,11 +63,12 @@ if (conf('use_rss')) { ?> </select> <input type="submit" value="<?php echo _("Go!"); ?>" class="button" /> </form> - </div><!-- End topbarright --> + </div> <!-- End topbarright --> + <?php } ?> </div><!-- End topbar --> <div id="sidebar"><!-- This is the sidebar --> <?php require_once(conf('prefix') . '/templates/sidebar.inc.php'); ?> </div><!-- End sidebar --> <div id="content"> <table> <!-- Start Main Page Table--> -<tr><td>
\ No newline at end of file +<tr><td> diff --git a/templates/javascript_refresh.inc b/templates/javascript_refresh.inc index b0c5cd8b..92694bc4 100644 --- a/templates/javascript_refresh.inc +++ b/templates/javascript_refresh.inc @@ -61,11 +61,11 @@ function countdown() { if (displaycountdown==1) { window.status="Refreshing in "+reloadseconds+" seconds"; if ((player == 'mpd') && (player_state == 'play')) { - NodeList = document.getElementById ('mpd_cur_track_pos'); + if (NodeList = document.getElementById ('mpd_cur_track_pos')) { NodeList.firstChild.data = fmt_time((mpd_elapsed) + (secondssinceloaded)); } - NodeList = document.getElementById ('mpd_on_deck_in'); + if (NodeList = document.getElementById ('mpd_on_deck_in')) { NodeList.firstChild.data = fmt_time (mpd_song_length - mpd_elapsed - secondssinceloaded); } - NodeList = document.getElementById ('mpd_pctplayed'); + if (NodeList = document.getElementById ('mpd_pctplayed')) { NodeList.firstChild.data = Math.floor (100*(mpd_elapsed + secondssinceloaded)/mpd_song_length); } } if (reloadseconds > 0) { diff --git a/templates/show_mpdminicontrol.inc b/templates/show_mpdminicontrol.inc new file mode 100644 index 00000000..2319348f --- /dev/null +++ b/templates/show_mpdminicontrol.inc @@ -0,0 +1,95 @@ +<?php +/* + + Copyright (c) 2001 - 2005 Ampache.org + All rights reserved. + + 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 2 + 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, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +*/ + +/*! + @header Show mpd controls, this doesn't + include the playlist, status and what have you. + this looks a goodbit like local_play +*/ +$web_path = conf('web_path'); +require_once ("javascript_refresh.inc"); +?> + +<div align="center"><!-- Is this div neccesary??? or is the below table not needed???--> +<table border="0" cellpadding="3" cellspacing="0"><!-- MPD Control table --> +<tr> +<td> + <table id="mpd_control" border="0" cellpadding="0" cellspacing="0" class="even" align="center"> +<!-- <th class="table-header"><?php echo _("MPD Play Control"); ?></th> --> + <tr> + <td> + <?php ${$myMpd->state} = "class='selected_button'"; + if (true) /* rigged to do AJAX for now; change to conf('AJAX') later*/ { ?> + <!-- for testing <input type="button" value="times" onclick="timestuff();"/> --> + <input type="button" value="|< " onclick="startRequest('action=Prev');"/> + <input type="button" <?php echo $stop ?> id="stop_button" value=" X " onclick="startRequest('action=stop');"/> + <input type="button" <?php echo $play ?> id="play_button" value=" > " onclick="startRequest('action=play');"/> + <input type="button" <?php echo $pause ?> id="pause_button" value=" | | " onclick="startRequest('action=pause');"/> + <input type="button" value=" >|" onclick="startRequest('action=Next');"/> + <?php + } + else { ?> + <form action="<?php echo $web_path; ?>/amp-mpd.php" method="post" name="playcontrol" style="display:inline; white-space: nowrap"> + <!-- these used to have class="button" --> + <input type="submit" title="<?php echo _("Prev"); ?>" name="action" value="|< " /> + <input type="submit" title="<?php echo _("Stop"); ?>" name="action" value=" X " <?php echo $stop; ?> /> + <input type="submit" title="<?php echo _("Play"); ?>" name="action" value=" > " <?php echo $play; ?> /> + <input type="submit" title="<?php echo _("Pause"); ?>" name="action" value=" | | " <?php echo $pause; ?> /> + <input type="submit" title="<?php echo _("Next"); ?>" name="action" value= " >|" /> + </form> + <?php } ?> + </td> + </tr> + <tr> + <td class="content"> + Played <b><span id="mpd_cur_track_pos"><?php echo format_time($myMpd->current_track_position)?></span></b> + (<span id="mpd_pctplayed"><?php echo (round(($myMpd->current_track_position/$myMpd->current_track_length),2)*100)."</span>%) of " . + format_time($myMpd->current_track_length); ?> + - Vol: <b><span id='volume'><?php echo $myMpd->volume ?></span>%</b> + +</td> + </tr> + <tr> + <td class="content"> + <?php + if (true) /* rigged to do AJAX for now; change to conf('AJAX') later */ { ?> + <input type="button" value="0" onclick="startRequest('action=setvol&param1=0');"/> + <input type="button" value="-25" onclick="startRequest('action=adjvol&param1=-25');"/> + <input type="button" value="-10" onclick="startRequest('action=adjvol&param1=-10');"/> + <input type="button" value="+10" onclick="startRequest('action=adjvol&param1=10');"/> + <input type="button" value="+25" onclick="startRequest('action=adjvol&param1=25');"/> + <?php + } + else { ?> + [<a href="<?php echo $web_path; ?>/amp-mpd.php?action=setvol&val=0">mute</a> + <a href="<?php echo $web_path; ?>/amp-mpd.php?action=adjvol&val=-25">-25</a> + <a href="<?php echo $web_path; ?>/amp-mpd.php?action=adjvol&val=-10">-10</a> + <a href="<?php echo $web_path; ?>/amp-mpd.php?action=adjvol&val=+10">+10</a> + <a href="<?php echo $web_path; ?>/amp-mpd.php?action=adjvol&val=+25">+25</a>] '; + <?php } ?> + </td> + </tr> + </table> +</td> +</tr> +</table> +</div> diff --git a/templates/show_mpdplay.inc b/templates/show_mpdplay.inc index 30274a9c..fd9c942d 100644 --- a/templates/show_mpdplay.inc +++ b/templates/show_mpdplay.inc @@ -26,7 +26,6 @@ this looks a goodbit like local_play */ $web_path = conf('web_path'); -function fmt_time($seconds) {return sprintf ("%d:%02d", $seconds/60, $seconds % 60);} global $condPL; ?> @@ -135,20 +134,20 @@ global $condPL; ". ".$myMpd->playlist[$myMpd->current_track_id]['Artist']. " - ".$myMpd->playlist[$myMpd->current_track_id]['Title']. " - ".$myMpd->playlist[$myMpd->current_track_id]['Album']. - " - ".fmt_time($myMpd->playlist[$myMpd->current_track_id]['Time']); + " - ".format_time($myMpd->playlist[$myMpd->current_track_id]['Time']); echo "</span>"; ?> </td> </tr> <tr> <td align="center" class="npsong"> - <span id="mpd_cur_track_pos"><?php echo fmt_time($myMpd->current_track_position)?></span> + <span id="mpd_cur_track_pos"><?php echo format_time($myMpd->current_track_position)?></span> (<span id="mpd_pctplayed"><?php echo (round(($myMpd->current_track_position/$myMpd->current_track_length),2)*100)."</span>%) played" ?> </td> </tr> <tr> <td> <b><?php echo _("On Deck ")?><?php echo _("(in "). - "<span id = 'mpd_on_deck_in'>".fmt_time($myMpd->current_track_length - $myMpd->current_track_position)."</span>)"?> + "<span id = 'mpd_on_deck_in'>".format_time($myMpd->current_track_length - $myMpd->current_track_position)."</span>)"?> </b> </td> </tr> @@ -165,7 +164,7 @@ global $condPL; ". ".$myMpd->playlist[($myMpd->current_track_id+1)]['Artist']. " - ".$myMpd->playlist[($myMpd->current_track_id+1)]['Title']. " - ".$myMpd->playlist[($myMpd->current_track_id+1)]['Album']. - " - ".fmt_time($myMpd->playlist[($myMpd->current_track_id+1)]['Time']);?> + " - ".format_time($myMpd->playlist[($myMpd->current_track_id+1)]['Time']);?> </td> </tr> </table> |