/[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 643 by hertzog, Thu Oct 2 17:44:33 2003 UTC revision 1047 by hertzog, Tue Jul 19 22:09:15 2005 UTC
# Line 8  Line 8 
8    
9  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
10    
11  <xsl:output encoding="ISO-8859-1" method="html"/>  <xsl:output encoding="UTF-8" method="html"/>
12    
13  <xsl:param name="package"/>  <xsl:param name="package"/>
14  <xsl:param name="dir"/>  <xsl:param name="dir"/>
15  <xsl:param name="date"/>  <xsl:param name="date"/>
16    <xsl:param name="hasoldstable" select="''"/>
17  <xsl:param name="hasstable" select="''"/>  <xsl:param name="hasstable" select="''"/>
18  <xsl:param name="hastesting" select="''"/>  <xsl:param name="hastesting" select="''"/>
19  <xsl:param name="hasunstable" select="''"/>  <xsl:param name="hasunstable" select="''"/>
# Line 20  Line 21 
21  <xsl:param name="hasother" select="''"/>  <xsl:param name="hasother" select="''"/>
22  <xsl:param name="hass-p-u" select="''"/>  <xsl:param name="hass-p-u" select="''"/>
23  <xsl:param name="hast-p-u" select="''"/>  <xsl:param name="hast-p-u" select="''"/>
24    <xsl:param name="hasoldstable-security" select="''"/>
25  <xsl:param name="hasstable-security" select="''"/>  <xsl:param name="hasstable-security" select="''"/>
26  <xsl:param name="hastesting-security" select="''"/>  <xsl:param name="hastesting-security" select="''"/>
27  <xsl:param name="hasnews" select="''"/>  <xsl:param name="hasnews" select="''"/>
# Line 29  Line 31 
31    
32  <!-- Those variables controls the todo and problem item concerning  <!-- Those variables controls the todo and problem item concerning
33       standards-version not being up to date -->       standards-version not being up to date -->
34  <xsl:variable name="lastsv" select="'3.6.1'"/>  <xsl:variable name="lastsv" select="'3.6.2'"/>
35  <xsl:variable name="lastmajorsv" select="'3.'"/>  <xsl:variable name="lastmajorsv" select="'3.'"/>
36    
37  <!-- Named templates aka functions -->  <!-- Named templates aka functions -->
38  <xsl:template name="mirror">  <xsl:template name="mirror">
39    <xsl:choose>    <xsl:text>http://ftp.debian.org/debian</xsl:text>
     <xsl:when test="contains(/source/section, 'non-US')">  
       <xsl:text>http://non-us.debian.org/debian-non-US</xsl:text>  
     </xsl:when>  
     <xsl:otherwise>  
       <xsl:text>http://http.us.debian.org/debian</xsl:text>  
     </xsl:otherwise>  
   </xsl:choose>  
40  </xsl:template>  </xsl:template>
41    
42  <xsl:template name="outputitem">  <xsl:template name="outputitem">
# Line 51  Line 46 
46          <xsl:text>[</xsl:text>          <xsl:text>[</xsl:text>
47          <xsl:value-of select="@date"/>          <xsl:value-of select="@date"/>
48          <xsl:text>] </xsl:text>          <xsl:text>] </xsl:text>
49        </xsl:if><a href="{@url}"><xsl:value-of select="text()"/></a></li>        </xsl:if><a href="{@url}">
50          <xsl:value-of select="text()"/></a><xsl:if test="@from">
51            <xsl:text> (</xsl:text>
52            <xsl:value-of select="@from"/>
53            <xsl:text>)</xsl:text></xsl:if></li>
54      </xsl:when>      </xsl:when>
55      <xsl:otherwise>      <xsl:otherwise>
56        <li><xsl:if test="@date">        <li><xsl:if test="@date">
# Line 78  Line 77 
77    </xsl:if>    </xsl:if>
78  </xsl:template>  </xsl:template>
79    
80    <!-- Strip epoch -->
81    <xsl:template name="strip-epoch">
82      <xsl:param name="version"/>
83      <xsl:if test="contains($version,':')">
84        <xsl:value-of select="substring-after($version,':')"/>
85      </xsl:if>
86      <xsl:if test="not(contains($version,':'))">
87        <xsl:value-of select="$version"/>
88      </xsl:if>
89    </xsl:template>
90    
91    
92  <!-- All the work is done in a single template -->  <!-- All the work is done in a single template -->
93  <xsl:template match="source">  <xsl:template match="source">
# Line 120  Line 130 
130    </xsl:if>    </xsl:if>
131    <tr class="normalrow">    <tr class="normalrow">
132    <td class="labelcell">Maintainer</td>    <td class="labelcell">Maintainer</td>
133    <td class="contentcell"><a class="email" href="http://qa.debian.org/developer.php?login={maintainer/email}">    <td class="contentcell">
134    <xsl:value-of select="maintainer/name"/></a> [<a class="email" href="mailto:{maintainer/email}">mail</a>]</td>    <xsl:element name="a">
135        <xsl:attribute name="href">
136          <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>
137          <xsl:call-template name="escape-name">
138            <xsl:with-param name="text"><xsl:value-of select="maintainer/email"/></xsl:with-param>
139          </xsl:call-template>
140        </xsl:attribute>
141        <xsl:value-of select="maintainer/name"/>
142      </xsl:element>
143      [<a class="email" href="mailto:{maintainer/email}">mail</a>]
144      </td>
145    </tr>    </tr>
146    <tr class="normalrow">    <tr class="normalrow">
147    <td class="labelcell"><a href="http://www.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s-collaborative-maint">Co-Maintainers</a></td>    <td class="labelcell"><a href="http://www.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s-collaborative-maint">Co-Maintainers</a></td>
# Line 157  Line 177 
177    <tr class="normalrow">    <tr class="normalrow">
178    <td class="labelcell">All bugs</td>    <td class="labelcell">All bugs</td>
179    <td class="contentcell">    <td class="contentcell">
180    <a href="http://bugs.debian.org/src:{$package}"><xsl:if test="$hasother">    <xsl:element name="a">
181      <xsl:value-of select="$other/bugs/@all"/>      <xsl:attribute name="href">
182    </xsl:if></a>        <xsl:text>http://bugs.debian.org/src:</xsl:text>
183          <xsl:call-template name="escape-name">
184            <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
185          </xsl:call-template>
186        </xsl:attribute>
187        <xsl:if test="$hasother">
188          <xsl:value-of select="$other/bugs/@all"/>
189        </xsl:if>
190      </xsl:element>
191    </td>    </td>
192    </tr>    </tr>
193    <tr class="normalrow">    <tr class="normalrow">
# Line 324  Line 352 
352    
353    <tr class="titlerow">    <tr class="titlerow">
354    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
355    Other available versions    Available versions
356    </td></tr>    </td></tr>
357    <xsl:if test="$hasexperimental">  
358      <!-- oldstable -->
359      <xsl:if test="$hasoldstable">
360    <tr class="normalrow">    <tr class="normalrow">
361    <td class="labelcell">Experimental</td>    <td class="labelcell"><a href="http://www.debian.org/releases/woody/">Oldstable</a></td>
362    <td class="contentcell">    <td class="contentcell">
363    <xsl:value-of select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/>
364      </td>
365      </tr>
366      </xsl:if>
367      <xsl:if test="$hasoldstable-security">
368      <tr class="normalrow">
369      <td class="labelcell"><small>Oldstable Security Updates</small></td>
370      <td class="contentcell">
371      <xsl:value-of select="document(concat('../base/', $dir, '/oldstable-security.xml'))/source/version"/>
372      </td>
373      </tr>
374      </xsl:if>
375    
376      <!-- stable -->
377      <xsl:if test="$hasstable">
378      <tr class="normalrow">
379      <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>
380      <td class="contentcell">
381      <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>
382    </td>    </td>
383    </tr>    </tr>
384    </xsl:if>    </xsl:if>
385    <xsl:if test="$hasstable-security">    <xsl:if test="$hasstable-security">
386    <tr class="normalrow">    <tr class="normalrow">
387    <td class="labelcell">Security Updates (stable)</td>    <td class="labelcell"><small>Stable Security Updates</small></td>
388    <td class="contentcell">    <td class="contentcell">
389    <xsl:value-of select="document(concat('../base/', $dir, '/stable-security.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/stable-security.xml'))/source/version"/>
390    </td>    </td>
391    </tr>    </tr>
392    </xsl:if>    </xsl:if>
393    <xsl:if test="$hastesting-security">    <xsl:if test="$hass-p-u">
394    <tr class="normalrow">    <tr class="normalrow">
395    <td class="labelcell">Security Updates (testing)</td>    <td class="labelcell"><small>Stable Proposed Updates</small></td>
396    <td class="contentcell">    <td class="contentcell">
397    <xsl:value-of select="document(concat('../base/', $dir, '/testing-security.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/s-p-u.xml'))/source/version"/>
398    </td>    </td>
399    </tr>    </tr>
400    </xsl:if>    </xsl:if>
401    
402      <!-- testing -->
403    <xsl:if test="$hastesting">    <xsl:if test="$hastesting">
404    <tr class="normalrow">    <tr class="normalrow">
405    <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>    <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>
# Line 358  Line 408 
408    </td>    </td>
409    </tr>    </tr>
410    </xsl:if>    </xsl:if>
411      <xsl:if test="$hastesting-security">
412      <tr class="normalrow">
413      <td class="labelcell"><small>Testing Security Updates</small></td>
414      <td class="contentcell">
415      <xsl:value-of select="document(concat('../base/', $dir, '/testing-security.xml'))/source/version"/>
416      </td>
417      </tr>
418      </xsl:if>
419    <xsl:if test="$hast-p-u">    <xsl:if test="$hast-p-u">
420    <tr class="normalrow">    <tr class="normalrow">
421    <td class="labelcell">Testing Proposed Updates</td>    <td class="labelcell"><small>Testing Proposed Updates</small></td>
422    <td class="contentcell">    <td class="contentcell">
423    <xsl:value-of select="document(concat('../base/', $dir, '/t-p-u.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/t-p-u.xml'))/source/version"/>
424    </td>    </td>
425    </tr>    </tr>
426    </xsl:if>    </xsl:if>
427    <xsl:if test="$hasstable">  
428      <!-- unstablej -->
429      <xsl:if test="$hasunstable">
430    <tr class="normalrow">    <tr class="normalrow">
431    <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>    <td class="labelcell">Unstable</td>
432    <td class="contentcell">    <td class="contentcell">
433    <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/unstable.xml'))/source/version"/>
434    </td>    </td>
435    </tr>    </tr>
436    </xsl:if>    </xsl:if>
437    <xsl:if test="$hass-p-u">  
438      <!-- experimental -->
439      <xsl:if test="$hasexperimental">
440    <tr class="normalrow">    <tr class="normalrow">
441    <td class="labelcell">Stable Proposed Updates</td>    <td class="labelcell">Experimental</td>
442    <td class="contentcell">    <td class="contentcell">
443    <xsl:value-of select="document(concat('../base/', $dir, '/s-p-u.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/>
444    </td>    </td>
445    </tr>    </tr>
446    </xsl:if>    </xsl:if>
447    
448    <tr class="titlerow">    <tr class="titlerow">
449    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
450    Other links    Other links
451    </td></tr>    </td></tr>
452    <tr>    <tr>
453    <td class="contentcell" colspan="2" style="text-align: left">    <td class="contentcell" colspan="2" style="text-align: left">
454      <li>
455        <xsl:element name="a">
456          <xsl:attribute name="href">
457            <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
458            <xsl:value-of select="directory"/>
459            <xsl:text>/</xsl:text>
460            <xsl:call-template name="escape-name">
461              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
462            </xsl:call-template>
463            <xsl:text>_</xsl:text>
464            <xsl:call-template name="escape-name">
465              <xsl:with-param name="text">
466                <xsl:call-template name="strip-epoch">
467                  <xsl:with-param name="version">
468                    <xsl:value-of select="version"/>
469                  </xsl:with-param>
470                </xsl:call-template>
471              </xsl:with-param>
472            </xsl:call-template>
473            <xsl:text>/changelog</xsl:text>
474          </xsl:attribute>
475          <xsl:text>Changelog</xsl:text>
476        </xsl:element>
477      </li>
478    <xsl:if test="architecture!='all'">    <xsl:if test="architecture!='all'">
479      <li><a href="http://buildd.debian.org/build.php?pkg={$package}">Buildd logs</a></li>      <li>
480          <xsl:element name="a">
481            <xsl:attribute name="href">
482              <xsl:text>http://buildd.debian.org/build.php?pkg=</xsl:text>
483              <xsl:call-template name="escape-name">
484                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
485              </xsl:call-template>
486            </xsl:attribute>
487            <xsl:text>Buildd logs</xsl:text>
488          </xsl:element>
489        </li>
490    </xsl:if>    </xsl:if>
491      <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>    <!-- DISABLED until ddtp.debian.org is back up
492        <li>
493          <xsl:element name="a">
494            <xsl:attribute name="href">
495              <xsl:text>http://ddtp.debian.org/stats/pdesc/report.cgi?package=</xsl:text>
496              <xsl:call-template name="escape-name">
497                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
498              </xsl:call-template>
499              <xsl:text>&amp;lang=all&amp;type=src-drvbin&amp;subword=0</xsl:text>
500            </xsl:attribute>
501            Description's translations (DDTP)
502          </xsl:element>
503        </li>
504    <xsl:if test="$other/@debconf='yes'">    <xsl:if test="$other/@debconf='yes'">
505      <li><a href="http://ddtp.debian.org/cgi-bin/ddtp.cgi?part=debconf&amp;package={$package}">Debconf templates's translations (DDTP)</a></li>      <li>
506          <xsl:element name="a">
507            <xsl:attribute name="href">
508              <xsl:text>http://ddtp.debian.org/cgi-bin/ddtp.cgi?part=debconf&amp;package=</xsl:text>
509              <xsl:call-template name="escape-name">
510                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
511              </xsl:call-template>
512            </xsl:attribute>
513            Debconf templates's translations (DDTP)
514          </xsl:element>
515        </li>
516    </xsl:if>    </xsl:if>
517      -->
518    <xsl:if test="$hasunstable and $other/debcheck/@unstable='yes'">    <xsl:if test="$hasunstable and $other/debcheck/@unstable='yes'">
519      <li><a href="http://qa.debian.org/debcheck.php?dist=unstable&amp;package={$package}">Debcheck on unstable</a></li>      <li>
520          <xsl:element name="a">
521            <xsl:attribute name="href">
522              <xsl:text>http://qa.debian.org/debcheck.php?dist=unstable&amp;package=</xsl:text>
523              <xsl:call-template name="escape-name">
524                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
525              </xsl:call-template>
526            </xsl:attribute>
527            <xsl:text>Debcheck on unstable</xsl:text>
528          </xsl:element>
529        </li>
530    </xsl:if>    </xsl:if>
531    <xsl:if test="$hastesting and $other/debcheck/@testing='yes'">    <xsl:if test="$hastesting and $other/debcheck/@testing='yes'">
532      <li><a href="http://qa.debian.org/debcheck.php?dist=testing&amp;package={$package}">Debcheck on testing</a></li>      <li>
533          <xsl:element name="a">
534            <xsl:attribute name="href">
535              <xsl:text>http://qa.debian.org/debcheck.php?dist=testing&amp;package=</xsl:text>
536              <xsl:call-template name="escape-name">
537                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
538              </xsl:call-template>
539            </xsl:attribute>
540            <xsl:text>Debcheck on testing</xsl:text>
541          </xsl:element>
542        </li>
543    </xsl:if>    </xsl:if>
544    <xsl:if test="$hasstable and $other/debcheck/@stable='yes'">    <xsl:if test="$hasstable and $other/debcheck/@stable='yes'">
545      <li><a href="http://qa.debian.org/debcheck.php?dist=stable&amp;package={$package}">Debcheck on stable</a></li>      <li>
546          <xsl:element name="a">
547            <xsl:attribute name="href">
548              <xsl:text>http://qa.debian.org/debcheck.php?dist=stable&amp;package=</xsl:text>
549              <xsl:call-template name="escape-name">
550                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
551              </xsl:call-template>
552            </xsl:attribute>
553            <xsl:text>Debcheck on stable</xsl:text>
554          </xsl:element>
555        </li>
556    </xsl:if>    </xsl:if>
557    <!-- convert maintainer/name to follow lintian.debian.org convention [FG] -->    <!-- convert maintainer/name to follow lintian.debian.org convention [FG] -->
558                                <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-/()&#34; ', &quot;'&quot;)"/>                                <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-/()&#34; ', &quot;'&quot;)"/>
559    <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '____________________')"/>    <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '____________________')"/>
560      <li><a href="http://lintian.debian.org/reports/m{$_name}.html#{$package}">Lintian report</a></li>      <li><a href="http://lintian.debian.org/reports/m{$_name}.html#{$package}">Lintian report</a></li>
561      <li>
562        <xsl:element name="a">
563          <xsl:attribute name="href">
564            <xsl:text>http://qa.debian.org/developer.php?popcon=</xsl:text>
565            <xsl:call-template name="escape-name">
566              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
567            </xsl:call-template>
568          </xsl:attribute>
569          <xsl:text>Popcon stats</xsl:text>
570        </xsl:element>
571      </li>
572    </td>    </td>
573    </tr>    </tr>
574    
# Line 481  Line 640 
640          <li>A new upstream version was found:          <li>A new upstream version was found:
641             (<xsl:value-of select="$other/watch/@new"/>). <a href="{$other/watch/@url}"><xsl:value-of select="$other/watch/@url"/></a></li>             (<xsl:value-of select="$other/watch/@new"/>). <a href="{$other/watch/@url}"><xsl:value-of select="$other/watch/@url"/></a></li>
642        </xsl:if>        </xsl:if>
643          <xsl:if test="$other/bugs/@patch!='0'">
644            <li>There are <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;include=patch&amp;exclude=pending">patches in the BTS</a>, you should include them.</li>
645          </xsl:if>
646      </xsl:if>      </xsl:if>
647    </xsl:variable>    </xsl:variable>
648    <xsl:if test="count($todo)>0 and string($todo)!=''">    <xsl:if test="count($todo)>0 and string($todo)!=''">
# Line 500  Line 662 
662        <li>The package has not yet entered <a        <li>The package has not yet entered <a
663        href="http://ftp-master.debian.org/testing/update_excuses.html.gz#{$package}">testing</a>        href="http://ftp-master.debian.org/testing/update_excuses.html.gz#{$package}">testing</a>
664        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
665        delay is over.</li>        delay is over.
666          <xsl:element name="a">
667            <xsl:attribute name="href">
668              <xsl:text>http://bjorn.haxx.se/debian/testing.pl?package=</xsl:text>
669              <xsl:call-template name="escape-name">
670                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
671              </xsl:call-template>
672            </xsl:attribute>
673            Check why
674          </xsl:element>
675          .</li>
676      </xsl:if>      </xsl:if>
677      <xsl:if test="not(starts-with(standards-version, $lastmajorsv))">      <xsl:if test="not(starts-with(standards-version, $lastmajorsv))">
678        <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 510  Line 682 
682      </xsl:if>      </xsl:if>
683      <xsl:if test="$hasother">      <xsl:if test="$hasother">
684    
685          <!-- Override disparity handling. [JvW] -->
686          <xsl:if test="$other/@override='yes'">
687            <xsl:for-each select="$other/override/group">
688              <li>There were override disparities found in suite <xsl:value-of
689                  select="@suite"/>:
690                <ul>
691                  <xsl:for-each select="disparity">
692                    <li><xsl:value-of select="text()"/></li>
693                  </xsl:for-each>
694                </ul>
695              </li>
696            </xsl:for-each>
697          </xsl:if>
698    
699        <!-- Wnpp handling. [PvR] -->        <!-- Wnpp handling. [PvR] -->
700        <xsl:if test="$other/@wnpp='yes'">        <xsl:if test="$other/@wnpp='yes'">
701        <li>        <li>
# Line 517  Line 703 
703            <xsl:when test="$other/wnpp/@type='O'">            <xsl:when test="$other/wnpp/@type='O'">
704            <span style="font-weight: bold">This package has been orphaned</span>.            <span style="font-weight: bold">This package has been orphaned</span>.
705            This means that it does not have a real maintainer at the            This means that it does not have a real maintainer at the
706            moment. Please consider adopting this package if you have some            moment. Please consider adopting this package if you are interested in it.
           interests in it.  
