]> git.deb.at Git - deb/packages.git/blob - templates/html/homepage.tmpl
Some fixes for Polish translation.
[deb/packages.git] / templates / html / homepage.tmpl
1 [%- PROCESS 'html/head.tmpl' 
2         title_tag = g('%s Packages Search', organisation)
3         page_title = g('%s Packages Search', organisation)
4         keywords = g('Packages')
5 -%]
6 [%-
7     all_suites = [ 'etch', 'etch-m68k', 'etch-volatile', 'etch-backports',
8                    'lenny', 'lenny-volatile', 'lenny-backports', 'squeeze', 'squeeze-backports', 'sid' ]
9     version_numbers = { sarge => '3.1',
10                         etch  => '4.0',
11                         lenny => '5.0' }
12     current_release = 'lenny'
13     all_sections = [ 'main', 'contrib', 'non-free' ]
14     all_architectures = [   'alpha', 'arm', 'armel', 'amd64', 'avr32', 'hppa', 'i386',
15                             'ia64', 'kfreebsd-amd64', 'kfreebsd-i386', 'mips',
16                             'mipsel', 'm68k', 'powerpc', 'powerpcspe', 's390', 'sh4',
17                             'sparc', 'sparc64' ]
18 -%]
19
20 <p>[% g('This site provides you with information about all the packages available in the <a href="%s">%s</a> Package archive.', project_homepage, organisation) %]</p>
21
22 <p><em>[% g('Please contact <a href="mailto:%s">%s</a> if you encounter any problems!', admin.mail, admin.name) %]</em></p>
23
24 <h2>[% g('Browse through the lists of packages:') %]</h2>
25
26 <ul style="font-size:large">
27 [% FOREACH s IN all_suites %]
28 <li><a href="[% s %]/">[% s %]</a>
29 [% IF version_numbers.$s %]([% version_numbers.$s %])[% END %]</li>
30 [% END %]
31 </ul>
32
33 <p>[% g('There is also a list of <a href="%s/main/newpkg">packages recently added to %s</a>.', all_suites.-1, all_suites.-1) %]</p>
34
35 [% IF old_releases %]
36 <p>[% g('Old releases can be found at <a href="%s">%s</a>.', old_releases, old_releases) %]</p>
37 [% END %]
38
39 <h2>[% g('Search') %]</h2>
40
41 <h3>[% g('Search package directories') %]</h3>
42
43 <form method="GET" action="/search">
44 <label for="kw">[% g('Keyword:') %]</label>
45 <input type="text" size="30" name="keywords" id="kw">
46 <input type="submit" value="[% g('Search') %]"> <input type="reset" value="[% g('Reset') %]">
47 <br>
48 [% g('Search on:') %]
49 <input type="radio" name="searchon" value="names" id="onlynames" checked="checked">
50 <label for="onlynames">[% g('Package names only') %]</label>&nbsp;&nbsp;
51 <input type="radio" name="searchon" value="all" id="descs">
52 <label for="descs">[% g('Descriptions') %]</label>
53 <input type="radio" name="searchon" value="sourcenames" id="src">
54 <label for="src">[% g('Source package names') %]</label>
55 <br>
56 [% g('Only show exact matches:') %]
57 <input type="checkbox" name="exact" value="1">
58 <br>
59 Distribution:
60 <select name="suite">
61 [% FOREACH s IN all_suites %]
62   <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
63 [% END %]
64   <option value="all">[% g('any') %]</option>
65 </select>
66 [% g('Section:') %]
67 <select name="section">
68 [% FOREACH s IN all_sections %]
69   <option value="[% s %]">[% s %]</option>
70 [% END %]
71   <option value="all" selected="selected">[% g('any') %]</option>
72 </select>
73 </form>
74 <p>[% g('There are shortcuts for some searches available:') %]</p>
75 <ul>
76       <li>[% g('<code>%s<var>name</var></code> for the search on package names.', packages_homepage_abs) %]</li>
77
78       <li>[% g('<code>%ssrc:<var>name</var></code> for the search on source package names.', packages_homepage_abs) %]</li>
79 </ul>
80 <hr>
81
82 <h3><a name="search_contents">[% g('Search the contents of packages') %]</a></h3>
83
84 <p>[% g('This search engine allows you to search the contents of %s distributions for any files (or just parts of file names) that are part of packages. You can also get a full list of files in a given package.', organisation) %]<br>
85 <form method="GET" action="/search">
86 <input type="hidden" name="searchon" value="contents">
87
88 <label for="keyword">[% g('Keyword:') %]</label>
89 <input type="text" size="30" name="keywords" id="keyword"> &nbsp;
90
91 <input type="submit" value="[% g('Search') %]">
92 &nbsp;<input type="reset" value="[% g('Reset') %]">
93 <br>
94 [% g('Display:') %]
95 <br>
96 <input type="radio" name="mode" value="exactfilename" id="exactfilename" checked="checked">
97   <label for="exactfilename">[% g('packages that contain files named like this') %]</label>
98 <br>
99 <input type="radio" name="mode" value="" id="suffixpathname">
100   <label for="suffixpathname">[% g('packages that contain files whose names end with the keyword') %]</label>
101 <br>
102 <input type="radio" name="mode" value="filename" id="filename">
103   <label for="filename">[% g('packages that contain files whose names contain the keyword') %]</label>
104 <br>
105 <label for="distro">[% g('Distribution:') %]</label>
106
107 <select name="suite" id="distro">
108 [% FOREACH s IN all_suites %]
109   <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
110 [% END %]
111 </select>
112 <label for="architecture">[% g('Architecture:') %]</label>
113 <select name="arch" id="architecture">
114 [% FOREACH a IN all_architectures %]
115   <option value="[% a %]">[% a %]</option>
116 [% END %]
117   <option value="any" selected="selected">[% g('any') %]</option>
118 </select>
119 </form>
120
121 [% PROCESS 'html/foot.tmpl' page_name=packages_homepage copyright.years = '1997 - 2009' %]