]> git.deb.at Git - deb/packages.git/commitdiff
templates/html/show.tmpl: Denote unofficial ports
authorFrank Lichtenheld <Frank Lichtenheld frank@lichtenheld.de>
Sat, 2 Jun 2007 21:30:14 +0000 (23:30 +0200)
committerFrank Lichtenheld <Frank Lichtenheld frank@lichtenheld.de>
Sat, 2 Jun 2007 21:30:14 +0000 (23:30 +0200)
Get this information by 1) exposing the archive in the
%downloads hash 2) using config/mirrors.tmpl to determine
whether this archive is an unofficial port

lib/Packages/DoShow.pm
templates/html/show.tmpl

index cfe7a90f783ff8486ae74f909dc1b6ed06c6de36..05baeff8ea08463ed9624692ff7b5d604f26e39b 100644 (file)
@@ -201,6 +201,7 @@ sub do_show {
                                      instsize => $sizes_inst->{$a}, );
 
                            $d{version} = $versions->{$a} if $multiple_versions;
+                           $d{archive} = $archives->{$a};
                            if ( ($suite ne "experimental")
                                 && ($subsection ne 'debian-installer')) {
                                $d{contents_avail} = 1;
index fd10281c57e2e4d5f1aa481c3e3a4497ff2b1ce3..b6b939e228f572e342f08912d9243b413eb2a8cc 100644 (file)
@@ -1,4 +1,5 @@
 [% PROCESS 'config/archive_layout.tmpl' %]
+[% PROCESS 'config/mirrors.tmpl' %]
 [%- nav_arr = [ { prefix=>'Distribution:', title=>'Overview over this suite', url=>make_url('/','','source',''), name=>suite }, ];
     nav_arr.push( { title => 'Source packages', url=>make_url('/'), name=>'Source' } ) IF is_source;
     nav_arr.push( { prefix=>'Section:', title=>'All packages in this section', url=>make_url("$subsection/"), name=>subsection } );
@@ -239,7 +240,7 @@ Do not install it on a normal Debian system.</p>
   [%- END %]
 [% END %]
 
-[% FOREACH downloads %]
+[% FOREACH d IN downloads %]
   [% IF loop.first -%]
     <div id="pdownload">
     <h2>Download [% pkg %]</h2>
@@ -250,11 +251,12 @@ Do not install it on a normal Debian system.</p>
   [%- END %]
 
 <tr>
-[% download_url = pkg _ '/' _ arch _ '/download'
-   filelist_url = pkg _ '/' _ arch _ '/filelist' %]
-<th><a href="[% make_url(download_url) | uri %]">[% arch %]</a></th>
-[% '<td>' _ version _ '</td>' IF versions.multiple %]
-<td class="size">[% pkgsize %]&nbsp;kB</td><td class="size">[% instsize %]&nbsp;kB</td>
+[% download_url = pkg _ '/' _ d.arch _ '/download'
+   filelist_url = pkg _ '/' _ d.arch _ '/filelist' %]
+<th><a href="[% make_url(download_url) | uri %]">[% d.arch %]</a>
+[%- SET a = d.archive; IF mirrors.$a.unofficial_port  %] <strong>(unofficial port)</strong>[% END %]</th>
+[% '<td>' _ d.version _ '</td>' IF versions.multiple %]
+<td class="size">[% d.pkgsize %]&nbsp;kB</td><td class="size">[% d.instsize %]&nbsp;kB</td>
 <td>
 [% IF contents_avail %]
   [<a href="[% make_url(filelist_url) | uri %]">list of files</a>]