707            </xsl:when>            </xsl:when>
708            <xsl:when test="$other/wnpp/@type='ITA'">            <xsl:when test="$other/wnpp/@type='ITA'">
709            This package has been orphaned, but someone is intending to            This package has been orphaned, but someone intends to maintain it.
           resume its maintenance.  
710            </xsl:when>            </xsl:when>
711            <xsl:when test="$other/wnpp/@type='RFA'">            <xsl:when test="$other/wnpp/@type='RFA'">
712            The current maintainer is looking for someone who can take over            The current maintainer is looking for someone who can take over
713            maintenance of this package. If you have some interests in this package,            maintenance of this package. If you are interested in this package,
714            please consider taking it over. Alternatively you may            please consider taking it over. Alternatively you may
715            want to be co-maintainer in order to help the actual maintainer.            want to be co-maintainer in order to help the actual maintainer.
716            </xsl:when>            </xsl:when>
717              <xsl:when test="$other/wnpp/@type='RFH'">
718              The current maintainer is looking for someone who can help with the
719              maintenance of this package. If you are interested in this package,
720              please consider helping out. One way you can help is offer to be a
721              co-maintainer or triage bugs in the bts.
722              </xsl:when>
723            <xsl:when test="$other/wnpp/@type='ITP'">            <xsl:when test="$other/wnpp/@type='ITP'">
724            The WNPP database contains an ITP (Intent To Package) entry for            The WNPP database contains an ITP (Intent To Package) entry for
725            this package. This is probably an error, as it has already been            this package. This is probably an error, as it has already been
# Line 540  Line 730 
730            for this package.  This is probably an error, as it has already            for this package.  This is probably an error, as it has already
731            been packaged.            been packaged.
732            </xsl:when>            </xsl:when>
733              <xsl:when test="$other/wnpp/@type='RM'">
734              <span style="font-weight: bold">This package has been requested to be
735              removed</span>.
736              This means that, when this request gets processed by an ftp-master, this
737              package will no longer be in unstable, and will automatically be removed
738              from testing too afterwards. If for some reason you want keep this
739              package in unstable, please discuss so in the bug.
740              </xsl:when>
741            <xsl:otherwise>            <xsl:otherwise>
742            The WNPP database contains an entry for this package,            The WNPP database contains an entry for this package,
743            but it is unclear what kind of entry it is. This is probably an error.            but it is unclear what kind of entry it is. This is probably an error.
# Line 631  Line 829 
829    </td></tr>    </td></tr>
830    </table>    </table>
831    <hr/>    <hr/>
832    Debian Package Tracking System - Copyright 2002-2003 Raphaël Hertzog<br/>    Debian Package Tracking System - Copyright 2002-2004 Raphaël Hertzog<br/>
833    Last modified : <xsl:value-of select="$date"/>    Last modified : <xsl:value-of select="$date"/>
834    </body>    </body>
835    </html>    </html>

Legend:
Removed from v.643  
changed lines
  Added in v.1047

  ViewVC Help
Powered by ViewVC 1.1.5