chiark / gitweb /
various cleanups and docs improvements
[disorder] / templates / choose.tmpl
CommitLineData
460b9539 1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2<!--
3This file is part of DisOrder.
3225872d 4Copyright (C) 2004-2008 Richard Kettlewell
460b9539 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>
0d0253c9 23@stdhead{choose}
460b9539 24 </head>
25 <body>
0d0253c9 26@stdmenu{choose}
3225872d 27 <h1>@label:choose.title@</h1>
328248ba 28
99955407 29 @if{@eq{@label{menu.choosewhich}}{choosealpha}}
48e472fa 30 {
328248ba 31 <p class=choosealpha>
3225872d 32 <a title="Directories starting with 'a'"
48e472fa 33 href="@url?action=choose&#38;regexp=^(the )?a">A</a> |
3225872d 34 <a title="Directories starting with 'b'"
48e472fa 35 href="@url?action=choose&#38;regexp=^(the )?b">B</a> |
3225872d 36 <a title="Directories starting with 'c'"
48e472fa 37 href="@url?action=choose&#38;regexp=^(the )?c">C</a> |
3225872d 38 <a title="Directories starting with 'd'"
48e472fa 39 href="@url?action=choose&#38;regexp=^(the )?d">D</a> |
3225872d 40 <a title="Directories starting with 'e'"
48e472fa 41 href="@url?action=choose&#38;regexp=^(the )?e">E</a> |
3225872d 42 <a title="Directories starting with 'f'"
48e472fa 43 href="@url?action=choose&#38;regexp=^(the )?f">F</a> |
3225872d 44 <a title="Directories starting with 'g'"
48e472fa 45 href="@url?action=choose&#38;regexp=^(the )?g">G</a> |
3225872d 46 <a title="Directories starting with 'h'"
48e472fa 47 href="@url?action=choose&#38;regexp=^(the )?h">H</a> |
3225872d 48 <a title="Directories starting with 'i'"
48e472fa 49 href="@url?action=choose&#38;regexp=^(the )?i">I</a> |
3225872d 50 <a title="Directories starting with 'j'"
48e472fa 51 href="@url?action=choose&#38;regexp=^(the )?j">J</a> |
3225872d 52 <a title="Directories starting with 'k'"
48e472fa 53 href="@url?action=choose&#38;regexp=^(the )?k">K</a> |
3225872d 54 <a title="Directories starting with 'l'"
48e472fa 55 href="@url?action=choose&#38;regexp=^(the )?l">L</a> |
3225872d 56 <a title="Directories starting with 'm'"
48e472fa 57 href="@url?action=choose&#38;regexp=^(the )?m">M</a> |
3225872d 58 <a title="Directories starting with 'n'"
48e472fa 59 href="@url?action=choose&#38;regexp=^(the )?n">N</a> |
3225872d 60 <a title="Directories starting with 'o'"
48e472fa 61 href="@url?action=choose&#38;regexp=^(the )?o">O</a> |
3225872d 62 <a title="Directories starting with 'p'"
48e472fa 63 href="@url?action=choose&#38;regexp=^(the )?p">P</a> |
3225872d 64 <a title="Directories starting with 'q'"
48e472fa 65 href="@url?action=choose&#38;regexp=^(the )?q">Q</a> |
3225872d 66 <a title="Directories starting with 'r'"
48e472fa 67 href="@url?action=choose&#38;regexp=^(the )?r">R</a> |
3225872d 68 <a title="Directories starting with 's'"
48e472fa 69 href="@url?action=choose&#38;regexp=^(the )?s">S</a> |
3225872d 70 <a title="Directories starting with 't'"
48e472fa 71 href="@url?action=choose&#38;regexp=^(?!the [^t])t">T</a> |
3225872d 72 <a title="Directories starting with 'u'"
48e472fa 73 href="@url?action=choose&#38;regexp=^(the )?u">U</a> |
3225872d 74 <a title="Directories starting with 'v'"
48e472fa 75 href="@url?action=choose&#38;regexp=^(the )?v">V</a> |
3225872d 76 <a title="Directories starting with 'w'"
48e472fa 77 href="@url?action=choose&#38;regexp=^(the )?w">W</a> |
3225872d 78 <a title="Directories starting with 'x'"
48e472fa 79 href="@url?action=choose&#38;regexp=^(the )?x">X</a> |
3225872d 80 <a title="Directories starting with 'y'"
48e472fa 81 href="@url?action=choose&#38;regexp=^(the )?y">Y</a> |
3225872d 82 <a title="Directories starting with 'z'"
48e472fa 83 href="@url?action=choose&#38;regexp=^(the )?z">Z</a> |
3225872d 84 <a title="Directories starting with anything else"
48e472fa 85 href="@url?action=choose&#38;regexp=^[^a-z]">*</a>
328248ba 86 </p>
48e472fa
RK
87}
88
b43dc0cc
RK
89@# Always have a search form
90 <form class=search
91 action="@url"
92 method=POST
93 enctype="multipart/form-data" accept-charset=utf-8>
94 <p class=search>Enter search terms:
95 <input class=query name=query type=text value="@argq{query}"
96 size=50>
97 <button class=search name=submit type=submit>
98 @label{search.search}
99 </button>
100 <input name=action type=hidden value=search>
101 </p>
102 </form>
103
104 @if{@ne{@arg{query}}{}}
105 {
106@# There's a search query
35248665
RK
107 <table class=search>
108 <tr class=headings>
109 <th class=artist>@label{heading.artist}</th>
110 <th class=album>@label{heading.album}</th>
111 <th class=title>@label{heading.title}</th>
112 <th class=length>@label{heading.length}</th>
113@right{prefs}{
114 <th class=button>&nbsp;</th>}
115 </tr>
116 @search{@arg{query}}{
117 <tr class=@parity>
118 <td class=artist>@martist{search}{@track}</td>
119 <td class=album>@malbum{search}{@track}</td>
120 <td class=title>@mtitle{search}{@track}</td>
121 <td class=length>@length{@id}</td>
122 @right{prefs}{
123 <td class=imgbutton>
124 <a class=imgbutton
125 href="@url?action=prefs&#38;0_file=@urlquote{@track}">
126 <img class=button src="@image{edit}"
127 title="@label{choose.prefsverbose}"
128 alt="@label{choose.prefs}">
129 </a>
130 </td>
131 </tr>}
132 }
133 </table>}
b43dc0cc
RK
134 {
135@# No search query
136
48e472fa
RK
137@# TODO navigation...
138
139 <div class=directories>
140 <div class=filesdirectories>
141 @dirs{@arg{dir}}{@arg{re}}{
142 <p class=entry>
143 <a href="@url?action=choose&#38;dir=@urlquote{@track}">
144 <img class=button src="@image{directory}" alt="">
145 @display
146 </a>
147 </p>}
148 </div>
149 </div>
460b9539 150
48e472fa 151@define{sometracks}{template}{}
460b9539 152
48e472fa
RK
153 <div class=files>
154 <div class=filesdirectories>
155 @dirs{@arg{dir}}{@arg{re}}{
156 <p class=entry>
157@define{sometracks}{template}{@template}@#
158 @rights{prefs}{
159 <a class=imgprefs
160 href="@url?action=prefs&#38;0_file=@urlquote{@resolve{@track}}">
b43dc0cc
RK
161 <img class=button
162 src="@image{edit}"
163 title="@label:choose.prefsverbose@"
164 alt="@label:choose.prefs@">
48e472fa
RK
165 </a>
166 }@#
167 <a href="@url?action=play&#38;file=@urlquote{@track}&#38;back=@urlquote{@thisurl}"
168 title="@label{choose.play}">
169 @display
170 </a>
171 @if{@eq{@trackstate{@track}}{playing}}
172 {[<b>playing</b>]}
173 @if{@eq{@trackstate{@track}}{queued}}
174 {[<b>queued</b>]}
175 </p>}
176 @sometracks{
177 <p class=all>
178 @right{prefs}{
179 <a class=imgprefs
180 href="@url?action=prefs&#38;dir=@urlquote{@arg{dir}}">
181 <img class=button
182 src="@image{edit}"
183 title="@label:choose.allprefsverbose@"
184 alt="@label:choose.allprefs@">
185 </a>}
186 <a class=button
187 href="@url?action=play&#38;dir=@urlquote{@arg{dir}}"&#38;back=@urlquote{@thisurl}">
188 @label{choose.playall}
189 </a>
190 </p>}
191 </div>
192 </div>
460b9539 193
b43dc0cc
RK
194 }
195
0d0253c9 196@credits
460b9539 197 </body>
198</html>
0d0253c9 199@discard{
460b9539 200Local variables:
201mode:sgml
202sgml-always-quote-attributes:nil
203sgml-indent-step:1
204sgml-indent-data:t
0d0253c9
RK
205indent-tabs-mode:nil
206fill-column:79
460b9539 207End:
0d0253c9 208}@#