Better layout for playlist in browser

Posted:
Thu Jul 21, 2011 4:36 am
by devm
Would it be possible to have the playlist section of the browser span vertically from top to bottom, and take up the spot where "chat messages" is currently? The divider might have to be expanded so the song info isn't clipped, and that might be more of a pain in the ass that it seems, i don't know.
Just looking for a solution to edit playlists more efficiently, it's hard to view long playlists when you can only see like 12 songs at a time.
If there is some way to change the layout, sorry for my ignorance.
PS - Thanks for updating the android app so frequently!
change it

Posted:
Sat Jul 30, 2011 6:08 am
by trickydick
You can change the layout if you like; just edit/replace the index.jsp file to:
BACKUP FIRST!!!!
- Code: Select all
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="iso-8859-1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<%@ include file="head.jsp" %>
<link rel="alternate" type="application/rss+xml" title="Subsonic Podcast" href="podcast.view?suffix=.rss">
</head>
<frameset rows="80,*" frameborder="no" border="0" framespacing="0">
<frame src="top.view?" name="upper" scrolling="No" noresize="noresize" />
<frameset rows="*" cols="245,*" framespacing="0" frameborder="no" border="0">
<frame name="left" src="left.view?">
<frameset rows="*" cols="*,260" framespacing="0" frameborder="no" border="0">
<frameset rows="*,${model.showRight ? 220 : 0}" cols="*" framespacing="0" frameborder="no" border="0"></>
<frame src="nowPlaying.view?" name="main"/>
<frame src="right.view?" name="right" />
</frameset>
<frame src="playlist.view?" name="playlist" id="playlistframe" />
</frameset>
</frameset>
</frameset>
<noframes></noframes>
</html>
Boom done. the site may not be pretty, all you have to do is start modifying the CSS to fit items.