Never use the value attribute of <button> to encode anything we care
[disorder] / templates / choosealpha.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <!--
3 This file is part of DisOrder.
4 Copyright (C) 2004, 2005, 2006 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:choose.title@</title>
25 </head>
26 <body>
27 @include{topbar}@
28 <h1 class=title>@label:choose.title@</h1>
29
30 <p class=choosealpha>
31 <a class=choosealpha
32 title="Directories starting with 'a'"
33 href="@url@?action=choose&#38;regexp=^(the )?a">A</a> |
34 <a class=choosealpha
35 title="Directories starting with 'b'"
36 href="@url@?action=choose&#38;regexp=^(the )?b">B</a> |
37 <a class=choosealpha
38 title="Directories starting with 'c'"
39 href="@url@?action=choose&#38;regexp=^(the )?c">C</a> |
40 <a class=choosealpha
41 title="Directories starting with 'd'"
42 href="@url@?action=choose&#38;regexp=^(the )?d">D</a> |
43 <a class=choosealpha
44 title="Directories starting with 'e'"
45 href="@url@?action=choose&#38;regexp=^(the )?e">E</a> |
46 <a class=choosealpha
47 title="Directories starting with 'f'"
48 href="@url@?action=choose&#38;regexp=^(the )?f">F</a> |
49 <a class=choosealpha
50 title="Directories starting with 'g'"
51 href="@url@?action=choose&#38;regexp=^(the )?g">G</a> |
52 <a class=choosealpha
53 title="Directories starting with 'h'"
54 href="@url@?action=choose&#38;regexp=^(the )?h">H</a> |
55 <a class=choosealpha
56 title="Directories starting with 'i'"
57 href="@url@?action=choose&#38;regexp=^(the )?i">I</a> |
58 <a class=choosealpha
59 title="Directories starting with 'j'"
60 href="@url@?action=choose&#38;regexp=^(the )?j">J</a> |
61 <a class=choosealpha
62 title="Directories starting with 'k'"
63 href="@url@?action=choose&#38;regexp=^(the )?k">K</a> |
64 <a class=choosealpha
65 title="Directories starting with 'l'"
66 href="@url@?action=choose&#38;regexp=^(the )?l">L</a> |
67 <a class=choosealpha
68 title="Directories starting with 'm'"
69 href="@url@?action=choose&#38;regexp=^(the )?m">M</a> |
70 <a class=choosealpha
71 title="Directories starting with 'n'"
72 href="@url@?action=choose&#38;regexp=^(the )?n">N</a> |
73 <a class=choosealpha
74 title="Directories starting with 'o'"
75 href="@url@?action=choose&#38;regexp=^(the )?o">O</a> |
76 <a class=choosealpha
77 title="Directories starting with 'p'"
78 href="@url@?action=choose&#38;regexp=^(the )?p">P</a> |
79 <a class=choosealpha
80 title="Directories starting with 'q'"
81 href="@url@?action=choose&#38;regexp=^(the )?q">Q</a> |
82 <a class=choosealpha
83 title="Directories starting with 'r'"
84 href="@url@?action=choose&#38;regexp=^(the )?r">R</a> |
85 <a class=choosealpha
86 title="Directories starting with 's'"
87 href="@url@?action=choose&#38;regexp=^(the )?s">S</a> |
88 <a class=choosealpha
89 title="Directories starting with 't'"
90 href="@url@?action=choose&#38;regexp=^(?!the [^t])t">T</a> |
91 <a class=choosealpha
92 title="Directories starting with 'u'"
93 href="@url@?action=choose&#38;regexp=^(the )?u">U</a> |
94 <a class=choosealpha
95 title="Directories starting with 'v'"
96 href="@url@?action=choose&#38;regexp=^(the )?v">V</a> |
97 <a class=choosealpha
98 title="Directories starting with 'w'"
99 href="@url@?action=choose&#38;regexp=^(the )?w">W</a> |
100 <a class=choosealpha
101 title="Directories starting with 'x'"
102 href="@url@?action=choose&#38;regexp=^(the )?x">X</a> |
103 <a class=choosealpha
104 title="Directories starting with 'y'"
105 href="@url@?action=choose&#38;regexp=^(the )?y">Y</a> |
106 <a class=choosealpha
107 title="Directories starting with 'z'"
108 href="@url@?action=choose&#38;regexp=^(the )?z">Z</a> |
109 <a class=choosealpha
110 title="Directories starting with anything else"
111 href="@url@?action=choose&#38;regexp=^[^a-z]">*</a>
112 </p>
113
114 @include{topbarend}@
115 </body>
116 </html>
117 @@
118 <!--
119 Local variables:
120 mode:sgml
121 sgml-always-quote-attributes:nil
122 sgml-indent-step:1
123 sgml-indent-data:t
124 End:
125 -->