chiark / gitweb /
Script to generate -man documentation for expansions from comments in
[disorder] / templates / prefs.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <!--
3 This file is part of DisOrder.
4 Copyright (C) 2004-2008 Richard Kettlewell
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA
20 -->
21 <html>
22  <head>
23 @include:stdhead@
24   <title>@label:prefs.title@</title>
25  </head>
26  <body>
27 @include{topbar}@
28    <h1>@label:prefs.title@</h1>
29
30    <form class=prefs action="@url@" method=POST
31          enctype="multipart/form-data" accept-charset=utf-8>
32     <input type=hidden name="files" value="@nfiles@">
33     <input type=hidden name=parts value="artist album title">
34    @files{
35    <p class="prefs_head">Preferences for <span class="prefs_track">@arg{@index@_file}@</span></p>
36     <input type=hidden name="@index@_file" value="@arg{@index@_file}@">
37     <table class=prefs>
38       <tr class="headings">
39        <th class="prefs_name">@label:prefs.name@</th>
40        <th class="prefs_value">@label:prefs.value@</th>
41       </tr>
42       <tr class=even>
43        <td class="prefs_name">@label:heading.title@</td>
44        <td class="prefs_value"><input size=40 type=text name="@index@_title" value="@part{display}{title}{@arg{@index@_file}@}@"></td>
45       </tr>
46       <tr class=odd>
47        <td class="prefs_name">@label:heading.album@</td>
48        <td class="prefs_value"><input size=40 type=text name="@index@_album" value="@part{display}{album}{@arg{@index@_file}@}@"></td>
49       </tr>
50       <tr class=even>
51        <td class="prefs_name">@label:heading.artist@</td>
52        <td class="prefs_value"><input size=40 type=text name="@index@_artist" value="@part{display}{artist}{@arg{@index@_file}@}@"></td>
53       </tr>
54       <tr class=odd>
55        <td class="prefs_name">@label:prefs.tags@</td>
56        <td class="prefs_value"><input size=40 type=text name="@index@_tags" value="@pref{@arg{@index@_file}@}{tags}@"></td>
57       </tr>
58       <tr class=even>
59        <td class="prefs_name">@label:prefs.weight@</td>
60        <td class="prefs_value"><input size=40 type=text name="@index@_weight" value="@pref{@arg{@index@_file}@}{weight}@"></td>
61       </tr>
62       <tr class=odd>
63        <td class="prefs_name">@label:prefs.random@</td>
64        <td class="prefs_value"><input type=checkbox
65          name="@index@_random" value=true
66         @if{@ne{@pref{@arg{@index@_file}@}{pick_at_random}@}{0}@}{ checked}{}@></td>
67     </table>
68    }@
69     
70     <p>
71      <button type=submit name=submit>
72       @label:prefs.set@
73      </button>
74      <input name=action type=hidden value=prefs>
75     </p>
76    </form>
77
78 @include{topbarend}@
79  </body>
80 </html>
81 @@
82 <!--
83 Local variables:
84 mode:sgml
85 sgml-always-quote-attributes:nil
86 sgml-indent-step:1
87 sgml-indent-data:t
88 End:
89 -->