]> git.deb.at Git - deb/packages.git/blob - templates/html/homepage.tmpl
40764e7758f386988b92bbfe1ee90e4bfe841578
[deb/packages.git] / templates / html / homepage.tmpl
1 [%- PROCESS 'html/head.tmpl' 
2         title_tag = "$organisation Packages Search"
3         page_title = "$organisation Packages Search"
4         keywords = "$organisation, Packages"
5 -%]
6 [%-
7     all_suites = [ 'etch', 'etch-m68k', 'etch-volatile', 'etch-backports',
8                    'lenny', 'lenny-volatile', 'lenny-backports', 'squeeze', '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', 's390', 'sparc' ]
17 -%]
18
19 <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>
20
21 <p><em>[% g('Please contact <a href="mailto:%s">%s</a> if you encounter any problems!', admin.mail, admin.name) %]</em></p>
22
23 <h2>[% g('Browse through the lists of packages:') %]</h2>
24
25 <ul style="font-size:large">
26 [% FOREACH s IN all_suites %]
27 <li><a href="[% s %]/">[% s %]</a>
28 [% IF version_numbers.$s %]([% version_numbers.$s %])[% END %]</li>
29 [% END %]
30 </ul>
31
32 <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>
33
34 <h2>[% g('Search') %]</h2>
35
36 <h3>[% g('Search package directories') %]</h3>
37
38 <form method="GET" action="/search">
39 <label for="kw">[% g('Keyword:') %]</label>
40 <input type="text" size="30" name="keywords" id="kw">
41 <input type="submit" value="[% g('Search') %]"> <input type="reset" value="[% g('Reset') %]">
42 <br>
43 [% g('Search on:') %]
44 <input type="radio" name="searchon" value="names" id="onlynames" checked="checked">
45 <label for="onlynames">[% g('Package names only') %]</label>&nbsp;&nbsp;
46 <input type="radio" name="searchon" value="all" id="descs">
47 <label for="descs">[% g('Descriptions') %]</label>
48 <input type="radio" name="searchon" value="sourcenames" id="src">
49 <label for="src">[% g('Source package names') %]</label>
50 <br>
51 [% g('Only show exact matches:') %]
52 <input type="checkbox" name="exact" value="1">
53 <br>
54 Distribution:
55 <select name="suite">
56 [% FOREACH s IN all_suites %]
57   <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
58 [% END %]
59   <option value="all">[% g('any') %]</option>
60 </select>
61 [% g('Section:') %]
62 <select name="section">
63 [% FOREACH s IN all_sections %]
64   <option value="[% s %]">[% s %]</option>
65 [% END %]
66   <option value="all" selected="selected">[% g('any') %]</option>
67 </select>
68 </form>
69 <p>[% g('There are shortcuts for some searches available:') %]</p>
70 <ul>
71       <li>[% g('<code>%s<var>name</var></code> for the search on package names.', packages_homepage_abs) %]</li>
72
73       <li>[% g('<code>%ssrc:<var>name</var></code> for the search on source package names.', packages_homepage_abs) %]</li>
74 </ul>
75 <hr>
76
77 <h3><a name="search_contents">[% g('Search the contents of packages') %]</a></h3>
78
79 <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>
80 <form method="GET" action="/search">
81 <input type="hidden" name="searchon" value="contents">
82
83 <label for="keyword">[% g('Keyword:') %]</label>
84 <input type="text" size="30" name="keywords" id="keyword"> &nbsp;
85
86 <input type="submit" value="[% g('Search') %]">
87 &nbsp;<input type="reset" value="[% g('Reset') %]">
88 <br>
89 [% g('Display:') %]
90 <br>
91 <input type="radio" name="mode" value="exactfilename" id="exactfilename" checked="checked">
92   <label for="exactfilename">[% g('packages that contain files named like this') %]</label>
93 <br>
94 <input type="radio" name="mode" value="" id="suffixpathname">
95   <label for="suffixpathname">[% g('packages that contain files whose names end with the keyword') %]</label>
96 <br>
97 <input type="radio" name="mode" value="filename" id="filename">
98   <label for="filename">[% g('packages that contain files whose names contain the keyword') %]</label>
99 <br>
100 <label for="distro">[% g('Distribution:') %]</label>
101
102 <select name="suite" id="distro">
103 [% FOREACH s IN all_suites %]
104   <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
105 [% END %]
106 </select>
107 <label for="architecture">[% g('Architecture:') %]</label>
108 <select name="arch" id="architecture">
109 [% FOREACH a IN all_architectures %]
110   <option value="[% a %]">[% a %]</option>
111 [% END %]
112   <option value="any" selected="selected">[% g('any') %]</option>
113 </select>
114 </form>
115
116 [% PROCESS 'html/foot.tmpl' copyright.years = '1997 - 2009' %]