]> git.deb.at Git - deb/packages.git/blobdiff - templates/html/show.tmpl
show.tmpl: Add a 'Source' entry in the navigation bar for source packages
[deb/packages.git] / templates / html / show.tmpl
index fb6f9ac7e6eede7201c5a1f497aab8dc27841588..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' %]
 [% END %]
 </ul>
 
+[% vcs_link = page.get_newest("vcs-browser") %]
 [% #FIXME: should this only be used for the PTS?
    known_vcs = [ [ 'cvs', 'CVS', 'cvs' ],
                [ 'svn', 'Subversion', 'subversion' ],
                [ 'bzr', 'bzr', 'bzr' ],
                [ 'darcs', 'Darcs', 'darcs' ],
                [ 'arch', 'arch', 'tla' ],
-               [ 'git', 'Git', 'git-core' ], ];
+               [ 'git', 'Git', 'git-core' ],
+               [ 'hg', 'Hg', 'mercurial' ], ];
    FOREACH vcs IN known_vcs;
        vcs_id = vcs.0; vcs_name = vcs.1; vcs_pkg = vcs.2;
        vcs_info = page.get_newest("vcs-$vcs_id");
@@ -77,7 +81,9 @@
        IF vcs_info; %]
 <p>Debian Package Repository (<acronym title="Version Control System">VCS</acronym>:
 <a href="[% make_url(vcs_pkg,'','source','') %]">[% vcs_name %]</a>):<br> <a href="[% vcs_info %]" class="pvcslink">[% vcs_info %]</a></p>
-[% END; END %]
+[% IF vcs_link %]
+<p>Debian Package Repository (Browsable):<br> <a href="[% vcs_link %]" class="pvcslink">[% vcs_link %]</a></p>
+[% END; END; END %]
 
 [% IF src %]
   <p>Download Source Package <a href="[% src.url %]">[% src.pkg %]</a>:
 [% IF suite == "experimental" || subsection == "debian-installer" %]
 <div class="pconstantnag">
 [% IF suite == "experimental" %]
+[% changelog_link = 'changelog';
+   changelog_link = "<a href='$changelogs_url$files.changelog.path'>changelog</a>" %] 
 <h2>Experimental package</h2>
 <p>Warning: This package is from the <strong>experimental</strong> distribution.
 That means it is likely unstable or buggy, and it may even cause data loss.
-Please be sure to consult the changelog and other possible documentation before
+Please be sure to consult the [% changelog_link %] and other possible documentation before
 using it.</p>
 [% END %]
 [% IF subsection == "debian-installer" %]