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')
7 all_suites = [ 'lenny', 'lenny-volatile', 'lenny-backports', 'squeeze', 'sid' ]
8 version_numbers = { sarge => '3.1',
11 current_release = 'lenny'
12 all_sections = [ 'main', 'contrib', 'non-free' ]
13 all_architectures = [ 'alpha', 'arm', 'armel', 'amd64', 'avr32', 'hppa', 'i386',
14 'ia64', 'kfreebsd-amd64', 'kfreebsd-i386', 'mips',
15 'mipsel', 'm68k', 'powerpc', 's390', 'sparc' ]
18 <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 <p><em>[% g('Please contact <a href="mailto:%s">%s</a> if you encounter any problems!', admin.mail, admin.name) %]</em></p>
22 <h2>[% g('Browse through the lists of packages:') %]</h2>
24 <ul style="font-size:large">
25 [% FOREACH s IN all_suites %]
26 <li><a href="[% s %]/">[% s %]</a>
27 [% IF version_numbers.$s %]([% version_numbers.$s %])[% END %]</li>
31 <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 <p>[% g('Old releases can be found at <a href="%s">%s</a>.', old_releases, old_releases) %]</p>
37 <h2>[% g('Search') %]</h2>
39 <h3>[% g('Search package directories') %]</h3>
41 <form method="GET" action="/search">
42 <label for="kw">[% g('Keyword:') %]</label>
43 <input type="text" size="30" name="keywords" id="kw">
44 <input type="submit" value="[% g('Search') %]"> <input type="reset" value="[% g('Reset') %]">
47 <input type="radio" name="searchon" value="names" id="onlynames" checked="checked">
48 <label for="onlynames">[% g('Package names only') %]</label>
49 <input type="radio" name="searchon" value="all" id="descs">
50 <label for="descs">[% g('Descriptions') %]</label>
51 <input type="radio" name="searchon" value="sourcenames" id="src">
52 <label for="src">[% g('Source package names') %]</label>
54 [% g('Only show exact matches:') %]
55 <input type="checkbox" name="exact" value="1">
59 [% FOREACH s IN all_suites %]
60 <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
62 <option value="all">[% g('any') %]</option>
65 <select name="section">
66 [% FOREACH s IN all_sections %]
67 <option value="[% s %]">[% s %]</option>
69 <option value="all" selected="selected">[% g('any') %]</option>
72 <p>[% g('There are shortcuts for some searches available:') %]</p>
74 <li>[% g('<code>%s<var>name</var></code> for the search on package names.', packages_homepage_abs) %]</li>
76 <li>[% g('<code>%ssrc:<var>name</var></code> for the search on source package names.', packages_homepage_abs) %]</li>
80 <h3><a name="search_contents">[% g('Search the contents of packages') %]</a></h3>
82 <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>
83 <form method="GET" action="/search">
84 <input type="hidden" name="searchon" value="contents">
86 <label for="keyword">[% g('Keyword:') %]</label>
87 <input type="text" size="30" name="keywords" id="keyword">
89 <input type="submit" value="[% g('Search') %]">
90 <input type="reset" value="[% g('Reset') %]">
94 <input type="radio" name="mode" value="exactfilename" id="exactfilename" checked="checked">
95 <label for="exactfilename">[% g('packages that contain files named like this') %]</label>
97 <input type="radio" name="mode" value="" id="suffixpathname">
98 <label for="suffixpathname">[% g('packages that contain files whose names end with the keyword') %]</label>
100 <input type="radio" name="mode" value="filename" id="filename">
101 <label for="filename">[% g('packages that contain files whose names contain the keyword') %]</label>
103 <label for="distro">[% g('Distribution:') %]</label>
105 <select name="suite" id="distro">
106 [% FOREACH s IN all_suites %]
107 <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
110 <label for="architecture">[% g('Architecture:') %]</label>
111 <select name="arch" id="architecture">
112 [% FOREACH a IN all_architectures %]
113 <option value="[% a %]">[% a %]</option>
115 <option value="any" selected="selected">[% g('any') %]</option>
119 [% PROCESS 'html/foot.tmpl' page_name=packages_homepage copyright.years = '1997 - 2010' %]