]> git.deb.at Git - deb/packages.git/commitdiff
Merge branch 'master' into ubuntu-master
authorGerfried Fuchs <rhonda@debian.org>
Fri, 26 Aug 2011 09:02:50 +0000 (11:02 +0200)
committerGerfried Fuchs <rhonda@debian.org>
Fri, 26 Aug 2011 09:02:50 +0000 (11:02 +0200)
1  2 
static/about/index.tmpl
templates/html/show.tmpl

diff --combined static/about/index.tmpl
index e81a856bedde7fc7a41eae795e871d6558c14ba2,f3e4ec09b6a5f1c1c717014fc9b9ad3b338fa3a5..06fac169835461af6ba35adcaa86e8edc3c2061c
  
  <p>The current code base is maintained by Frank Lichtenheld in
  <a href="http://git.or.cz/">git</a> and can be obtained from
- <a href="http://source.djpig.de/git/">http://source.djpig.de/git/</a>
+ <a href="http://anonscm.debian.org/git/webwml/packages.git">http://anonscm.debian.org/git/webwml/packages.git</a>
  both over <tt>HTTP</tt> and the native git protocol.
  
  <blockquote>
-       git clone http://source.djpig.de/git/packages.git
+       git clone http://anonscm.debian.org/git/webwml/packages.git
  </blockquote>
  
  <p>or
  
  <blockquote>
-       git clone git://source.djpig.de/git/packages.git
+       git clone git://anonscm.debian.org/webwml/packages.git
  </blockquote>
  
 +<p>The modifications specific to Ubuntu can be found in the <tt>ubuntu-master</tt>
 +branch.</p>
 +
  <p>The older second generation code can be found in the Debian CVS
  at <a href="http://cvs.debian.org/packages/?cvsroot=webwml">cvs.debian.org</a>.
  
diff --combined templates/html/show.tmpl
index dd56fda2ccdb33fc71d12f6d97acbd6fce617623,8b4a6e26389ce9d259a91a4dca22082a3ebbc40c..d81d1e88afaa54e3ff6d410be8a8fe0018f99e1b
  [% END %]
  <h3>[% g('%s Resources:', organisation) %]</h3>
  <ul>
 -<li><a href="[% (is_source ? src_bugs_url : bugs_url) _ pkg %]">[% g('Bug Reports') %]</a></li>
 -
 -[% IF src.pkg -%]
 -<li><a href="[% pts_url _ src.pkg %]">[% g('Developer Information (PTS)') %]</a></li>
 -[% ELSIF is_source %]
 -<li><a href="[% pts_url _ pkg %]">[% g('Developer Information (PTS)') %]</a></li>
 -[%- END %]
 +<li><a href="[% launchpad_url _ (is_source ? pkg : src.pkg) _ '/+bugs' %]">[% g('Bug Reports') %]</a></li>
  
  [% IF files && (!archive or archive == main_archive or archive == 'security') %]
  <li><a href="[% changelogs_url _ files.changelog.path %]">[% g('%s Changelog', organisation) %]</a></li>
  
  [% IF patch_tracking_url && src %]
    [% FOREACH src.downloads %]
-     [% IF name.match('\.(debian\.tar|diff)\.(gz|bz2|lzma)$') %]
+     [% IF name.match('\.(debian\.tar|diff)\.(gz|xz|bz2|lzma)$') %]
      <li><a href="[% "$patch_tracking_url/$src.pkg/$src.version" %]">[% g("%s Patch Tracker", organisation) %]</a></li>
      [% END -%]
    [% END -%]
  [% ELSIF patch_tracking_url && is_source %]
    [% FOREACH srcfiles %]
