X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=templates%2Fhtml%2Fshow.tmpl;h=22856b0416abeba1fcbdebce7f1e8a457746507f;hb=d4e0a5b0329b5247898b6d991b651f7df1f388bb;hp=1a7ca12af399148d4952d9f4c9dbef494448812e;hpb=25e5281f713a5872790b648c8ed83509ee6a4c9a;p=deb%2Fpackages.git diff --git a/templates/html/show.tmpl b/templates/html/show.tmpl index 1a7ca12..22856b0 100644 --- a/templates/html/show.tmpl +++ b/templates/html/show.tmpl @@ -1,4 +1,9 @@ [% 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 } ); + 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 +13,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 -%] [% PROCESS 'html/menu.inc' %] @@ -44,13 +47,92 @@ [%- PROCESS marker text=section IF section && section != main_section %] [%- PROCESS marker text='essential' IF page.get_newest('essential') == 'yes' %] +[% UNLESS is_virtual %] +
+

Links for [% pkg %]

+

Debian Resources:

+ + +[% 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' ], + [ '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"); + SET vcs_info = page.get_newest("x-vcs-$vcs_id") UNLESS vcs_info; + IF vcs_info; %] +

Debian Package Repository (VCS: +[% vcs_name %]):
[% vcs_info %]

+[% IF vcs_link %] +

Debian Package Repository (Browsable):
[% vcs_link %]

+[% END; END; END %] + +[% IF src %] +

Download Source Package [% src.pkg %]: + [% FOREACH src.downloads %] + [% '

' IF loop.last %] + [% END %] + [% IF src.downloads.size == 0 %] + Not found + [% END %] +[% END %] + +[% IF maintainers.size == 1 -%] +

Maintainer:

+ [%- FOREACH maintainers -%] + [% name | html %] + (QA Page) + [%- END -%] +[%- ELSE -%] +

Maintainers:

+ [%- FOREACH maintainers -%] + [%- '' IF loop.last -%] + [%- END -%] +[%- END %] + +[% url = page.get_newest('url'); + IF url %] +

External Resources:

+

Homepage: [% url | html %]

+[% END %] + +
+[% END %] + [% IF suite == "experimental" || subsection == "debian-installer" %]
[% IF suite == "experimental" %] +[% changelog_link = 'changelog'; + changelog_link = "changelog" %]

Experimental package

Warning: This package is from the experimental 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.

[% END %] [% IF subsection == "debian-installer" %] @@ -62,21 +144,34 @@ Do not install it on a normal Debian system.

[% END %] -[% UNLESS is_virtual %]
-[% IF desc.short %] +[% UNLESS is_virtual %] + [% IF desc.short %]

[% desc.short %]

[% desc.long %] + [% END %] +[% ELSE %] +

This is a virtual package. See the Debian policy for a definition of virtual packages.

[% END %]
-[% END %] [% FOREACH tag IN tags %] [% IF loop.first -%]

Tags: [%- END %] - [% tag %][% ', ' UNLESS loop.last %] + [% facet = tag.0; + facet_name = debtags_voc.$facet; + tag_id = "$tag.0::$tag.1"; + tag_name = debtags_voc.$tag_id; + %] + [% facet_name _ ': ' UNLESS old_facet && facet == old_facet %] + [% IF tag_name %] + [% tag_name %][% ', ' UNLESS loop.last %] + [% ELSE %] + [% tag_id %][% ', ' UNLESS loop.last %] + [% END %] + [% old_facet = facet %] [% IF loop.last -%]

@@ -145,7 +240,7 @@ Do not install it on a normal Debian system.

[%- END %] [% END %] -[% FOREACH downloads %] +[% FOREACH d IN downloads %] [% IF loop.first -%]

Download [% pkg %]

@@ -156,11 +251,12 @@ Do not install it on a normal Debian system.

[%- END %] -[% download_url = pkg _ '/' _ arch _ '/download' - filelist_url = pkg _ '/' _ arch _ '/filelist' %] -[% arch %] -[% '' _ version _ '' IF versions.multiple %] -[% pkgsize %] kB[% instsize %] kB +[% download_url = pkg _ '/' _ d.arch _ '/download' + filelist_url = pkg _ '/' _ d.arch _ '/filelist' %] +[% d.arch %] +[%- SET a = d.archive; IF mirrors.$a.unofficial_port %] (unofficial port)[% END %] +[% '' _ d.version _ '' IF versions.multiple %] +[% d.pkgsize %] kB[% d.instsize %] kB [% IF contents_avail %] [list of files] @@ -199,67 +295,3 @@ Do not install it on a normal Debian system.

[%- END %] [% END %] - -[% UNLESS is_virtual %] -
-

More Information on [% pkg %]

-Check for Bug Reports about [% pkg %].
-[% IF src %] - Source Package: [% src.pkg %], Download: - [% FOREACH src.downloads %] - [[% name %]] - [% END %] - [% IF src.downloads.size == 0 %] - Not found - [% END %] -[% END %] - -[% IF files %] -
View the Debian changelog
-View the copyright file

-[% END %] -

-[% IF maintainers.size == 1 -%] - [%- FOREACH maintainers -%] - [% name | html %] is responsible for this Debian package. - [%- END -%] -[%- ELSE -%] - [%- FOREACH maintainers -%] - [%- IF loop.first -%] -[% name | html %] - [%- ELSIF loop.last -%] - and [% name | html %] are responsible for this Debian package. - [%- ELSE -%] -, [% name | html %] - [%- END -%] - [%- END -%] -[%- END %] -[% IF src -%] -See the developer information for [% pkg %]. -[% ELSIF is_source %] -See the developer information for [% pkg %]. -[%- END %] -[% # use url only for source packages - # otherwise we have too often two home page links - url = page.get_newest('url'); - IF is_source && url %] -

Homepage: [% url | html %]

-[% END %] -[% #FIXME: should this only be used for the PTS? - known_vcs = [ [ 'cvs', 'CVS' ], - [ 'svn', 'Subversion' ], - [ 'bzr', 'bzr' ], - [ 'darcs', 'Darcs'], - [ 'arch', 'arch' ] ]; - FOREACH vcs IN known_vcs; - vcs_id = vcs.0; vcs_name = vcs.1; - vcs_info = page.get_newest("vcs-$vcs_id"); - SET vcs_info = page.get_newest("x-vcs-$vcs_id") UNLESS vcs_info; - IF vcs_info; %] -

Repository for Debian package: [% vcs_info %] (VCS: [% vcs_name %])

-[% END; END %] - -

-

Search for other versions of [% pkg %]

-
-[% END %]