/[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 1094 by djpig, Mon Sep 12 21:18:50 2005 UTC revision 1740 by zack, Thu Nov 29 15:22:05 2007 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="ISO-8859-1" ?>  <?xml version="1.0" encoding="utf-8" ?>
2    
3  <!--  <!--
4  # Copyright 2002-2003 Raphaël Hertzog  # Copyright 2002-2005 Raphaël Hertzog and others
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 33  Line 33 
33    
34  <!-- Those variables controls the todo and problem item concerning  <!-- Those variables controls the todo and problem item concerning
35       standards-version not being up to date -->       standards-version not being up to date -->
36  <xsl:variable name="lastsv" select="'3.6.2'"/>  <xsl:variable name="lastsv" select="'3.7.2'"/>
37  <xsl:variable name="lastmajorsv" select="'3.'"/>  <xsl:variable name="lastmajorsv" select="'3.'"/>
38    
39  <!-- Named templates aka functions -->  <!-- Named templates aka functions -->
# Line 64  Line 64 
64    </xsl:choose>    </xsl:choose>
65  </xsl:template>  </xsl:template>
66    
67  <!-- Convert + in %2b for URL escaping ... -->  <!-- Convert + in %2b for URL escaping. Should actually first also do
68    other-to-%xx, especially % to %25... Fortunately, that's rare -->
69  <xsl:template name="escape-name">  <xsl:template name="escape-name">
70    <xsl:param name="text"/>    <xsl:param name="text"/>
71    <xsl:if test="contains($text,'+')">    <xsl:if test="contains($text,'+')">
# Line 90  Line 91 
91    </xsl:if>    </xsl:if>
92  </xsl:template>  </xsl:template>
93    
94    <xsl:template name="add-vcs-info">
95      <xsl:if test="repository">
96        <tr>
97          <td class="labelcell">
98            <xsl:text>Version Control</xsl:text>
99          </td>
100          <td class="contentcell">
101            <xsl:if test="repository/vcs[@kind='browser']">
102              <a href="{repository/vcs[@kind='browser']/@url}">
103                <xsl:text>browser</xsl:text>
104              </a>
105              <br />
106            </xsl:if>
107            <xsl:if test="repository/vcs[@kind!='browser']">
108              <xsl:text>raw: </xsl:text>
109              <xsl:for-each select="repository/vcs[@kind!='browser']">
110                <xsl:sort select="@kind" />
111                <a href="{@url}">
112                  <xsl:value-of select="@kind" />
113                </a>
114                <xsl:if test="position()!=last()">
115                  <xsl:text>, </xsl:text>
116                </xsl:if>
117              </xsl:for-each>
118            </xsl:if>
119          </td>
120        </tr>
121      </xsl:if>
122    </xsl:template>
123    
124  <!-- All the work is done in a single template -->  <!-- All the work is done in a single template -->
125  <xsl:template match="source">  <xsl:template match="source">
# Line 101  Line 131 
131    <html>    <html>
132    <head>    <head>
133    <meta name="ROBOTS" content="NOFOLLOW"/>    <meta name="ROBOTS" content="NOFOLLOW"/>
134    <link title="Default" rel="stylesheet" href="../common/pts.css"/>    <link type="text/css" title="Default" rel="stylesheet" href="../common/pts.css"/>
135    <link title="Standard link rendering" rel="alternate stylesheet" href="../common/pts2.css"/>    <link type="text/css" title="Standard link rendering" rel="alternate stylesheet" href="../common/pts2.css"/>
136    <title>Overview of <xsl:value-of select="$package"/> source package</title>    <title>Overview of <xsl:value-of select="$package"/> source package</title>
137    </head>    </head>
138    <body>    <body>
# Line 122  Line 152 
152    </xsl:element>    </xsl:element>
153    source package</h1>    source package</h1>
154    
155      <xsl:choose>
156      <xsl:when test="$removed='yes'">
157      <!-- REMOVED PACKAGE -->
158      <p>This package is not part of any Debian distribution. Thus you won't
159      find much information here. The package is either very new and hasn't
160      appeared on mirrors yet, or it's an old package that eventually got removed.
161      The old news are kept for historic purpose only.</p>
162    
163      <table class="righttable">
164      <xsl:variable name="static">
165        <xsl:if test="$hasnews">
166          <xsl:for-each select="document(concat('../base/', $dir, '/news.xml'))/news/static/item">
167            <xsl:call-template name="outputitem"/>
168          </xsl:for-each>
169        </xsl:if>
170      </xsl:variable>
171      <xsl:if test="count($static)>0 and string($static)!=''">
172        <tr class="titlerow">
173        <td class="titlecell">
174        Static Information
175        </td></tr>
176        <tr class="normalrow">
177        <td class="contentcell2">
178        <ul><xsl:copy-of select="$static"/></ul>
179        </td>
180        </tr>
181      </xsl:if>
182    
183      <xsl:variable name="news">
184        <xsl:if test="$hasnews">
185          <xsl:for-each select="document(concat('../base/', $dir, '/news.xml'))/news/news/item">
186            <xsl:call-template name="outputitem"/>
187          </xsl:for-each>
188        </xsl:if>
189      </xsl:variable>
190      <xsl:if test="count($news)>0 and string($news)!=''">
191        <tr class="titlerow">
192        <td class="titlecell">
193        Latest News
194        </td></tr>
195        <tr class="normalrow">
196        <td class="contentcell2">
197        <ul><xsl:copy-of select="$news"/></ul>
198        </td>
199        </tr>
200      </xsl:if>
201      </table>
202    
203      <!-- END REMOVED PACKAGE -->
204      </xsl:when>
205      <xsl:otherwise>
206      <!-- NON REMOVED PACKAGE -->
207    
208    <table class="containertable">    <table class="containertable">
209    <tr class="containerrow" valign="top">    <tr class="containerrow" valign="top">
210    <td class="containercell">    <td class="containercell">
# Line 132  Line 215 
215    General Information    General Information
216    </td></tr>    </td></tr>
217    <tr class="normalrow">    <tr class="normalrow">
218    <td class="labelcell">Last version</td>    <td class="labelcell">Latest version</td>
219    <td class="contentcell"><xsl:value-of select="version"/></td>    <td class="contentcell"><xsl:value-of select="version"/></td>
220    </tr>    </tr>
221    <xsl:if test="@release!='unstable'">    <xsl:if test="@release!='unstable'">
# Line 161  Line 244 
244    <td class="contentcell">    <td class="contentcell">
245    <xsl:if test="uploaders">    <xsl:if test="uploaders">
246      <xsl:for-each select="uploaders/item">      <xsl:for-each select="uploaders/item">
247        <a class="email" href="http://qa.debian.org/developer.php?login={email}"><xsl:value-of select="name"/></a> [<a class="email" href="mailto:{email}">mail</a>]<br/>        <xsl:element name="a">
248            <xsl:attribute name="href">
249              <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>
250              <xsl:call-template name="escape-name">
251                <xsl:with-param name="text"><xsl:value-of select="email"/></xsl:with-param>
252              </xsl:call-template>
253            </xsl:attribute>
254            <xsl:value-of select="name"/>
255          </xsl:element>
256          [<a class="email" href="mailto:{email}">mail</a>]<br/>
257      </xsl:for-each>      </xsl:for-each>
258    </xsl:if>    </xsl:if>
259    <xsl:if test="not(uploaders)">    <xsl:if test="not(uploaders)">
# Line 176  Line 268 
268    <td class="labelcell">Priority &amp; Section</td>    <td class="labelcell">Priority &amp; Section</td>
269    <td class="contentcell"><xsl:value-of select="priority"/> - <xsl:value-of select="section"/></td>    <td class="contentcell"><xsl:value-of select="priority"/> - <xsl:value-of select="section"/></td>
270    </tr>    </tr>
271      <xsl:call-template name='add-vcs-info' />
272    <xsl:if test="architecture!='any' and architecture!='all'">    <xsl:if test="architecture!='any' and architecture!='all'">
273    <tr class="normalrow">    <tr class="normalrow">
274    <td class="labelcell">Architecture</td>    <td class="labelcell">Architecture</td>
# Line 274  Line 367 
367    
368    <tr class="titlerow">    <tr class="titlerow">
369    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
370    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>      <a class="titlelink" href="http://www.debian.org/doc/manuals/developers-reference/ch-resources.en.html#s-pkg-tracking-system"><acronym title="Package Tracking System">PTS</acronym></a> subscription
371    </td></tr>    </td></tr>
372    <tr class="normalrow">    <tr class="normalrow">
373    <td class="labelcell">Subscribers count</td>    <td class="labelcell">Subscribers count</td>
# Line 374  Line 467 
467    <!-- oldstable -->    <!-- oldstable -->
468    <xsl:if test="$hasoldstable">    <xsl:if test="$hasoldstable">
469    <tr class="normalrow">    <tr class="normalrow">
470    <td class="labelcell"><a href="http://www.debian.org/releases/woody/">Oldstable</a></td>    <td class="labelcell"><a href="http://www.debian.org/releases/sarge/">Oldstable</a></td>
471    <td class="contentcell">    <td class="contentcell">
472    <xsl:value-of select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/>
473    </td>    </td>
# Line 497  Line 590 
590      </xsl:for-each>      </xsl:for-each>
591      <xsl:if test="$other/bugs/@patch!='0'">      <xsl:if test="$other/bugs/@patch!='0'">
592        <li>        <li>
593          <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;include=patch&amp;exclude=pending">Patches from BTS (<xsl:value-of select="$other/bugs/@patch"/>)</a>          <xsl:element name="a">
594              <xsl:attribute name="href">
595                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>
596                <xsl:call-template name="escape-name">
597                  <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
598                </xsl:call-template>
599                <xsl:text>&amp;include=tags:patch&amp;exclude=tags:pending&amp;pend-exc=done</xsl:text>
600              </xsl:attribute>
601              Patches from BTS (<xsl:value-of select="$other/bugs/@patch"/>)
602            </xsl:element>
603        </li>        </li>
604      </xsl:if>      </xsl:if>
605      </ul>      </ul>
# Line 518  Line 620 
620        <xsl:attribute name="href">        <xsl:attribute name="href">
621          <xsl:text>http://packages.debian.org/changelogs/</xsl:text>          <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
622          <xsl:value-of select="directory"/>          <xsl:value-of select="directory"/>
623          <xsl:text>/</xsl:text>          <xsl:text>/current/changelog</xsl:text>
         <xsl:call-template name="escape-name">  
           <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>  
         </xsl:call-template>  
         <xsl:text>_</xsl:text>  
         <xsl:call-template name="escape-name">  
           <xsl:with-param name="text">  
             <xsl:call-template name="strip-epoch">  
               <xsl:with-param name="version">  
                 <xsl:value-of select="version"/>  
               </xsl:with-param>  
             </xsl:call-template>  
           </xsl:with-param>  
         </xsl:call-template>  
         <xsl:text>/changelog</xsl:text>  
624        </xsl:attribute>        </xsl:attribute>
625        <xsl:text>Changelog</xsl:text>        <xsl:text>Changelog</xsl:text>
626      </xsl:element>      </xsl:element>
# Line 541  Line 629 
629        <xsl:attribute name="href">        <xsl:attribute name="href">
630          <xsl:text>http://packages.debian.org/changelogs/</xsl:text>          <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
631          <xsl:value-of select="directory"/>          <xsl:value-of select="directory"/>
632          <xsl:text>/</xsl:text>          <xsl:text>/current/copyright</xsl:text>
         <xsl:call-template name="escape-name">  
           <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>  
         </xsl:call-template>  
         <xsl:text>_</xsl:text>  
         <xsl:call-template name="escape-name">  
           <xsl:with-param name="text">  
             <xsl:call-template name="strip-epoch">  
               <xsl:with-param name="version">  
                 <xsl:value-of select="version"/>  
               </xsl:with-param>  
             </xsl:call-template>  
           </xsl:with-param>  
         </xsl:call-template>  
         <xsl:text>/copyright</xsl:text>  
633        </xsl:attribute>        </xsl:attribute>
634        <xsl:text>Copyright</xsl:text>        <xsl:text>Copyright</xsl:text>
635      </xsl:element>      </xsl:element>
# Line 564  Line 638 
638      <li>      <li>
639        <xsl:element name="a">        <xsl:element name="a">
640          <xsl:attribute name="href">          <xsl:attribute name="href">
641            <xsl:text>http://buildd.debian.org/build.php?pkg=</xsl:text>            <xsl:text>http://buildd.debian.org/pkg.cgi?pkg=</xsl:text>
642            <xsl:call-template name="escape-name">            <xsl:call-template name="escape-name">
643              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
644            </xsl:call-template>            </xsl:call-template>
645          </xsl:attribute>          </xsl:attribute>
646          <xsl:text>Buildd logs</xsl:text>          <xsl:text>Buildd logs</xsl:text>
647        </xsl:element>        </xsl:element>
648          <xsl:text> (</xsl:text>
649          <xsl:element name="a">
650            <xsl:attribute name="href">
651              <xsl:text>http://experimental.debian.net/build.php?pkg=</xsl:text>
652              <xsl:call-template name="escape-name">
653                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
654              </xsl:call-template>
655            </xsl:attribute>
656            <xsl:text>more</xsl:text>
657          </xsl:element>
658          <xsl:text>)</xsl:text>
659      </li>      </li>
660    </xsl:if>    </xsl:if>
661    <!-- DISABLED until ddtp.debian.org is back up    <!-- DISABLED until ddtp.debian.org is back up
# Line 600  Line 685 
685      </li>      </li>
686    </xsl:if>    </xsl:if>
687    -->    -->
688    <xsl:if test="$hasunstable and $other/debcheck/@unstable='yes'">    <xsl:if test="($hasunstable and $other/debcheck/@unstable='yes')
689          or ($hastesting and $other/debcheck/@testing='yes')
690          or ($hasstable and $other/debcheck/@stable='yes')">
691      <li>      <li>
692        <xsl:element name="a">        Debcheck on:
693          <xsl:attribute name="href">        <xsl:if test="$hasunstable">
694            <xsl:text>http://qa.debian.org/debcheck.php?dist=unstable&amp;package=</xsl:text>          <xsl:text> </xsl:text>
695            <xsl:call-template name="escape-name">          <xsl:element name="a">
696              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>            <xsl:attribute name="href">
697            </xsl:call-template>              <xsl:text>http://qa.debian.org/debcheck.php?dist=unstable&amp;package=</xsl:text>
698          </xsl:attribute>              <xsl:call-template name="escape-name">
699          <xsl:text>Debcheck on unstable</xsl:text>                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
700        </xsl:element>              </xsl:call-template>
701      </li>            </xsl:attribute>
702    </xsl:if>            <xsl:text>unstable</xsl:text>
703    <xsl:if test="$hastesting and $other/debcheck/@testing='yes'">          </xsl:element>
704      <li>        </xsl:if>
705        <xsl:element name="a">        <xsl:if test="$hastesting">
706          <xsl:attribute name="href">          <xsl:text> </xsl:text>
707            <xsl:text>http://qa.debian.org/debcheck.php?dist=testing&amp;package=</xsl:text>          <xsl:element name="a">
708            <xsl:call-template name="escape-name">            <xsl:attribute name="href">
709              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <xsl:text>http://qa.debian.org/debcheck.php?dist=testing&amp;package=</xsl:text>
710            </xsl:call-template>              <xsl:call-template name="escape-name">
711          </xsl:attribute>                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
712          <xsl:text>Debcheck on testing</xsl:text>              </xsl:call-template>
713        </xsl:element>            </xsl:attribute>
714      </li>            <xsl:text>testing</xsl:text>
715    </xsl:if>          </xsl:element>
716    <xsl:if test="$hasstable and $other/debcheck/@stable='yes'">        </xsl:if>
717      <li>        <xsl:if test="$hasstable">
718        <xsl:element name="a">          <xsl:element name="a">
719          <xsl:attribute name="href">            <xsl:attribute name="href">
720            <xsl:text>http://qa.debian.org/debcheck.php?dist=stable&amp;package=</xsl:text>              <xsl:text>http://qa.debian.org/debcheck.php?dist=stable&amp;package=</xsl:text>
721            <xsl:call-template name="escape-name">              <xsl:call-template name="escape-name">
722              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
723            </xsl:call-template>              </xsl:call-template>
724          </xsl:attribute>            </xsl:attribute>
725          <xsl:text>Debcheck on stable</xsl:text>            <xsl:text>stable</xsl:text>
726        </xsl:element>          </xsl:element>
727          </xsl:if>
728      </li>      </li>
729    </xsl:if>    </xsl:if>
730    <!-- convert maintainer/name to follow lintian.debian.org convention [FG] -->    <!-- convert maintainer/name to follow lintian.debian.org convention [FG] -->
731                                <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-/()&#34; ', &quot;'&quot;)"/>                                <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-~/()&#34; ', &quot;'&quot;)"/>
732    <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '____________________')"/>    <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '_____________________')"/>
733      <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>
734    <li>    <li>
735      <xsl:element name="a">      <xsl:element name="a">
# Line 654  Line 742 
742        <xsl:text>Popcon stats</xsl:text>        <xsl:text>Popcon stats</xsl:text>
743      </xsl:element>      </xsl:element>
744    </li>    </li>
745      <li>
746        <xsl:element name="a">
747          <xsl:attribute name="href">
748            <xsl:text>http://svnbuildstat.debian.net/packages/info/</xsl:text>
749            <xsl:call-template name="escape-name">
750              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
751            </xsl:call-template>
752          </xsl:attribute>
753          <xsl:text>Svnbuildstat</xsl:text>
754        </xsl:element>
755      </li>
756    </ul>    </ul>
757    </td>    </td>
758    </tr>    </tr>
# Line 728  Line 827 
827             (<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>
828        </xsl:if>        </xsl:if>
829        <xsl:if test="$other/bugs/@patch!='0'">        <xsl:if test="$other/bugs/@patch!='0'">
830          <li>The Bug Tracking System contains <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;include=patch&amp;exclude=pending"><xsl:value-of select="$other/bugs/@patch"/> patch(es)</a>, you should include it(them).</li>          <li>The Bug Tracking System contains
831            <xsl:element name="a">
832              <xsl:attribute name="href">
833                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>
834                <xsl:call-template name="escape-name">
835                  <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
836                </xsl:call-template>
837                <xsl:text>&amp;include=tags:patch&amp;exclude=tags:pending&amp;pend-exc=done</xsl:text>
838              </xsl:attribute>
839              <xsl:value-of select="$other/bugs/@patch"/> patch<xsl:if test="$other/bugs/@patch!='1'">es</xsl:if>
840            </xsl:element>, you should include
841            <xsl:if test="$other/bugs/@patch!='1'">them</xsl:if>
842            <xsl:if test="$other/bugs/@patch='1'">it</xsl:if>.
843            </li>
844        </xsl:if>        </xsl:if>
845      </xsl:if>      </xsl:if>
846    </xsl:variable>    </xsl:variable>
# Line 770  Line 882 
882        and your package only follows        and your package only follows
883        <xsl:value-of select="standards-version"/>...</li>        <xsl:value-of select="standards-version"/>...</li>
884      </xsl:if>      </xsl:if>
885        <xsl:if test="@release!='unstable' and @release!='experimental'">
886          <li>This package is neither part of unstable nor experimental. This
887          probably means that the package <a
888          href="http://ftp-master.debian.org/removals.txt">has been removed</a> (or
889          has been renamed). Thus the information here is of little interest ...
890          the package is going to disappear unless someone takes it over and
891          reintroduces it into unstable.</li>
892        </xsl:if>
893      <xsl:if test="$hasother">      <xsl:if test="$hasother">
894    
895        <!-- Override disparity handling. [JvW] -->        <!-- Override disparity handling. [JvW] -->
# Line 791  Line 911 
911        <li>        <li>
912          <xsl:choose>          <xsl:choose>
913            <xsl:when test="$other/wnpp/@type='O'">            <xsl:when test="$other/wnpp/@type='O'">
914              <xsl:choose>
915              <xsl:when test="@release!='unstable' and @release!='experimental'">
916              The WNPP database contains an O (Orphaned) entry for
917              this package. This is probably an error, as it is neither part of
918              unstable nor experimental.
919              </xsl:when>
920              <xsl:otherwise>
921            <span style="font-weight: bold">This package has been orphaned</span>.            <span style="font-weight: bold">This package has been orphaned</span>.
922            This means that it does not have a real maintainer at the            This means that it does not have a real maintainer at the
923            moment. Please consider adopting this package if you are interested in it.            moment. Please consider adopting this package if you are interested in it.
924              </xsl:otherwise>
925              </xsl:choose>
926            </xsl:when>            </xsl:when>
927            <xsl:when test="$other/wnpp/@type='ITA'">            <xsl:when test="$other/wnpp/@type='ITA'">
928              <xsl:choose>
929              <xsl:when test="@release!='unstable' and @release!='experimental'">
930              The WNPP database contains an ITA (Intent To Adopt) entry for
931              this package. This is probably an error, as it is neither part of
932              unstable nor experimental.
933              </xsl:when>
934              <xsl:otherwise>
935            This package has been orphaned, but someone intends to maintain it.            This package has been orphaned, but someone intends to maintain it.
936              </xsl:otherwise>
937              </xsl:choose>
938            </xsl:when>            </xsl:when>
939            <xsl:when test="$other/wnpp/@type='RFA'">            <xsl:when test="$other/wnpp/@type='RFA'">
940              <xsl:choose>
941              <xsl:when test="@release!='unstable' and @release!='experimental'">
942              The WNPP database contains an RFA (Request For Adoption) entry for
943              this package. This is probably an error, as it is neither part of
944              unstable nor experimental.
945              </xsl:when>
946              <xsl:otherwise>
947            The current maintainer is looking for someone who can take over            The current maintainer is looking for someone who can take over
948            maintenance of this package. If you are interested in this package,            maintenance of this package. If you are interested in this package,
949            please consider taking it over. Alternatively you may            please consider taking it over. Alternatively you may
950            want to be co-maintainer in order to help the actual maintainer.            want to be co-maintainer in order to help the actual maintainer.
951              </xsl:otherwise>
952              </xsl:choose>
953            </xsl:when>            </xsl:when>
954            <xsl:when test="$other/wnpp/@type='RFH'">            <xsl:when test="$other/wnpp/@type='RFH'">
955              <xsl:choose>
956              <xsl:when test="@release!='unstable' and @release!='experimental'">
957              The WNPP database contains an RFH (Request For Help) entry for
958              this package. This is probably an error, as it is neither part of
959              unstable nor experimental.
960              </xsl:when>
961              <xsl:otherwise>
962            The current maintainer is looking for someone who can help with the            The current maintainer is looking for someone who can help with the
963            maintenance of this package. If you are interested in this package,            maintenance of this package. If you are interested in this package,
964            please consider helping out. One way you can help is offer to be a            please consider helping out. One way you can help is offer to be a
965            co-maintainer or triage bugs in the bts.            co-maintainer or triage bugs in the bts.
966              </xsl:otherwise>
967              </xsl:choose>
968            </xsl:when>            </xsl:when>
969            <xsl:when test="$other/wnpp/@type='ITP'">            <xsl:when test="$other/wnpp/@type='ITP'">
970              <xsl:choose>
971              <xsl:when test="@release!='unstable' and @release!='experimental'">
972              The WNPP database contains an ITP (Intent To Package). This probably
973              means that somebody is going to reintroduce this package into unstable.
974              </xsl:when>
975              <xsl:otherwise>
976            The WNPP database contains an ITP (Intent To Package) entry for            The WNPP database contains an ITP (Intent To Package) entry for
977            this package. This is probably an error, as it has already been            this package. This is probably an error, as it has already been
978            packaged.            packaged.
979              </xsl:otherwise>
980              </xsl:choose>
981            </xsl:when>            </xsl:when>
982            <xsl:when test="$other/wnpp/@type='RFP'">            <xsl:when test="$other/wnpp/@type='RFP'">
983              <xsl:choose>
984              <xsl:when test="@release!='unstable' and @release!='experimental'">
985              The WNPP database contains an RFP (Request For Package). This probably
986              means that somebody would like to see this package reintroduced into
987              unstable by a volunteer.
988              </xsl:when>
989              <xsl:otherwise>
990            The WNPP database contains an RFP (Request For Package) entry            The WNPP database contains an RFP (Request For Package) entry
991            for this package.  This is probably an error, as it has already            for this package.  This is probably an error, as it has already
992            been packaged.            been packaged.
993              </xsl:otherwise>
994              </xsl:choose>
995            </xsl:when>            </xsl:when>
996            <xsl:when test="$other/wnpp/@type='RM'">            <xsl:when test="$other/wnpp/@type='RM'">
997            <span style="font-weight: bold">This package has been requested to be            <span style="font-weight: bold">This package has been requested to be
# Line 925  Line 1098 
1098    <!-- END RIGHT SIDE -->    <!-- END RIGHT SIDE -->
1099    </td></tr>    </td></tr>
1100    </table>    </table>
1101    
1102      <!-- END NON REMOVED PACKAGE -->
1103      </xsl:otherwise>
1104      </xsl:choose>
1105    
1106    <hr/>    <hr/>
1107    <p>    <p>
1108    Debian Package Tracking System - Copyright 2002-2005 Raphaël Hertzog<br/>    Debian Package Tracking System - Copyright 2002-2006 Raphaël Hertzog and
1109      others<br/>
1110    Report problems to the <a href="http://bugs.debian.org/qa.debian.org"    Report problems to the <a href="http://bugs.debian.org/qa.debian.org"
1111    >qa.debian.org pseudopackage</a><br/>    >qa.debian.org pseudopackage</a><br/>
1112    Last modified : <xsl:value-of select="$date"/>    Last modified : <xsl:value-of select="$date"/>

Legend:
Removed from v.1094  
changed lines
  Added in v.1740

  ViewVC Help
Powered by ViewVC 1.1.5