-     [% IF filename.match('\.(debian\.tar|diff)\.(gz|bz2|lzma)$') %]
+     [% IF filename.match('\.(debian\.tar|diff)\.(gz|xz|bz2|lzma)$') %]
      <li><a href="[% "$patch_tracking_url/$pkg/$version" %]">[% g("%s Patch Tracker", organisation) %]</a></li>
      [% END -%]
    [% END -%]
    [% END %]
  [% END %]
  
 -[% IF maintainers.size == 1 -%]
 -  <h3>[% g('Maintainer:') %]</h3>
 -[%- ELSE -%]
 -  <h3>[% g('Maintainers:') %]</h3>
 -[%- END %]
 -[%- FOREACH maintainers;
 +[%- BLOCK handle_maintainer;
    mailarchiveurl = '';
    IF (matches = mail.match('^(.*)@lists\.debian\.org$'));
        mailarchiveurl = 'http://lists.debian.org/' _ uri_escape(matches.0) _ '/';
    ELSIF (matches = mail.match('^(.*)@lists\.ubuntu\.com$'));
        mailarchiveurl = 'http://lists.ubuntu.com/archives/' _ uri_escape(matches.0) _ '/';
    END -%]
 -  [%- '<ul>' IF loop.first -%]
 +  [% IF hide_mail %]
 +      <li>[% name | html %]
 +  [% ELSE %]
        <li><a href="mailto:[% mail | html %]">[% name | html %]</a>
 -      (<a href="[% ddpo_url %][% uri_escape(mail) %]" title="[% g("An overview over the maintainer's packages and uploads") %]">[% g('QA&nbsp;Page') %]</a>
 -      [%- IF mailarchiveurl %], <a href="[% mailarchiveurl %]" title="[% g('Archive of the Maintainer Mailinglist') %]">[% g('Mail&nbsp;Archive') %]</a>[% END %])
 +  [% END %]
 +      [%- IF mailarchiveurl %] (<a href="[% mailarchiveurl %]" title="[% g('Archive of the Maintainer Mailinglist') %]">[% g('Mail&nbsp;Archive') %]</a>)[% END %]
        </li>
 -  [%- '</ul>' IF loop.last -%]
 +[% END -%]
 +
 +[%- IF maintainers.size -%]
 +[% IF maintainers.size == 1 -%]
 +  <h3>[% g('Maintainer:') %]</h3>
 +[%- ELSE -%]
 +  <h3>[% g('Maintainers:') %]</h3>
 +[%- END %]
 +[%- FOREACH m IN maintainers;
 +   '<ul>' IF loop.first;
 +   PROCESS handle_maintainer name=m.name mail=m.mail;
 +   '</ul>' IF loop.last;
 + END -%]
 +<p>[% g('Please consider <a href="%s">filing a bug</a> or <a href="%s">asking a question</a> via Launchpad before contacting the maintainer directly.',
 +        "https://bugs.launchpad.net/ubuntu/+source/" _ (is_source ? pkg : src.pkg) _ "/+filebug",
 +        "https://answers.launchpad.net/ubuntu/+source/" _ (is_source ? pkg : src.pkg) _ "/+addquestion") %]</p>
 +[%- END -%]
 +
 +[%- IF original_maintainers.size -%]
 +[% IF original_maintainers.size == 1 -%]
 +  <h3>[% g('Original Maintainer (usually from Debian):') %]</h3>
 +[%- ELSE -%]
 +  <h3>[% g('Original Maintainers (usually from Debian):') %]</h3>
 +[%- END %]
 +[%- FOREACH m IN original_maintainers;
 +   '<ul>' IF loop.first;
 +   PROCESS handle_maintainer name=m.name mail=m.mail hide_mail=1;
 +   '</ul>' IF loop.last;
 + END -%]
 +<p>[% g('It should generally not be necessary for users to contact the original maintainer.') %]</p>
  [%- END -%]
  
  [% url = page.get_newest('url');
        version_class = 'vold';
     END %]
  [% "<td class='$version_class'>$d.version</td>" IF versions.multiple %]
- <td class="size">[% g('%s&nbsp;kB', num.format_number(d.pkgsize,1)) %]</td><td class="size">[% g('%s&nbsp;kB', d.instsize) %]</td>
+ <td class="size">[% g('%s&nbsp;kB', num.format_number(d.pkgsize,1)) %]</td><td class="size">[% g('%s&nbsp;kB', num.format_number(d.instsize,1)) %]</td>
  <td>
  [% IF d.contents_avail %]
    [<a href="[% make_url(filelist_url,'','arch',d.arch) %]">[% g('list of files') %]</a>]