]> git.deb.at Git - deb/packages.git/commitdiff
show.tmpl: Add a 'Source' entry in the navigation bar for source packages
authorFrank Lichtenheld <frank@lichtenheld.de>
Thu, 12 Apr 2007 21:00:42 +0000 (23:00 +0200)
committerFrank Lichtenheld <frank@lichtenheld.de>
Thu, 12 Apr 2007 21:00:42 +0000 (23:00 +0200)
Make 'Source' a replacement for the suite link and make the latter
not go to the source index page but the normal index page.

templates/html/show.tmpl

index 16ea7e40db4c01c9c32aa32f16cf2fa7671fc86e..fd10281c57e2e4d5f1aa481c3e3a4497ff2b1ce3 100644 (file)
@@ -1,4 +1,8 @@
 [% PROCESS 'config/archive_layout.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 } );
+    nav_arr.push( { prefix=>'Package:', name=>pkg } ); -%]
 [%- PROCESS 'html/head.tmpl'
    title_tag = ( is_source ? "Details of source package $pkg in $suite"
                           : "Details of package $pkg in $suite" )
@@ -8,9 +12,7 @@
    search_field_values = { 
                          searchon => is_source ? 'sourcenames' : 'names',
                          }
-  navigation = [ { prefix=>'Distribution:', title=>'Overview over this suite', url=>make_url('/'), name=>suite },
-                { prefix=>'Section:', title=>'All packages in this section', url=>make_url("$subsection/"), name=>subsection },
-                { prefix=>'Package:', name=>pkg } ]
+  navigation = nav_arr
 -%]
 <!-- show.tmpl -->
 [% PROCESS 'html/menu.inc' %]