/[qa]/trunk/pts/www/xsl/pts.xsl
ViewVC logotype

Diff of /trunk/pts/www/xsl/pts.xsl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 406 by hertzog, Mon Sep 23 22:44:00 2002 UTC revision 692 by hertzog, Thu Jan 22 19:17:04 2004 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="ISO-8859-1" ?>  <?xml version="1.0" encoding="ISO-8859-1" ?>
2    
3  <!--  <!--
4  # Copyright 2002 Raphaël Hertzog  # Copyright 2002-2003 Raphaël Hertzog
5  # This file is distributed under the terms of the General Public License  # This file is distributed under the terms of the General Public License
6  # version 2 or (at your option) any later version.  # version 2 or (at your option) any later version.
7  -->  -->
# Line 29  Line 29 
29    
30  <!-- Those variables controls the todo and problem item concerning  <!-- Those variables controls the todo and problem item concerning
31       standards-version not being up to date -->       standards-version not being up to date -->
32  <xsl:variable name="lastsv" select="'3.5.7'"/>  <xsl:variable name="lastsv" select="'3.6.1'"/>
33  <xsl:variable name="lastmajorsv" select="'3.'"/>  <xsl:variable name="lastmajorsv" select="'3.'"/>
34    
35  <!-- Named templates aka functions -->  <!-- Named templates aka functions -->
36  <xsl:template name="mirror">  <xsl:template name="mirror">
37    <xsl:choose>    <xsl:choose>
38      <xsl:when test="contains(source/section, 'non-US')">      <xsl:when test="contains(/source/section, 'non-US')">
39        <xsl:text>http://non-us.debian.org/debian-non-US</xsl:text>        <xsl:text>http://non-us.debian.org/debian-non-US</xsl:text>
40      </xsl:when>      </xsl:when>
41      <xsl:otherwise>      <xsl:otherwise>
# Line 63  Line 63 
63    </xsl:choose>    </xsl:choose>
64  </xsl:template>  </xsl:template>
65    
66    <!-- Convert + in %2b for URL escaping ... -->
67    <xsl:template name="escape-name">
68      <xsl:param name="text"/>
69      <xsl:if test="contains($text,'+')">
70        <xsl:value-of select="substring-before($text,'+')"/>
71        <xsl:text>%2b</xsl:text>
72        <xsl:call-template name="escape-name">
73        <xsl:with-param name="text"><xsl:value-of select="substring-after($text,'+')"/></xsl:with-param>
74        </xsl:call-template>
75      </xsl:if>
76      <xsl:if test="not(contains($text,'+'))">
77        <xsl:value-of select="$text"/>
78      </xsl:if>
79    </xsl:template>
80    
81    
82  <!-- All the work is done in a single template -->  <!-- All the work is done in a single template -->
83  <xsl:template match="source">  <xsl:template match="source">
84    
# Line 70  Line 86 
86    <html>    <html>
87    <head>    <head>
88    <meta name="ROBOTS" content="NOFOLLOW"/>    <meta name="ROBOTS" content="NOFOLLOW"/>
89    <link rel="stylesheet" href="../common/pts.css"/>    <link title="Default" rel="stylesheet" href="../common/pts.css"/>
90      <link title="Standard link rendering" rel="alternate stylesheet" href="../common/pts2.css"/>
91    <title>Overview of <xsl:value-of select="$package"/> source package</title>    <title>Overview of <xsl:value-of select="$package"/> source package</title>
92    </head>    </head>
93    <body>    <body>
94    
95    <form method="get" action="/common/index.html" style="float: right;">    <form method="get" action="/common/index.html" style="float: right;">
96    Jump to package : <br/>    <!-- this link should make lynx/links happy [FG] -->
97      Jump to package (<a href="/">home page</a>): <br/>
98    <input type="text" name="src" value=""/>    <input type="text" name="src" value=""/>
99    </form>    </form>
100    <h1>Overview of <xsl:value-of select="$package"/> source package</h1>    <h1>Overview of <xsl:value-of select="$package"/> source package</h1>
# Line 121  Line 139 
139    <td class="labelcell">Standards-Version</td>    <td class="labelcell">Standards-Version</td>
140    <td class="contentcell"><xsl:value-of select="standards-version"/></td>    <td class="contentcell"><xsl:value-of select="standards-version"/></td>
141    </tr>    </tr>
142      <tr class="normalrow">
143      <td class="labelcell">Priority &amp; Section</td>
144      <td class="contentcell"><xsl:value-of select="priority"/> - <xsl:value-of select="section"/></td>
145      </tr>
146      <xsl:if test="architecture!='any' and architecture!='all'">
147      <tr class="normalrow">
148      <td class="labelcell">Architecture</td>
149      <td class="contentcell"><xsl:value-of select="architecture"/></td>
150      </tr>
151      </xsl:if>
152    
153    <tr class="titlerow">    <tr class="titlerow">
154    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
# Line 137  Line 165 
165    <tr class="normalrow">    <tr class="normalrow">
166    <td class="labelcell">Release Critical</td>    <td class="labelcell">Release Critical</td>
167    <td class="contentcell">    <td class="contentcell">
168    <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=critical&amp;sev-inc=grave&amp;sev-inc=serious"><xsl:if test="$hasother">    <xsl:element name="a">
169      <xsl:value-of select="$other/bugs/@rc"/>      <xsl:attribute name="href">
170    </xsl:if></a>        <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>
171          <xsl:call-template name="escape-name">
172            <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
173          </xsl:call-template>
174          <xsl:text>&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=critical&amp;sev-inc=grave&amp;sev-inc=serious</xsl:text>
175        </xsl:attribute>
176        <xsl:if test="$hasother">
177          <xsl:value-of select="$other/bugs/@rc"/>
178        </xsl:if>
179      </xsl:element>
180    </td>    </td>
181    </tr>    </tr>
182    <tr class="normalrow">    <tr class="normalrow">
183    <td class="labelcell">Important and Normal</td>    <td class="labelcell">Important and Normal</td>
184    <td class="contentcell">    <td class="contentcell">
185    <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=important&amp;sev-inc=normal"><xsl:if test="$hasother">    <xsl:element name="a">
186      <xsl:value-of select="$other/bugs/@normal"/>      <xsl:attribute name="href">
187    </xsl:if></a>        <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>
188          <xsl:call-template name="escape-name">
189            <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
190          </xsl:call-template>
191          <xsl:text>&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=important&amp;sev-inc=normal</xsl:text>
192        </xsl:attribute>
193        <xsl:if test="$hasother">
194          <xsl:value-of select="$other/bugs/@normal"/>
195        </xsl:if>
196      </xsl:element>
197    </td>    </td>
198    </tr>    </tr>
199    <tr class="normalrow">    <tr class="normalrow">
200    <td class="labelcell">Minor and Wishlist</td>    <td class="labelcell">Minor and Wishlist</td>
201    <td class="contentcell">    <td class="contentcell">
202    <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=minor&amp;sev-inc=wishlist"><xsl:if test="$hasother">    <xsl:element name="a">
203      <xsl:value-of select="$other/bugs/@wishlist"/>      <xsl:attribute name="href">
204    </xsl:if></a>        <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>
205          <xsl:call-template name="escape-name">
206            <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
207          </xsl:call-template>
208          <xsl:text>&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=minor&amp;sev-inc=wishlist</xsl:text>
209        </xsl:attribute>
210        <xsl:if test="$hasother">
211          <xsl:value-of select="$other/bugs/@wishlist"/>
212        </xsl:if>
213      </xsl:element>
214    </td>    </td>
215    </tr>    </tr>
216    <tr class="normalrow">    <tr class="normalrow">
217    <td class="labelcell">Fixed and Pending</td>    <td class="labelcell">Fixed and Pending</td>
218    <td class="contentcell">    <td class="contentcell">
219    <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed"><xsl:if test="$hasother">    <xsl:element name="a">
220      <xsl:value-of select="$other/bugs/@fixed"/>      <xsl:attribute name="href">
221    </xsl:if></a>        <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>
222          <xsl:call-template name="escape-name">
223            <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
224          </xsl:call-template>
225          <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed</xsl:text>
226        </xsl:attribute>
227        <xsl:if test="$hasother">
228          <xsl:value-of select="$other/bugs/@fixed"/>
229        </xsl:if>
230      </xsl:element>
231    </td>    </td>
232    </tr>    </tr>
233    
234    <tr class="titlerow">    <tr class="titlerow">
235    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
236    Subcription - <a class="titlelink" href="http://www.debian.org/doc/manuals/developers-reference/ch-resources.en.html#s-pkg-tracking-system">Package Tracking System</a>    Subscription - <a class="titlelink" href="http://www.debian.org/doc/manuals/developers-reference/ch-resources.en.html#s-pkg-tracking-system">Package Tracking System</a>
237    </td></tr>    </td></tr>
238    <tr class="normalrow">    <tr class="normalrow">
239    <td class="labelcell">Subscribers count</td>    <td class="labelcell">Subscribers count</td>
# Line 205  Line 269 
269      <a href="http://packages.debian.org/{text()}"><xsl:value-of select="text()"/></a>      <a href="http://packages.debian.org/{text()}"><xsl:value-of select="text()"/></a>
270      <span style="font-size: 70%">      <span style="font-size: 70%">
271      (<a href="http://bugs.debian.org/{text()}"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@all"/> bugs</a>:      (<a href="http://bugs.debian.org/{text()}"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@all"/> bugs</a>:
272    <a title="critical, grave and serious" href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data={text()}&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=critical&amp;sev-inc=grave&amp;sev-inc=serious"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@rc"/></a>,  
273    <a title="important and normal" href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data={text()}&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=important&amp;sev-inc=normal"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@normal"/></a>,        <xsl:element name="a">
274    <a title="wishlist and minor" href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data={text()}&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=minor&amp;sev-inc=wishlist"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@wishlist"/></a>,          <xsl:attribute name="title">critical, grave and serious</xsl:attribute>
275    <a title="pending and fixed" href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data={text()}&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@fixed"/></a>)          <xsl:attribute name="href">
276              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
277              <xsl:call-template name="escape-name">
278                <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
279              </xsl:call-template>
280              <xsl:text>&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=critical&amp;sev-inc=grave&amp;sev-inc=serious</xsl:text>
281            </xsl:attribute>
282            <xsl:value-of select="$other/bugs/item[@name=$pkg]/@rc"/>
283          </xsl:element>,
284    
285          <xsl:element name="a">
286            <xsl:attribute name="title">important and normal</xsl:attribute>
287            <xsl:attribute name="href">
288            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
289            <xsl:call-template name="escape-name">
290              <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
291            </xsl:call-template>
292            <xsl:text>&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=important&amp;sev-inc=normal</xsl:text>
293            </xsl:attribute>
294            <xsl:value-of select="$other/bugs/item[@name=$pkg]/@normal"/>
295          </xsl:element>,
296    
297          <xsl:element name="a">
298            <xsl:attribute name="title">wishlist and minor</xsl:attribute>
299            <xsl:attribute name="href">
300              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
301              <xsl:call-template name="escape-name">
302                <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
303              </xsl:call-template>
304              <xsl:text>&amp;archive=no&amp;pend-exc=pending-fixed&amp;pend-exc=fixed&amp;pend-exc=done&amp;sev-inc=minor&amp;sev-inc=wishlist</xsl:text>
305            </xsl:attribute>
306            <xsl:value-of select="$other/bugs/item[@name=$pkg]/@wishlist"/>
307          </xsl:element>,
308    
309          <xsl:element name="a">
310            <xsl:attribute name="title">pending and fixed</xsl:attribute>
311            <xsl:attribute name="href">
312              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
313              <xsl:call-template name="escape-name">
314                <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
315              </xsl:call-template>
316              <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed</xsl:text>
317            </xsl:attribute>
318            <xsl:value-of select="$other/bugs/item[@name=$pkg]/@fixed"/>
319          </xsl:element>)
320      </span>      </span>
321      </li>      </li>
322    </xsl:for-each>    </xsl:for-each>
# Line 244  Line 352 
352    </xsl:if>    </xsl:if>
353    <xsl:if test="$hastesting">    <xsl:if test="$hastesting">
354    <tr class="normalrow">    <tr class="normalrow">
355    <td class="labelcell">Testing</td>    <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>
356    <td class="contentcell">    <td class="contentcell">
357    <xsl:value-of select="document(concat('../base/', $dir, '/testing.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/testing.xml'))/source/version"/>
358    </td>    </td>
# Line 260  Line 368 
368    </xsl:if>    </xsl:if>
369    <xsl:if test="$hasstable">    <xsl:if test="$hasstable">
370    <tr class="normalrow">    <tr class="normalrow">
371    <td class="labelcell">Stable</td>    <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>
372    <td class="contentcell">    <td class="contentcell">
373    <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>
374    </td>    </td>
# Line 284  Line 392 
392    <xsl:if test="architecture!='all'">    <xsl:if test="architecture!='all'">
393      <li><a href="http://buildd.debian.org/build.php?pkg={$package}">Buildd logs</a></li>      <li><a href="http://buildd.debian.org/build.php?pkg={$package}">Buildd logs</a></li>
394    </xsl:if>    </xsl:if>
395      <!-- DISABLED until ddtp.debian.org is back up
396        <li><a href="http://ddtp.debian.org/stats/pdesc/report.cgi?package={$package}&amp;lang=all&amp;type=src-drvbin&amp;subword=0">Description's translations (DDTP)</a></li>
397      <xsl:if test="$other/@debconf='yes'">
398        <li><a href="http://ddtp.debian.org/cgi-bin/ddtp.cgi?part=debconf&amp;package={$package}">Debconf templates's translations (DDTP)</a></li>
399      </xsl:if>
400      -->
401    <xsl:if test="$hasunstable and $other/debcheck/@unstable='yes'">    <xsl:if test="$hasunstable and $other/debcheck/@unstable='yes'">
402      <li><a href="http://qa.debian.org/debcheck.php?dist=unstable&amp;package={$package}">Debcheck on unstable</a></li>      <li><a href="http://qa.debian.org/debcheck.php?dist=unstable&amp;package={$package}">Debcheck on unstable</a></li>
403    </xsl:if>    </xsl:if>
# Line 293  Line 407 
407    <xsl:if test="$hasstable and $other/debcheck/@stable='yes'">    <xsl:if test="$hasstable and $other/debcheck/@stable='yes'">
408      <li><a href="http://qa.debian.org/debcheck.php?dist=stable&amp;package={$package}">Debcheck on stable</a></li>      <li><a href="http://qa.debian.org/debcheck.php?dist=stable&amp;package={$package}">Debcheck on stable</a></li>
409    </xsl:if>    </xsl:if>
410      <!-- convert maintainer/name to follow lintian.debian.org convention [FG] -->
411                                  <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-/()&#34; ', &quot;'&quot;)"/>
412      <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '____________________')"/>
413        <li><a href="http://lintian.debian.org/reports/m{$_name}.html#{$package}">Lintian report</a></li>
414    
415    </td>    </td>
416    </tr>    </tr>
417    
# Line 350  Line 469 
469        <li>The package is of priority standard or higher, you should really find some co-maintainers.</li>        <li>The package is of priority standard or higher, you should really find some co-maintainers.</li>
470      </xsl:if>      </xsl:if>
471      <xsl:if test="not(starts-with(standards-version, $lastsv))">      <xsl:if test="not(starts-with(standards-version, $lastsv))">
472        <li>You should update the package to follow the last version of        <li>The package should be updated to follow the last version of
473        Debian Policy (Standards-Version        <a href="http://www.debian.org/doc/debian-policy/">Debian Policy</a> (Standards-Version
474        <xsl:value-of select="$lastsv"/> instead of        <xsl:value-of select="$lastsv"/> instead of
475        <xsl:value-of select="standards-version"/>).</li>        <xsl:value-of select="standards-version"/>).</li>
476      </xsl:if>      </xsl:if>
# Line 359  Line 478 
478        <xsl:for-each select="$other/todo/item">        <xsl:for-each select="$other/todo/item">
479          <xsl:call-template name="outputitem"/>          <xsl:call-template name="outputitem"/>
480        </xsl:for-each>        </xsl:for-each>
481          <!-- new upstream version goes in todo [FG] -->
482          <xsl:if test="$other/@watch='yes' and $other/watch/@new!='0'">
483            <li>A new upstream version was found:
484               (<xsl:value-of select="$other/watch/@new"/>). <a href="{$other/watch/@url}"><xsl:value-of select="$other/watch/@url"/></a></li>
485          </xsl:if>
486      </xsl:if>      </xsl:if>
487    </xsl:variable>    </xsl:variable>
488    <xsl:if test="count($todo)>0 and string($todo)!=''">    <xsl:if test="count($todo)>0 and string($todo)!=''">
# Line 376  Line 500 
500    <xsl:variable name="problems">    <xsl:variable name="problems">
501      <xsl:if test="$hasexcuse and document(concat('../base/', $dir, '/excuse.xml'))/excuse/@problematic">      <xsl:if test="$hasexcuse and document(concat('../base/', $dir, '/excuse.xml'))/excuse/@problematic">
502        <li>The package has not yet entered <a        <li>The package has not yet entered <a
503        href="http://ftp-master.debian.org/testing/update_excuses.html#{$package}">testing</a>        href="http://ftp-master.debian.org/testing/update_excuses.html.gz#{$package}">testing</a>
504        even though the <xsl:value-of select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/@limit"/>-day        even though the <xsl:value-of select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/@limit"/>-day
505        delay is over.</li>        delay is over. <a href="http://bjorn.haxx.se/debian/testing.pl?package={$package}">Check why</a>.</li>
506      </xsl:if>      </xsl:if>
507      <xsl:if test="not(starts-with(standards-version, $lastmajorsv))">      <xsl:if test="not(starts-with(standards-version, $lastmajorsv))">
508        <li>The package is severly out of date with respect to the Debian        <li>The package is severly out of date with respect to the Debian
# Line 387  Line 511 
511        <xsl:value-of select="standards-version"/>...</li>        <xsl:value-of select="standards-version"/>...</li>
512      </xsl:if>      </xsl:if>
513      <xsl:if test="$hasother">      <xsl:if test="$hasother">
514    
515          <!-- Wnpp handling. [PvR] -->
516          <xsl:if test="$other/@wnpp='yes'">
517          <li>
518            <xsl:choose>
519              <xsl:when test="$other/wnpp/@type='O'">
520              <span style="font-weight: bold">This package has been orphaned</span>.
521              This means that it does not have a real maintainer at the
522              moment. Please consider adopting this package if you have some
523              interests in it.
524              </xsl:when>
525              <xsl:when test="$other/wnpp/@type='ITA'">
526              This package has been orphaned, but someone is intending to
527              resume its maintenance.
528              </xsl:when>
529              <xsl:when test="$other/wnpp/@type='RFA'">
530              The current maintainer is looking for someone who can take over
531              maintenance of this package. If you have some interests in this package,
532              please consider taking it over. Alternatively you may
533              want to be co-maintainer in order to help the actual maintainer.
534              </xsl:when>
535              <xsl:when test="$other/wnpp/@type='ITP'">
536              The WNPP database contains an ITP (Intent To Package) entry for
537              this package. This is probably an error, as it has already been
538              packaged.
539              </xsl:when>
540              <xsl:when test="$other/wnpp/@type='RFP'">
541              The WNPP database contains an RFP (Request For Package) entry
542              for this package.  This is probably an error, as it has already
543              been packaged.
544              </xsl:when>
545              <xsl:otherwise>
546              The WNPP database contains an entry for this package,
547              but it is unclear what kind of entry it is. This is probably an error.
548              </xsl:otherwise>
549            </xsl:choose>
550            <xsl:variable name="bn" select="$other/wnpp/@bugnumber"/>
551            Please see bug number <a href="http://bugs.debian.org/{$bn}">
552            #<xsl:value-of select="$bn"/></a> for more information.
553          </li>
554          </xsl:if>
555    
556        <!-- uscan output if present [FG] -->
557        <xsl:if test="$other/@watch='yes'">
558          <li>
559          <xsl:if test="$other/watch/@warning!=''">
560            uscan had problems while searching for a new upstream version: <xsl:value-of select="$other/watch/@warning"/>
561          </xsl:if>
562          </li>
563        </xsl:if>
564    
565          <!-- Misc problems reported -->
566        <xsl:for-each select="$other/problems/item">        <xsl:for-each select="$other/problems/item">
567          <xsl:call-template name="outputitem"/>          <xsl:call-template name="outputitem"/>
568        </xsl:for-each>        </xsl:for-each>
# Line 416  Line 592 
592    </td>    </td>
593    </tr>    </tr>
594    </xsl:if>    </xsl:if>
595    
596    
597    <xsl:variable name="static">    <xsl:variable name="static">
598      <xsl:if test="$hasnews">      <xsl:if test="$hasnews">
# Line 456  Line 632 
632    <!-- END RIGHT SIDE -->    <!-- END RIGHT SIDE -->
633    </td></tr>    </td></tr>
634    </table>    </table>
   Warning: the "Latest News" section is not yet automatically updated. I'm waiting  
   that master.debian.org is upgraded to woody (stable) in order to be able  
   to setup the required scripts. Those scripts will automatically update the  
   "Latest News" and they'll let you add your own news items. Please be patient.  
635    <hr/>    <hr/>
636    Debian Package Tracking System - Copyright 2002 Raphaël Hertzog<br/>    Debian Package Tracking System - Copyright 2002-2003 Raphaël Hertzog<br/>
637    Last modified : <xsl:value-of select="$date"/>    Last modified : <xsl:value-of select="$date"/>
638    </body>    </body>
639    </html>    </html>

Legend:
Removed from v.406  
changed lines
  Added in v.692

  ViewVC Help
Powered by ViewVC 1.1.5