[Slim-Checkins] r11818 - in /trunk/server: Changelog6.html HTML/Dark/status_list.html

kdf at svn.slimdevices.com kdf at svn.slimdevices.com
Tue Apr 24 22:59:04 PDT 2007


Author: kdf
Date: Tue Apr 24 22:59:04 2007
New Revision: 11818

URL: http://svn.slimdevices.com?rev=11818&view=rev
Log:
Bug: 4924
Description: add up/down controls to the Dark skin playlist


Modified:
    trunk/server/Changelog6.html
    trunk/server/HTML/Dark/status_list.html

Modified: trunk/server/Changelog6.html
URL: http://svn.slimdevices.com/trunk/server/Changelog6.html?rev=11818&r1=11817&r2=11818&view=diff
==============================================================================
--- trunk/server/Changelog6.html (original)
+++ trunk/server/Changelog6.html Tue Apr 24 22:59:04 2007
@@ -46,6 +46,8 @@
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4872">#4872</a> - Installer: Error creating INI entry in Logitech.url</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4891">#4891</a> - "Play this song" and "Add this song to playlist" links are not always visible.</li>
 		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4902">#4902</a> - BMF: correctly display and follow Windows shortcuts pointing to a drive; fix an issue with the path display on the player interface</li>
+		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4924">#4924</a> - Nice to have: Up and Down buttons for PlayList on Dark skin</li>
+		<li><a href="http://bugs.slimdevices.com/show_bug.cgi?id=4926">#4926</a> - Mac Installer & Preference Pane still shows 6.5.1 should be 6.5.2</li>
 	</ul>
 	<br />
 	<li>Other:

Modified: trunk/server/HTML/Dark/status_list.html
URL: http://svn.slimdevices.com/trunk/server/HTML/Dark/status_list.html?rev=11818&r1=11817&r2=11818&view=diff
==============================================================================
--- trunk/server/HTML/Dark/status_list.html (original)
+++ trunk/server/HTML/Dark/status_list.html Tue Apr 24 22:59:04 2007
@@ -1,9 +1,9 @@
 <tr>
-	<td>[% IF item.currentsong %]<img src="html/spinner.gif">[% END %]&nbsp;</td>
+	<td>[% IF item.num == thissongnum %]<img src="html/spinner.gif">[% END %]&nbsp;</td>
 	<td [% IF item.odd %]class="odd" bgcolor="#d0d0d0"[% END %] [% IF not item.odd %]class="even" bgcolor="#FFFFFF"[% END %]>
-		[% IF item.currentsong %]<a name="currentsong"></a><b>[% END %]
+		[% IF item.num == thissongnum %]<a name="currentsong"></a><b>[% END %]
 			<a [% PROCESS songinfoItemHRef%] target="browser">[% item.title | html %]</a>
-		[% IF item.currentsong %]</b>[% END %]
+		[% IF item.num == thissongnum %]</b>[% END %]
 
 		<span class="small">
 		[% IF item.includeAlbum && item.itemobj.album && item.itemobj.album.title != item.noAlbum && item.itemobj.album.title != "" %]
@@ -14,7 +14,9 @@
 		</span>
 	</td>
 	<td [% IF item.odd %]class="odd" bgcolor="#d0d0d0"[% END %] [% IF not item.odd %]class="even" bgcolor="#FFFFFF"[% END %]>
-		(<a [% PROCESS cmdHRef cmdType = 'delete' num=item.num useStart=1 %]>[% "DELETE" | string %]</a>,
-		<a [% PROCESS cmdHRef cmdType = 'jump' %]>[% "PLAY" | string %]</a>)
+		(<a href="[% webroot %][% statusroot %]?p0=playlist&amp;p1=jump&amp;p2=[% item.num %]&amp;start=[% start %]&amp;player=[% playerURI %]" target="status">[% "PLAY" | string %]</a>
+		<a href="[% webroot %][% statusroot %]?p0=playlist&amp;p1=move&amp;p2=[% item.num %]&amp;p3=%2B1&amp;start=[% start %]&amp;player=[% playerURI %]" target="status">[% "DOWN" | string %]</a>
+		<a href="[% webroot %][% statusroot %]?p0=playlist&amp;p1=move&amp;p2=[% item.num %]&amp;p3=%2D1&amp;start=[% start %]&amp;player=[% playerURI %]" target="status">[% "UP" | string %]</a>
+		<a href="[% webroot %][% statusroot %]?p0=playlist&amp;p1=delete&amp;p2=[% item.num %]&amp;start=[% start %]&amp;player=[% playerURI %]" target="status">[% "DELETE" | string %]</a>)
 	</td>
 </tr>



More information about the checkins mailing list