chiark / gitweb /
make rtp socket/log dependent on hostname for nfs-mounted home
[disorder] / templates / new.html
CommitLineData
78efa64e
RK
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2<!--
3This file is part of DisOrder.
4Copyright (C) 2004, 2005, 2007 Richard Kettlewell
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19USA
20-->
21<html>
22 <head>
23@include:stdhead@
24 <title>@label:new.title@</title>
25 </head>
26 <body>
27@include{@label{menu}@}@
28 <h1 class=title>@label:new.title@</h1>
29
30@#{only display the table if there is something to put in it}@
31@if{@isnew@}{
32 <table class=new>
33 <tr class=headings>
34 <th class=artist>@label:heading.artist@</th>
35 <th class=album>@label:heading.album@</th>
36 <th class=title>@label:heading.title@</th>
37 <th class=length>@label:heading.length@</th>
38 <th class=button>&nbsp;</th>
39 </tr>
40 @new{
41 <tr class=@parity@>
42 <td class=artist><a class=directory href="@url@?action=choose&amp;directory=@urlquote{@dirname{@dirname{@part:path@}@}@}@">@part:artist@</a></td>
43 <td class=album><a class=directory href="@url@?action=choose&amp;directory=@urlquote{@dirname{@part:path@}@}@">@part:album@</a></td>
44 <td class=title><a
45 class=file
46 href="@url@?action=play&#38;file=@urlquote{@file@}@&#38;back=@urlquote{@thisurl@}@&#38;nonce=@nonce@"
47 title="@label:choose.play@">@part:title@</a></td>
48 <td class=length>@length@</td>
49 <td class=imgbutton><a class=imgbutton
50 href="@url@?action=prefs&#38;nonce=@nonce@&#38;0_file=@urlquote{@file@}@"><img
51 class=button src="@label:images.edit@"
52 title="@label:choose.prefsverbose@"
53 alt="@label:choose.prefs@"></a></td>
54 </tr>
55 }@
56 </table>
57}@
58
59@include{@label{menu}@end}@
60 </body>
61</html>
62@@
63<!--
64Local variables:
65mode:sgml
66sgml-always-quote-attributes:nil
67sgml-indent-step:1
68sgml-indent-data:t
69End:
70-->