X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=templates%2Fhtml%2Fsearch.tmpl;h=78b4786a2f8fc50bfee765a69ce3dd09f2c87dec;hb=e454ca3e9cd32ded30b5ee29302119ccd28d71ee;hp=e5105bf7ef56638b786651850e70fdc407d1c4f3;hpb=078ddbf7006d957bbef2daa9735ec9a8bf3d8fcd;p=deb%2Fpackages.git diff --git a/templates/html/search.tmpl b/templates/html/search.tmpl index e5105bf..78b4786 100644 --- a/templates/html/search.tmpl +++ b/templates/html/search.tmpl @@ -1,22 +1,93 @@ [%- PROCESS 'config/archive_layout.tmpl' -%] +[%- keyword_str = search_keywords.join(' '); + keyword_esc = uri_escape(keyword_str); + keyword_enc = html_encode(keyword_str); + + section_str = params.values.section.no_replace.join(', '); + section_esc = uri_escape(section_str); + section_enc = html_encode(section_str); + + suite_str = params.values.suite.no_replace.join(', '); + suite_esc = uri_escape(suite_str); + suite_enc = html_encode(suite_str); + + architectures_str = params.values.arch.no_replace.join(', '); + architectures_esc = uri_escape(architectures_str); + architectures_enc = html_encode(architectures_str); +-%] [%- PROCESS 'html/head.tmpl' - title_tag = 'Debian Package Search Results' + title_tag = "Package Search Results -- $keyword_enc" print_search_field = 'packages' + search_field_values = { + keywords => search_keywords.join(' '), + searchon => opts.searchon_form, + suite => params.values.suite.no_replace.join(','), + architectures => params.values.arch.no_replace.join(','), + sections => params.values.section.no_replace.join(','), + } navigation = [ { name => 'Package Search Results' } ] -%] +
+[% UNLESS results %] +

You can try a different search on the Packages search page.

+ + [% IF opts.searchon != "names" && opts.exact %] +

You have searched only for words exactly matching your keywords. + You can try to search allowing subword matching + [% END %] +[% END %] +[% IF opts.searchon == "names" && non_results %] +

[% non_results %] +results have not been displayed due to the search parameters.

+[% END %] +
+ [%- PROCESS 'html/messages.tmpl' -%]
-

Found [% results %] matching packages.

+ +[% suite_wording = suite_enc.match("^(default|all)$") ? "all suites" : "suite(s) $suite_enc"; + section_wording = (section_enc == 'all') ? "all sections" : "section(s) $section_enc"; + arch_wording = (architectures_enc == 'any') ? "all architectures" : "architecture(s) $architectures_enc"; + IF opts.searchon == "names"; + source_wording = opts.source ? "source packages" : "packages"; + msg = "You have searched for $source_wording that names contain $keyword_enc in $suite_wording, $section_wording, and $arch_wording ."; + ELSE; + exact_wording = opts.exact ? "" : " (including subword matching)"; + msg = "You have searched for $keyword_enc in packages names and descriptions in $suite_wording, $section_wording, and $arch_wording$exact_wording ."; + END %] +

[% msg %] + +[% IF results %] +Found [% results %] matching packages.

+[% END %] + +[% IF too_many_hits %] +[% IF opts.searchon != "names" %] +

Note that this only shows the best matches, sorted by relevance. +If the first few packages don't match what you searched for, try using more keywords or alternative +keywords.

+[% ELSE %] +

Your search was too wide so we will only display exact matches. +At least [% too_many_hits %] results have been omitted and will not be displayed. +Please consider using a longer keyword or more keywords.

+[% END; END %] + +[% UNLESS results %] +

Sorry, your search gave no results

+[% END %] + [% FOREACH categories %] [% "

$name

" IF name %] [% FOREACH packages %]

Package [% pkg %]

+ +[%- PROCESS 'html/foot.tmpl' -%]