/[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 1938 by zack, Sat Aug 9 01:21:23 2008 UTC revision 2338 by myon, Sun Jan 24 15:24:55 2010 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="utf-8" ?>  <?xml version="1.0" encoding="utf-8" ?>
2    
3  <!--  <!--
4  # Copyright 2002-2008 Raphaël Hertzog and others  # Copyright © 2002-2008 Raphaël Hertzog and others
5  # Copyright 2007-2008 Stefano Zacchiroli  # Copyright © 2007-2009 Stefano Zacchiroli
6  # This file is distributed under the terms of the General Public License  # This file is distributed under the terms of the General Public License
7  # version 2 or (at your option) any later version.  # version 2 or (at your option) any later version.
8  -->  -->
9    
10  <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">  <xsl:stylesheet
11      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12      xmlns="http://www.w3.org/1999/xhtml"
13      version="1.0">
14    
15    <xsl:output
16      method="xml"
17      encoding="UTF-8"
18      omit-xml-declaration="yes"
19      doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
20      doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
21      indent="yes" />
22    
23  <xsl:output encoding="UTF-8" method="html"/>  <xsl:include href="pts-issues.xsl" />
24    
25  <xsl:param name="package"/>  <xsl:param name="package"/>
26  <xsl:param name="dir"/>  <xsl:param name="dir"/>
# Line 21  Line 32 
32  <xsl:param name="hasexperimental" select="''"/>  <xsl:param name="hasexperimental" select="''"/>
33  <xsl:param name="hasmentors" select="''"/>  <xsl:param name="hasmentors" select="''"/>
34  <xsl:param name="hasother" select="''"/>  <xsl:param name="hasother" select="''"/>
35  <xsl:param name="hass-p-u" select="''"/>  <xsl:param name="hasstable-proposed-updates" select="''"/>
36  <xsl:param name="hast-p-u" select="''"/>  <xsl:param name="hastesting-proposed-updates" select="''"/>
37  <xsl:param name="hasoldstable-security" select="''"/>  <xsl:param name="hassecurity-oldstable" select="''"/>
38  <xsl:param name="hasstable-security" select="''"/>  <xsl:param name="hassecurity-stable" select="''"/>
39  <xsl:param name="hastesting-security" select="''"/>  <xsl:param name="hassecurity-testing" select="''"/>
 <xsl:param name="hassecure-testing" select="''"/>  
40  <xsl:param name="hasvolatile" select="''"/>  <xsl:param name="hasvolatile" select="''"/>
41  <xsl:param name="hasnews" select="''"/>  <xsl:param name="hasnews" select="''"/>
42  <xsl:param name="hasexcuse" select="''"/>  <xsl:param name="hasexcuse" select="''"/>
# Line 35  Line 45 
45    select="document(concat('../base/', $dir, '/other.xml'))/other"/>    select="document(concat('../base/', $dir, '/other.xml'))/other"/>
46  <xsl:variable name="low-nmu-emails"  <xsl:variable name="low-nmu-emails"
47    select="document('../base/low_threshold_nmu.emails.xml')/emails"/>    select="document('../base/low_threshold_nmu.emails.xml')/emails"/>
48    <xsl:variable name="mostrecentsuite">
49      <!-- name of the most recent suite in which the package is available
50      -->
51      <xsl:choose>
52        <xsl:when test="$hasexperimental">
53          <xsl:text>experimental</xsl:text>
54        </xsl:when>
55        <xsl:when test="$hasunstable">
56          <xsl:text>unstable</xsl:text>
57        </xsl:when>
58        <xsl:when test="$hastesting">
59          <xsl:text>testing</xsl:text>
60        </xsl:when>
61        <xsl:when test="$hasstable">
62          <xsl:text>stable</xsl:text>
63        </xsl:when>
64        <xsl:otherwise>
65          <xsl:text />
66        </xsl:otherwise>
67      </xsl:choose>
68    </xsl:variable>
69    <xsl:variable name="pooldir">
70      <xsl:if test="$mostrecentsuite != ''">
71        <xsl:value-of
72           select="document(concat('../base/', $dir, '/',
73                   $mostrecentsuite, '.xml'))/source/directory" />
74      </xsl:if>
75    </xsl:variable>
76    
77  <!-- Those variables controls the todo and problem item concerning  <!-- Those variables controls the todo and problem item concerning
78       standards-version not being up to date -->       standards-version not being up to date -->
79  <xsl:variable name="lastsv" select="'3.8.0'"/>  <xsl:variable name="lastsv" select="'3.8.3'"/>
80  <xsl:variable name="lastmajorsv" select="'3.'"/>  <xsl:variable name="lastmajorsv" select="'3.'"/>
81    
82  <!-- lintian summary -->  <!-- lintian summary -->
# Line 58  Line 96 
96    <xsl:value-of select="$package" />    <xsl:value-of select="$package" />
97  </xsl:template>  </xsl:template>
98    
99  <xsl:template name="mirror">  <xsl:variable name="mirror">http://ftp.debian.org/debian</xsl:variable>
   <xsl:text>http://ftp.debian.org/debian</xsl:text>  
 </xsl:template>  
100    
101  <xsl:template name="outputitem">  <xsl:template name="outputitem">
102    <xsl:choose>    <xsl:choose>
# Line 75  Line 111 
111          <xsl:value-of select="@from"/>          <xsl:value-of select="@from"/>
112          <xsl:text>)</xsl:text></xsl:if></li>          <xsl:text>)</xsl:text></xsl:if></li>
113      </xsl:when>      </xsl:when>
114        <xsl:when test="@type='raw'">
115          <li>
116            <xsl:copy-of select="node()" />
117          </li>
118        </xsl:when>
119      <xsl:otherwise>      <xsl:otherwise>
120        <li><xsl:if test="@date">        <li><xsl:if test="@date">
121          <xsl:text>[</xsl:text>          <xsl:text>[</xsl:text>
# Line 120  other-to-%xx, especially % to %25... For Line 161  other-to-%xx, especially % to %25... For
161    
162  <xsl:template name="add-vcs-info">  <xsl:template name="add-vcs-info">
163    <xsl:if test="repository">    <xsl:if test="repository">
164      <tr>      <dt title="Version Control System">VCS</dt>
165        <td class="labelcell">      <dd>
166          <xsl:text>Version Control</xsl:text>        <xsl:if test="repository/vcs[@kind!='browser']">
167        </td>          <xsl:for-each select="repository/vcs[@kind!='browser']">
168        <td class="contentcell">            <xsl:sort select="@kind" />
169          <xsl:if test="repository/vcs[@kind='browser']">            <a title="raw {@kind} repository" href="{@url}">
170            <a href="{repository/vcs[@kind='browser']/@url}">              <xsl:value-of select="@kind" />
             <xsl:text>browser</xsl:text>  
171            </a>            </a>
172            <br />            <xsl:if test="position()!=last()"><xsl:text>, </xsl:text></xsl:if>
173          </xsl:if>          </xsl:for-each>
174          <xsl:if test="repository/vcs[@kind!='browser']">        </xsl:if>
175            <xsl:text>raw: </xsl:text>        <xsl:if test="repository/vcs[@kind='browser']">
176            <xsl:for-each select="repository/vcs[@kind!='browser']">          <xsl:text> (</xsl:text>
177              <xsl:sort select="@kind" />          <a title="browse the repository"
178              <a href="{@url}">             href="{repository/vcs[@kind='browser']/@url}">browse</a>
179                <xsl:value-of select="@kind" />            <xsl:text>)</xsl:text>
180              </a>        </xsl:if>
181              <xsl:if test="position()!=last()">      </dd>
               <xsl:text>, </xsl:text>  
             </xsl:if>  
           </xsl:for-each>  
         </xsl:if>  
       </td>  
     </tr>  
182    </xsl:if>    </xsl:if>
183  </xsl:template>  </xsl:template>
184    
# Line 162  other-to-%xx, especially % to %25... For Line 196  other-to-%xx, especially % to %25... For
196    </xsl:variable>    </xsl:variable>
197    
198    <xsl:if test="string($dm)!='' or string($lownmu)!=''">    <xsl:if test="string($dm)!='' or string($lownmu)!=''">
199      <tr>      <div class="maint-markers">
200        <td class="labelcell">      <xsl:if test="string($dm)!=''">
201          <xsl:text>Maintenance info</xsl:text>        <span class="dm-tag">
202        </td>          <a href="http://www.debian.org/vote/2007/vote_003">
203        <td class="contentcell">            <acronym title="Debian Maintainer Upload Allowed: this package can be uploaded by Debian Maintainers">DMUA</acronym>
204            </a>
205          <xsl:if test="string($dm)!=''">        </span>
206            <span class="dm-tag">      </xsl:if>
207              <a href="http://www.debian.org/vote/2007/vote_003"><acronym title="Debian Maintainer Upload Allowed: can be uploaded by Debian Maintainers">DMUA</acronym></a>      <xsl:if test="string($lownmu)!=''">
208            </span>        <xsl:if test="string($dm)!=''">
209            <xsl:text> </xsl:text>          <xsl:text>, </xsl:text>
210          </xsl:if>        </xsl:if>
211          <span class="lownmu-tag">
212          <xsl:if test="string($lownmu)!=''">          <a href="http://wiki.debian.org/LowThresholdNmu">
213            <span class="lownmu-tag">            <acronym title="maintainer agrees with Low Threshold NMU">LowNMU</acronym>
214              <a href="http://wiki.debian.org/LowThresholdNmu"><acronym          </a>
215                  title="maintainer agrees with Low Threshold NMU, see wiki page for details">LowNMU</acronym></a>        </span>
216            </span>      </xsl:if>
217            <xsl:text> </xsl:text>      </div>
         </xsl:if>  
       </td>  
     </tr>  
218    </xsl:if>    </xsl:if>
219  </xsl:template>  </xsl:template>
220    
# Line 191  other-to-%xx, especially % to %25... For Line 222  other-to-%xx, especially % to %25... For
222    <xsl:param name="news" />    <xsl:param name="news" />
223    
224    <xsl:if test="count($news)>0 and string($news)!=''">    <xsl:if test="count($news)>0 and string($news)!=''">
225      <tr class="titlerow">      <div class="block news">
226      <td class="titlecell">        <a name="news" />
227        Latest news <a class="feedlink" href="{$package}/news.rss20.xml">RSS</a>        <h2>news <a class="feedlink" href="{$package}/news.rss20.xml">RSS</a></h2>
228      </td></tr>        <ul id="news-list">
229      <tr class="normalrow">          <xsl:copy-of select="$news" />
230      <td class="contentcell2">        </ul>
231      <ul id="news-list"><xsl:copy-of select="$news"/></ul>      </div>
     </td>  
     </tr>  
232    </xsl:if>    </xsl:if>
233  </xsl:template>  </xsl:template>
234    
# Line 207  other-to-%xx, especially % to %25... For Line 236  other-to-%xx, especially % to %25... For
236    <xsl:param name="static" />    <xsl:param name="static" />
237    
238    <xsl:if test="count($static)>0 and string($static)!=''">    <xsl:if test="count($static)>0 and string($static)!=''">
239      <tr class="titlerow">      <div class="block static">
240      <td class="titlecell">        <a name="static" />
241      Static Information        <h2>static info</h2>
242      </td></tr>        <ul>
243      <tr class="normalrow">          <xsl:copy-of select="$static" />
244      <td class="contentcell2">        </ul>
245      <ul><xsl:copy-of select="$static"/></ul>      </div>
     </td>  
     </tr>  
246    </xsl:if>    </xsl:if>
247  </xsl:template>  </xsl:template>
248    
 <xsl:template name="categorize-srcfile">  
   <!-- used to recognize (and tag afterwards) well-known type of source package  
     components: dsc, diff, orig -->  
   <xsl:choose>  
     <xsl:when test="substring(filename,string-length(filename)-2, 3)='dsc'">  
       <xsl:text>dsc</xsl:text>  
     </xsl:when>  
     <xsl:when test="substring(filename,string-length(filename)-6, 7)='diff.gz'">  
       <xsl:text>diff</xsl:text>  
     </xsl:when>  
     <xsl:when test="substring(filename,string-length(filename)-5, 3)='tar'">  
       <xsl:text>orig</xsl:text>  
     </xsl:when>  
     <xsl:otherwise><xsl:text></xsl:text></xsl:otherwise>  
   </xsl:choose>  
 </xsl:template>  
   
249  <xsl:template name="maintainer-email">  <xsl:template name="maintainer-email">
250    <xsl:param name="email" />    <xsl:param name="email" />
251    <a class="email" href="mailto:{$email}">    <a class="email" href="mailto:{$email}">
# Line 244  other-to-%xx, especially % to %25... For Line 254  other-to-%xx, especially % to %25... For
254  </xsl:template>  </xsl:template>
255    
256  <xsl:template name="general-information">  <xsl:template name="general-information">
257    <tr class="titlerow">    <div class="block info">
258      <td class="titlecell" colspan="2">      <a name="general" />
259        General information      <h2>general</h2>
260      </td>      <dl>
261    </tr>        <dt>source</dt>
262    <tr class="normalrow">        <dd>
263      <td class="labelcell">Latest version</td>          <a href="http://packages.debian.org/src:{$package}">
264      <td class="contentcell"><xsl:value-of select="version"/></td>            <xsl:value-of select="$package" />
265    </tr>          </a>
266    <xsl:if test="@release!='unstable'">          (<span id="priority" title="priority">
267      <tr class="normalrow">            <small><xsl:value-of select="priority"/></small>
268        <td class="labelcell">Distribution</td>          </span>,
269        <td class="contentcell"><xsl:value-of select="@release"/></td>          <span id="section" title="section">
270      </tr>            <small><xsl:value-of select="section"/></small>
271    </xsl:if>          </span>)
272    <tr class="normalrow">        </dd>
273      <td class="labelcell">Maintainer</td>  
274      <td class="contentcell">        <dt>version</dt>
275        <xsl:element name="a">        <dd>
276          <xsl:attribute name="href">          <span id="latest_version"><xsl:value-of select="version"/></span>
277            <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>        </dd>
278            <xsl:call-template name="escape-name">  
279              <xsl:with-param name="text"><xsl:value-of select="maintainer/email"/></xsl:with-param>        <xsl:if test="@release!='unstable'">
280            </xsl:call-template>          <dt>distro</dt>
281          </xsl:attribute>          <dd><xsl:value-of select="@release"/></dd>
282          <xsl:value-of select="maintainer/name"/>        </xsl:if>
       </xsl:element>  
       <xsl:text> </xsl:text>  
       <xsl:call-template name="maintainer-email">  
         <xsl:with-param name="email" select="maintainer/email" />  
       </xsl:call-template>  
     </td>  
   </tr>  
   <xsl:if test="uploaders">  
     <tr class="normalrow">  
       <td class="labelcell"><a href="http://www.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s-collaborative-maint">Uploaders</a></td>  
       <td class="contentcell">  
         <xsl:for-each select="uploaders/item">  
           <xsl:element name="a">  
             <xsl:attribute name="href">  
               <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>  
               <xsl:call-template name="escape-name">  
                 <xsl:with-param name="text"><xsl:value-of select="email"/></xsl:with-param>  
               </xsl:call-template>  
             </xsl:attribute>  
             <xsl:value-of select="name"/>  
           </xsl:element>  
           <xsl:text> </xsl:text>  
           <xsl:call-template name="maintainer-email">  
             <xsl:with-param name="email" select="email" />  
           </xsl:call-template>  
           <br />  
         </xsl:for-each>  
         <xsl:call-template name='add-maintenance-info'>  
           <xsl:with-param name="email" select="maintainer/email" />  
         </xsl:call-template>  
     </td></tr>  
   </xsl:if>  
   <tr class="normalrow">  
     <td class="labelcell">Standards version</td>  
     <td class="contentcell"><xsl:value-of select="standards-version"/></td>  
   </tr>  
   <tr class="normalrow">  
     <td class="labelcell">Priority</td>  
     <td class="contentcell"> <xsl:value-of select="priority"/> </td>  
   </tr>  
   <tr class="normalrow">  
     <td class="labelcell">Section</td>  
     <td class="contentcell"> <xsl:value-of select="section"/> </td>  
   </tr>  
   <xsl:call-template name='add-vcs-info' />  
   <xsl:if test="architecture!='any' and architecture!='all'">  
     <tr class="normalrow">  
       <td class="labelcell">Architecture</td>  
       <td class="contentcell"><xsl:value-of select="architecture"/></td>  
     </tr>  
   </xsl:if>  
 </xsl:template>  
283    
284  <xsl:template name="bugs-count">        <dt title="Maintainer and Uploaders">maint</dt>
285    <tr class="titlerow">        <dd class="maintainer">
286      <td class="titlecell" colspan="2">          <xsl:element name="a">
       Bugs count  
     </td>  
   </tr>  
   <tr class="normalrow" id="bugs_all">  
     <td class="labelcell">All bugs  
        (<xsl:element name="a">  
         <xsl:attribute name="href">  
           <xsl:text>http://people.debian.org/~glandium/bts/</xsl:text>  
           <xsl:value-of select="substring($package, 1, 1)"/>  
           <xsl:text>/</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>.png</xsl:text>  
         </xsl:attribute>  
         <xsl:text>graph</xsl:text>  
       </xsl:element>  
       <xsl:text>)</xsl:text>  
     </td>  
     <td class="contentcell">  
       <xsl:element name="a">  
         <xsl:attribute name="href">  
           <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=no&amp;src=</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:attribute>  
         <xsl:if test="$hasother">  
           <xsl:value-of select="$other/bugs/@all"/>  
         </xsl:if>  
       </xsl:element>  
       <xsl:if test="$hasother and $other/bugs/@all_m">  
         (<xsl:element name="a">  
287            <xsl:attribute name="href">            <xsl:attribute name="href">
288              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=yes&amp;src=</xsl:text>              <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>
289              <xsl:call-template name="escape-name">              <xsl:call-template name="escape-name">
290                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>                <xsl:with-param name="text"><xsl:value-of select="maintainer/email"/></xsl:with-param>
291              </xsl:call-template>              </xsl:call-template>
292            </xsl:attribute>            </xsl:attribute>
293            <xsl:value-of select="$other/bugs/@all_m"/>            <span class="name" title="maintainer">
294          </xsl:element>)              <xsl:value-of select="maintainer/name"/>
295              </span>
296            </xsl:element>
297            <xsl:if test="uploaders">
298              <xsl:for-each select="uploaders/item">
299                <xsl:text>, </xsl:text>
300                <span class="uploader">
301                  <small>
302                  <xsl:element name="a">
303                    <xsl:attribute name="href">
304                      <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>
305                      <xsl:call-template name="escape-name">
306                        <xsl:with-param name="text">
307                          <xsl:value-of select="email"/>
308                        </xsl:with-param>
309                      </xsl:call-template>
310                    </xsl:attribute>
311                    <span class="name" title="uploader">
312                      <xsl:value-of select="name"/>
313                    </span>
314                  </xsl:element>
315                  <xsl:text> (u)</xsl:text>
316                  </small>
317                </span>
318              </xsl:for-each>
319            </xsl:if>
320            <xsl:call-template name='add-maintenance-info'>
321              <xsl:with-param name="email" select="maintainer/email" />
322            </xsl:call-template>
323          </dd>
324    
325          <xsl:if test="architecture!='any' and architecture!='all'">
326            <dt>arch</dt>
327            <dd><xsl:value-of select="architecture"/></dd>
328        </xsl:if>        </xsl:if>
329      </td>  
330    </tr>        <dt title="Standards-Version">std-ver</dt>
331    <tr class="normalrow" id="bugs_rc">        <dd>
332      <td class="labelcell"><span class="indented"><acronym title="Release Critical">RC</acronym> bugs</span></td>          <span id="standards_version">
333      <td class="contentcell">            <xsl:value-of select="standards-version"/>
334        <xsl:element name="a">          </span>
335          <xsl:attribute name="href">        </dd>
336            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>  
337            <xsl:call-template name="escape-name">        <xsl:call-template name='add-vcs-info' />
338              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>      </dl>
339            </xsl:call-template>    </div>
340            <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&amp;repeatmerged=no</xsl:text>  </xsl:template>
341          </xsl:attribute>  
342          <xsl:if test="$hasother">  <xsl:template name="bugs-count">
343            <xsl:value-of select="$other/bugs/@rc"/>    <div class="block bugs">
344        <a name="bugs" />
345        <h2>bugs</h2>
346        <dl>
347          <dt id="bugs_all">
348            all
349            <xsl:element name="a">
350              <xsl:attribute name="href">
351                <xsl:text>http://people.debian.org/~glandium/bts/</xsl:text>
352                <xsl:value-of select="substring($package, 1, 1)"/>
353                <xsl:text>/</xsl:text>
354                <xsl:value-of select="$escaped-package" />
355                <xsl:text>.png</xsl:text>
356              </xsl:attribute>
357              <xsl:attribute name="title">bug history graph</xsl:attribute>
358              <img alt="bug history graph" src="../common/bug-graph.png" />
359            </xsl:element>
360          </dt>
361          <dd>
362            <xsl:element name="a">
363              <xsl:attribute name="href">
364                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=no&amp;src=</xsl:text>
365                <xsl:value-of select="$escaped-package" />
366              </xsl:attribute>
367              <xsl:if test="$hasother">
368                <span class="bugcount" title="all">
369                  <xsl:value-of select="$other/bugs/@all"/>
370                </span>
371              </xsl:if>
372            </xsl:element>
373            <xsl:if test="$hasother and $other/bugs/@all_m">
374              (<xsl:element name="a">
375                <xsl:attribute name="href">
376                  <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=yes&amp;src=</xsl:text>
377                  <xsl:value-of select="$escaped-package" />
378                </xsl:attribute>
379                <xsl:value-of select="$other/bugs/@all_m"/>
380              </xsl:element>)
381          </xsl:if>          </xsl:if>
382        </xsl:element>        </dd>
383        <xsl:if test="$hasother and $other/bugs/@rc_m">        <dt id="bugs_rc" title="Release Critical">
384          (<xsl:element name="a">          <span class="indented">RC</span>
385          </dt>
386          <dd>
387            <xsl:element name="a">
388            <xsl:attribute name="href">            <xsl:attribute name="href">
389              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
390              <xsl:call-template name="escape-name">              <xsl:value-of select="$escaped-package" />
391                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <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&amp;repeatmerged=no</xsl:text>
             </xsl:call-template>  
             <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&amp;repeatmerged=yes</xsl:text>  
392            </xsl:attribute>            </xsl:attribute>
393            <xsl:value-of select="$other/bugs/@rc_m"/>            <xsl:if test="$hasother">
394          </xsl:element>)              <span class="bugcount" title="rc">
395        </xsl:if>                <xsl:value-of select="$other/bugs/@rc"/>
396      </td>              </span>
397    </tr>            </xsl:if>
398    <tr class="normalrow" id="bugs_in">          </xsl:element>
399      <td class="labelcell"><span class="indented"><acronym title="Important and Normal">I&amp;N</acronym> bugs</span></td>          <xsl:if test="$hasother and $other/bugs/@rc_m">
400      <td class="contentcell">            (<xsl:element name="a">
401        <xsl:element name="a">              <xsl:attribute name="href">
402          <xsl:attribute name="href">                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
403            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>                <xsl:value-of select="$escaped-package" />
404            <xsl:call-template name="escape-name">                <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&amp;repeatmerged=yes</xsl:text>
405              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              </xsl:attribute>
406            </xsl:call-template>              <xsl:value-of select="$other/bugs/@rc_m"/>
407            <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&amp;repeatmerged=no</xsl:text>            </xsl:element>)
         </xsl:attribute>  
         <xsl:if test="$hasother">  
           <xsl:value-of select="$other/bugs/@normal"/>  
408          </xsl:if>          </xsl:if>
409        </xsl:element>        </dd>
410        <xsl:if test="$hasother and $other/bugs/@normal_m">        <dt id="bugs_in" title="Important and Normal">
411          (<xsl:element name="a">          <span class="indented">I&amp;N</span>
412          </dt>
413          <dd>
414            <xsl:element name="a">
415            <xsl:attribute name="href">            <xsl:attribute name="href">
416              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
417              <xsl:call-template name="escape-name">              <xsl:value-of select="$escaped-package" />
418                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <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&amp;repeatmerged=no</xsl:text>
             </xsl:call-template>  
             <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&amp;repeatmerged=yes</xsl:text>  
419            </xsl:attribute>            </xsl:attribute>
420            <xsl:value-of select="$other/bugs/@normal_m"/>            <xsl:if test="$hasother">
421          </xsl:element>)              <span class="bugcount" title="in">
422        </xsl:if>                <xsl:value-of select="$other/bugs/@normal"/>
423      </td>              </span>
424    </tr>            </xsl:if>
425    <tr class="normalrow" id="bugs_mw">          </xsl:element>
426      <td class="labelcell"><span class="indented"><acronym title="Minor and Wishlist">M&amp;W</acronym> bugs</span></td>          <xsl:if test="$hasother and $other/bugs/@normal_m">
427      <td class="contentcell">            (<xsl:element name="a">
428        <xsl:element name="a">              <xsl:attribute name="href">
429          <xsl:attribute name="href">                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
430            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>                <xsl:value-of select="$escaped-package" />
431            <xsl:call-template name="escape-name">                <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&amp;repeatmerged=yes</xsl:text>
432              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              </xsl:attribute>
433            </xsl:call-template>              <xsl:value-of select="$other/bugs/@normal_m"/>
434            <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&amp;repeatmerged=no</xsl:text>            </xsl:element>)
         </xsl:attribute>  
         <xsl:if test="$hasother">  
           <xsl:value-of select="$other/bugs/@wishlist"/>  
435          </xsl:if>          </xsl:if>
436        </xsl:element>        </dd>
437        <xsl:if test="$hasother and $other/bugs/@wishlist_m">        <dt id="bugs_mw" title="Minor and Wishlist">
438          (<xsl:element name="a">          <span class="indented">M&amp;W</span>
439          </dt>
440          <dd>
441            <xsl:element name="a">
442            <xsl:attribute name="href">            <xsl:attribute name="href">
443              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
444              <xsl:call-template name="escape-name">              <xsl:value-of select="$escaped-package" />
445                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <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&amp;repeatmerged=no</xsl:text>
             </xsl:call-template>  
             <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&amp;repeatmerged=yes</xsl:text>  
446            </xsl:attribute>            </xsl:attribute>
447            <xsl:value-of select="$other/bugs/@wishlist_m"/>            <xsl:if test="$hasother">
448          </xsl:element>)              <span class="bugcount" title="mw">
449        </xsl:if>                <xsl:value-of select="$other/bugs/@wishlist"/>
450      </td>              </span>
451    </tr>            </xsl:if>
452    <tr class="normalrow" id="bugs_fp">          </xsl:element>
453      <td class="labelcell"><span class="indented"><acronym title="Fixed and Pending">F&amp;P</acronym> bugs</span></td>          <xsl:if test="$hasother and $other/bugs/@wishlist_m">
454      <td class="contentcell">            (<xsl:element name="a">
455        <xsl:element name="a">              <xsl:attribute name="href">
456          <xsl:attribute name="href">                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
457            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>                <xsl:value-of select="$escaped-package" />
458            <xsl:call-template name="escape-name">                <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&amp;repeatmerged=yes</xsl:text>
459              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              </xsl:attribute>
460            </xsl:call-template>              <xsl:value-of select="$other/bugs/@wishlist_m"/>
461            <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed&amp;repeatmerged=no</xsl:text>            </xsl:element>)
         </xsl:attribute>  
         <xsl:if test="$hasother">  
           <xsl:value-of select="$other/bugs/@fixed"/>  
462          </xsl:if>          </xsl:if>
463        </xsl:element>        </dd>
464        <xsl:if test="$hasother and $other/bugs/@fixed_m">        <dt id="bugs_fp" title="Fixed and Pending">
465          (<xsl:element name="a">          <span class="indented">F&amp;P</span>
466          </dt>
467          <dd>
468            <xsl:element name="a">
469            <xsl:attribute name="href">            <xsl:attribute name="href">
470              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>              <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
471              <xsl:call-template name="escape-name">              <xsl:value-of select="$escaped-package" />
472                <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed&amp;repeatmerged=no</xsl:text>
             </xsl:call-template>  
             <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed&amp;repeatmerged=yes</xsl:text>  
473            </xsl:attribute>            </xsl:attribute>
474            <xsl:value-of select="$other/bugs/@fixed_m"/>            <xsl:if test="$hasother">
475          </xsl:element>)              <span class="bugcount" title="fp">
476                  <xsl:value-of select="$other/bugs/@fixed"/>
477                </span>
478              </xsl:if>
479            </xsl:element>
480            <xsl:if test="$hasother and $other/bugs/@fixed_m">
481              (<xsl:element name="a">
482                <xsl:attribute name="href">
483                  <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
484                  <xsl:value-of select="$escaped-package" />
485                  <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed&amp;repeatmerged=yes</xsl:text>
486                </xsl:attribute>
487                <xsl:value-of select="$other/bugs/@fixed_m"/>
488              </xsl:element>)
489            </xsl:if>
490          </dd>
491          <xsl:if test="$other/bugs/@gift &gt; 0">
492            <dt id="bugs_gift">
493              <span class="indented">
494                <a href="http://wiki.debian.org/qa.debian.org/GiftTag">gift</a>
495              </span>
496            </dt>
497            <dd>
498              <xsl:element name="a">
499                <xsl:attribute name="href">
500                  <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
501                  <xsl:value-of select="$escaped-package" />
502                <xsl:text>&amp;users=debian-qa@lists.debian.org;tag=gift</xsl:text>
503                </xsl:attribute>
504                <span class="bugcount" title="gift">
505                  <xsl:value-of select="$other/bugs/@gift" />
506                </span>
507              </xsl:element>
508            </dd>
509        </xsl:if>        </xsl:if>
510        </dl>
511      </td>    </div>
   </tr>  
512  </xsl:template>  </xsl:template>
513    
514  <xsl:template name="pts-subscription">  <xsl:template name="pts-subscription">
515    <tr class="titlerow">    <!-- <acronym title="Package Tracking System">PTS</acronym> subscription -->
516      <td class="titlecell" colspan="2">    <!-- <tr class="normalrow"> -->
517        <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    <!--   <td class="labelcell">Subscribers count</td> -->
518    </td></tr>    <!--   <td class="contentcell"><xsl:if test="$hasother"> -->
519    <tr class="normalrow">    <!--  <xsl:value-of select="$other/pts/@count"/> -->
520      <td class="labelcell">Subscribers count</td>    <!--   </xsl:if></td> -->
521      <td class="contentcell"><xsl:if test="$hasother">    <!-- </tr> -->
522          <xsl:value-of select="$other/pts/@count"/>    <form method="post" action="/cgi-bin/pts.cgi">
523      </xsl:if></td>      <p>
524    </tr>        <input type="hidden" name="package" value="{$package}"/>
525    <tr class="normalrow">        subscribe to this package<br />
526      <td class="contentcell" colspan="2">        <input type="text" name="email" size="10" value="email"
527        <form method="post" action="/cgi-bin/pts.cgi">               onfocus="if(email.value=='your email'){{email.value=''}}"/>
528          <p>        <select name="what">
529            <input type="hidden" name="package" value="{$package}"/>          <option value="subscribe">sub</option>
530            <select name="what">          <option value="unsubscribe">unsub</option>
531              <option value="subscribe">Subscribe</option>          <option value="advanced">opts</option>
532              <option value="unsubscribe">Unsubscribe</option>        </select>
533              <option value="advanced">Advanced mode</option>        <input type="submit" name="submit" value="go"/>
534            </select>      </p>
535            <input type="text" name="email" size="15" value="your email" onFocus="if(email.value=='your email'){{email.value=''}}"/>    </form>
           <input type="submit" name="submit" value="Send"/>  
         </p>  
       </form>  
     </td>  
   </tr>  
536  </xsl:template>  </xsl:template>
537    
538  <xsl:template name="binary-packages">  <xsl:template name="binary-packages">
539    <tr class="titlerow">    <div class="block binaries">
540      <td class="titlecell" colspan="2">      <a name="binaries" />
541        Binary packages      <h2>binaries</h2>
542    </td></tr>      <ul>
543    <tr class="normalrow">        <xsl:for-each select="binary/item">
544      <td class="normalcell" colspan="2" style="text-align: left">          <xsl:sort select="text()"/>
545        <ul>          <xsl:variable name="pkg" select="text()"/>
546          <xsl:for-each select="binary/item">          <xsl:variable name="tooltip"
547            <xsl:sort select="text()"/>                        select="concat($pkg, ': ',
548            <xsl:variable name="pkg" select="text()"/>                                $other/descriptions/shortdesc[@package=$pkg])" />
549            <li class="binpkg">          <li class="binpkg">
550              <a class="binpkg" href="http://packages.debian.org/{text()}"><xsl:value-of select="text()"/></a>            <a class="binpkg" title="{$tooltip}"
551              <span style="font-size: 70%">               href="http://packages.debian.org/{text()}">
552                (<a href="http://bugs.debian.org/{text()}"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@all"/> bugs</a>:              <span class="binpkg"><xsl:value-of select="text()"/></span>
553              </a>
554                <xsl:element name="a">            <span style="font-size: 70%">
555                  <xsl:attribute name="title">critical, grave and serious</xsl:attribute>              (<a href="http://bugs.debian.org/{text()}"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@all"/> bugs</a>:
556                  <xsl:attribute name="href">              <xsl:element name="a">
557                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>                <xsl:attribute name="title">critical, grave and serious</xsl:attribute>
558                    <xsl:call-template name="escape-name">                <xsl:attribute name="href">
559                      <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>                  <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
560                    </xsl:call-template>                  <xsl:call-template name="escape-name">
561                    <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>                    <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
562                  </xsl:attribute>                  </xsl:call-template>
563                  <xsl:value-of select="$other/bugs/item[@name=$pkg]/@rc"/>                  <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>
564                </xsl:element>,                </xsl:attribute>
565                  <xsl:value-of select="$other/bugs/item[@name=$pkg]/@rc"/>
566                <xsl:element name="a">              </xsl:element>,
567                  <xsl:attribute name="title">important and normal</xsl:attribute>              <xsl:element name="a">
568                  <xsl:attribute name="href">                <xsl:attribute name="title">important and normal</xsl:attribute>
569                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>                <xsl:attribute name="href">
570                    <xsl:call-template name="escape-name">                  <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
571                      <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>                  <xsl:call-template name="escape-name">
572                    </xsl:call-template>                    <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
573                    <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>                  </xsl:call-template>
574                  </xsl:attribute>                  <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>
575                  <xsl:value-of select="$other/bugs/item[@name=$pkg]/@normal"/>                </xsl:attribute>
576                </xsl:element>,                <xsl:value-of select="$other/bugs/item[@name=$pkg]/@normal"/>
577                </xsl:element>,
578                <xsl:element name="a">
579                  <xsl:attribute name="title">wishlist and minor</xsl:attribute>
580                  <xsl:attribute name="href">
581                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
582                    <xsl:call-template name="escape-name">
583                      <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
584                    </xsl:call-template>
585                    <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>
586                  </xsl:attribute>
587                  <xsl:value-of select="$other/bugs/item[@name=$pkg]/@wishlist"/>
588                </xsl:element>,
589                <xsl:element name="a">
590                  <xsl:attribute name="title">pending and fixed</xsl:attribute>
591                  <xsl:attribute name="href">
592                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>
593                    <xsl:call-template name="escape-name">
594                      <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>
595                    </xsl:call-template>
596                    <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed</xsl:text>
597                  </xsl:attribute>
598                  <xsl:value-of select="$other/bugs/item[@name=$pkg]/@fixed"/>
599                </xsl:element>)
600              </span>
601            </li>
602          </xsl:for-each>
603        </ul>
604      </div>
605    </xsl:template>
606    
607                <xsl:element name="a">  <xsl:template name="output-version">
608                  <xsl:attribute name="title">wishlist and minor</xsl:attribute>    <xsl:param name="suite" select="''" />
609                  <xsl:attribute name="href">    <xsl:param name="link" select="'yes'" />
610                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>    <xsl:variable name="version">
611                    <xsl:call-template name="escape-name">      <span class="srcversion" title="{$suite}">
612                      <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>        <xsl:value-of select="document(concat('../base/', $dir, '/', $suite,
613                    </xsl:call-template>                              '.xml'))/source/version"/>
614                    <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>      </span>
615                  </xsl:attribute>    </xsl:variable>
616                  <xsl:value-of select="$other/bugs/item[@name=$pkg]/@wishlist"/>    <xsl:choose>
617                </xsl:element>,      <xsl:when test="$link='yes'">
618          <xsl:element name="a">
619            <xsl:attribute name="class">dsc</xsl:attribute>
620            <xsl:attribute name="href">
621              <xsl:value-of select="$mirror"/>
622              <xsl:text>/</xsl:text>
623              <xsl:value-of select="$pooldir"/>
624              <xsl:text>/</xsl:text>
625              <xsl:value-of select="document(concat('../base/', $dir, '/',
626                                    $suite, '.xml'))/source/files/item[1]/filename"/>
627            </xsl:attribute>
628            <xsl:attribute name="title">.dsc, use dget on this link to retrieve source package</xsl:attribute>
629            <img src="../common/save.png" alt="save" />
630          </xsl:element>
631          <a href="http://packages.debian.org/source/{$suite}/{$package}">
632            <xsl:copy-of select="$version" />
633          </a>
634        </xsl:when>
635        <xsl:otherwise>
636          <xsl:copy-of select="$version" />
637        </xsl:otherwise>
638      </xsl:choose>
639    </xsl:template>
640    
641                <xsl:element name="a">  <xsl:template name="more-info-marker">
642                  <xsl:attribute name="title">pending and fixed</xsl:attribute>    <xsl:param name="href" />
643                  <xsl:attribute name="href">    <xsl:param name="title">more information are available on an external web page</xsl:param>
644                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&amp;data=</xsl:text>    <a href="{$href}">
645                    <xsl:call-template name="escape-name">      <img src="../common/external.png" title="{$title}" alt="..." />
646                      <xsl:with-param name="text"><xsl:value-of select="text()"/></xsl:with-param>    </a>
                   </xsl:call-template>  
                   <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed</xsl:text>  
                 </xsl:attribute>  
                 <xsl:value-of select="$other/bugs/item[@name=$pkg]/@fixed"/>  
               </xsl:element>)  
             </span>  
           </li>  
         </xsl:for-each>  
   </ul></td></tr>  
647  </xsl:template>  </xsl:template>
648    
649  <xsl:template name="available-versions">  <xsl:template name="available-versions">
650    <tr class="titlerow">    <div class="block versions">
651      <td class="titlecell" colspan="2">      <a name="versions" />
652        Available versions      <h2>versions
653    </td></tr>        <xsl:call-template name="more-info-marker">
654            <xsl:with-param name="href">
655    <!-- oldstable -->            <xsl:text>http://qa.debian.org/madison.php?package=</xsl:text>
656    <xsl:if test="$hasoldstable">            <xsl:value-of select="$package" />
657      <tr class="normalrow">          </xsl:with-param>
658        <td class="labelcell"><a href="http://www.debian.org/releases/sarge/">Oldstable</a></td>          <xsl:with-param name="title">more versions can be listed by madison</xsl:with-param>
659        <td class="contentcell">        </xsl:call-template>
660          <a href="http://packages.debian.org/source/oldstable/{$package}"><xsl:value-of        <a class="dsc" href="{$mirror}/{$pooldir}">
661              select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/></a>          <img src="../common/folder.png" alt="pool" title="pool directory" />
662        </td>        </a>
663      </tr>      </h2>
664    </xsl:if>  
665    <xsl:if test="$hasoldstable-security">      <dl>
666      <tr class="normalrow">        <xsl:if test="$hasoldstable">
667        <td class="labelcell"><small>Oldstable Security Updates</small></td>          <dt title="old stable release">old</dt>
668        <td class="contentcell">          <dd>
669          <xsl:value-of select="document(concat('../base/', $dir, '/oldstable-security.xml'))/source/version"/>            <xsl:call-template name="output-version">
670        </td>              <xsl:with-param name="suite">oldstable</xsl:with-param>
671      </tr>            </xsl:call-template>
672    </xsl:if>          </dd>
673          </xsl:if>
674    <!-- stable -->        <xsl:if test="$hassecurity-oldstable">
675    <xsl:if test="$hasstable">          <dt title="security updates for the old stable release">old-sec</dt>
676      <tr class="normalrow">          <dd>
677        <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>            <xsl:call-template name="output-version">
678        <td class="contentcell">              <xsl:with-param name="suite">security-oldstable</xsl:with-param>
679          <a href="http://packages.debian.org/source/stable/{$package}"><xsl:value-of              <xsl:with-param name="link">no</xsl:with-param>
680              select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/></a>            </xsl:call-template>
681        </td>          </dd>
682      </tr>        </xsl:if>
683    </xsl:if>        <xsl:if test="$hasstable">
684    <xsl:if test="$hasstable-security">          <dt>stable</dt>
685      <tr class="normalrow">          <dd>
686        <td class="labelcell"><small>Stable Security Updates</small></td>            <xsl:call-template name="output-version">
687        <td class="contentcell">              <xsl:with-param name="suite">stable</xsl:with-param>
688          <xsl:value-of select="document(concat('../base/', $dir, '/stable-security.xml'))/source/version"/>            </xsl:call-template>
689        </td>          </dd>
690      </tr>        </xsl:if>
691    </xsl:if>        <xsl:if test="$hassecurity-stable">
692    <xsl:if test="$hass-p-u">          <dt title="security updates for the stable release">stable-sec</dt>
693      <tr class="normalrow">          <dd>
694        <td class="labelcell"><small>Stable Proposed Updates</small></td>            <xsl:call-template name="output-version">
695        <td class="contentcell">              <xsl:with-param name="suite">security-stable</xsl:with-param>
696          <xsl:value-of select="document(concat('../base/', $dir, '/s-p-u.xml'))/source/version"/>              <xsl:with-param name="link">no</xsl:with-param>
697        </td>            </xsl:call-template>
698      </tr>          </dd>
699    </xsl:if>        </xsl:if>
700          <xsl:if test="$hasstable-proposed-updates">
701    <!-- testing -->          <dt title="stable proposed updates">s-p-u</dt>
702    <xsl:if test="$hastesting">          <dd>
703      <tr class="normalrow">            <xsl:call-template name="output-version">
704        <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>              <xsl:with-param name="suite">stable-proposed-updates</xsl:with-param>
705        <td class="contentcell">              <xsl:with-param name="link">no</xsl:with-param>
706          <a href="http://packages.debian.org/source/testing/{$package}"><xsl:value-of            </xsl:call-template>
707              select="document(concat('../base/', $dir, '/testing.xml'))/source/version"/></a>          </dd>
708        </td>        </xsl:if>
709      </tr>        <xsl:if test="$hastesting">
710    </xsl:if>          <dt>testing</dt>
711    <xsl:if test="$hastesting-security">          <dd>
712      <tr class="normalrow">            <xsl:call-template name="output-version">
713        <td class="labelcell"><small>Testing Security Updates</small></td>              <xsl:with-param name="suite">testing</xsl:with-param>
714        <td class="contentcell">            </xsl:call-template>
715          <xsl:value-of select="document(concat('../base/', $dir, '/testing-security.xml'))/source/version"/>          </dd>
716        </td>        </xsl:if>
717      </tr>        <xsl:if test="$hassecurity-testing">
718    </xsl:if>          <dt title="security updates for the testing release">testing-sec</dt>
719    <xsl:if test="$hast-p-u">          <dd>
720      <tr class="normalrow">            <xsl:call-template name="output-version">
721        <td class="labelcell"><small>Testing Proposed Updates</small></td>              <xsl:with-param name="suite">security-testing</xsl:with-param>
722        <td class="contentcell">              <xsl:with-param name="link">no</xsl:with-param>
723          <xsl:value-of select="document(concat('../base/', $dir, '/t-p-u.xml'))/source/version"/>            </xsl:call-template>
724        </td>          </dd>
725      </tr>        </xsl:if>
726    </xsl:if>        <xsl:if test="$hastesting-proposed-updates">
727            <dt title="testing proposed updates">t-p-u</dt>
728    <!-- unstable -->          <dd>
729    <xsl:if test="$hasunstable">            <xsl:call-template name="output-version">
730      <tr class="normalrow">              <xsl:with-param name="suite">testing-proposed-updates</xsl:with-param>
731        <td class="labelcell">Unstable</td>              <xsl:with-param name="link">no</xsl:with-param>
732        <td class="contentcell">            </xsl:call-template>
733          <a href="http://packages.debian.org/source/unstable/{$package}"><xsl:value-of          </dd>
734              select="document(concat('../base/', $dir, '/unstable.xml'))/source/version"/></a>        </xsl:if>
735        </td>        <xsl:if test="$hasunstable">
736      </tr>          <dt>unstable</dt>
737    </xsl:if>          <dd>
738              <xsl:call-template name="output-version">
739    <!-- experimental -->              <xsl:with-param name="suite">unstable</xsl:with-param>
740    <xsl:if test="$hasexperimental">            </xsl:call-template>
741      <tr class="normalrow">          </dd>
742        <td class="labelcell">Experimental</td>        </xsl:if>
743        <td class="contentcell">        <xsl:if test="$hasexperimental">
744          <a href="http://packages.debian.org/source/experimental/{$package}"><xsl:value-of          <dt title="experimental release">exp</dt>
745              select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/></a>          <dd>
746        </td>            <xsl:call-template name="output-version">
747      </tr>              <xsl:with-param name="suite">experimental</xsl:with-param>
748    </xsl:if>            </xsl:call-template>
749            </dd>
750    <!-- secure-testing -->        </xsl:if>
751    <xsl:if test="$hassecure-testing">        <xsl:if test="$hasvolatile">
752      <tr class="normalrow">          <dt>volatile</dt>
753        <td class="labelcell">Secure testing</td>          <dd>
754        <td class="contentcell">            <xsl:call-template name="output-version">
755          <xsl:value-of select="document(concat('../base/', $dir, '/secure-testing.xml'))/source/version"/>              <xsl:with-param name="suite">volatile</xsl:with-param>
756        </td>              <xsl:with-param name="link">no</xsl:with-param>
757      </tr>            </xsl:call-template>
758    </xsl:if>          </dd>
759          </xsl:if>
760    <!-- volatile -->        <xsl:if test="$hasother and $other/@new_version">
761    <xsl:if test="$hasvolatile">          <dt title="waiting in the NEW queue for FTP master review">
762      <tr class="normalrow">            <a href="http://ftp-master.debian.org/new.html">NEW</a>
763        <td class="labelcell">Volatile</td>          </dt>
764        <td class="contentcell">          <dd>
765          <xsl:value-of select="document(concat('../base/', $dir, '/volatile.xml'))/source/version"/>            <xsl:value-of select="$other/@new_version" />
766        </td>          </dd>
767      </tr>        </xsl:if>
768    </xsl:if>      </dl>
769      </div>
770  </xsl:template>  </xsl:template>
771    
772  <xsl:template name="ubuntu">  <xsl:template name="ubuntu">
   <!-- Patches list [FG] -->  
773    <xsl:if test="$other/@ubuntu='yes'">    <xsl:if test="$other/@ubuntu='yes'">
774      <tr class="titlerow">      <div class="block ubuntu">
775        <td class="titlecell" colspan="2">        <a name="ubuntu" />
776          Ubuntu        <h2>ubuntu
777      </td></tr>          <img src="../common/ubuntu.png" alt="ubuntu" />
778      <tr>          <xsl:text> </xsl:text>
779        <td class="contentcell" colspan="2" style="text-align: left">          <xsl:call-template name="more-info-marker">
780          <ul>            <xsl:with-param name="href">https://wiki.ubuntu.com/Ubuntu/ForDebianDevelopers</xsl:with-param>
781              <li>            <xsl:with-param name="title">Information about Ubuntu for Debian Developers</xsl:with-param>
782                      Version: <a href="{$other/ubuntu/@url}"><xsl:value-of select="$other/ubuntu/@version"/></a>          </xsl:call-template>
783              </li>        </h2>
           <xsl:if test="$other/ubuntu/patch">  
             <li>  
                     <a href="{$other/ubuntu/patch/@url}">Patch for version <xsl:value-of select="$other/ubuntu/patch/@version"/></a>  
             </li>  
           </xsl:if>  
           <xsl:if test="$other/ubuntu/bugs">  
             <li>  
                     <a href="{$other/ubuntu/bugs/@url}"><xsl:value-of select="$other/ubuntu/bugs/@count"/> open bugs</a>  
             </li>  
           </xsl:if>  
         </ul>  
       </td>  
     </tr>  
   </xsl:if>  
 </xsl:template>  
   
 <xsl:template name="other-links">  
   <tr class="titlerow">  
     <td class="titlecell" colspan="2">  
       Other links  
   </td></tr>  
   <tr>  
     <td class="contentcell" colspan="2" style="text-align: left">  
784        <ul>        <ul>
         <xsl:if test="homepage">  
           <li> <a href="{homepage}">Upstream homepage</a> </li>  
         </xsl:if>  
785          <li>          <li>
786            <xsl:element name="a">            version: <a href="{$other/ubuntu/@url}"><xsl:value-of select="$other/ubuntu/@version"/></a>
             <xsl:attribute name="href">  
               <xsl:text>http://packages.debian.org/changelogs/</xsl:text>  
               <xsl:value-of select="directory"/>  
               <xsl:text>/current/changelog</xsl:text>  
             </xsl:attribute>  
             <xsl:text>Changelog</xsl:text>  
           </xsl:element>  
           /  
           <xsl:element name="a">  
             <xsl:attribute name="href">  
               <xsl:text>http://packages.debian.org/changelogs/</xsl:text>  
               <xsl:value-of select="directory"/>  
               <xsl:text>/current/copyright</xsl:text>  
             </xsl:attribute>  
             <xsl:text>Copyright</xsl:text>  
           </xsl:element>  
787          </li>          </li>
788          <xsl:if test="architecture!='all'">          <xsl:if test="$other/ubuntu/patch">
789            <li>            <li>
790              <xsl:text>Buildd: </xsl:text>              <a href="{$other/ubuntu/patch/@url}">patches for
791              <a href="http://buildd.debian.org/pkg.cgi?pkg={$escaped-package}"              <xsl:value-of select="$other/ubuntu/patch/@version"/></a>
               title="buildd.debian.org build logs">logs</a>  
             <xsl:text>, </xsl:text>  
             <!-- <a href="http://people.debian.org/~igloo/status.php?packages={$escaped-package}"  
               title="igloo's build logs on people.debian.org">more</a> -->  
             <a href="http://buildd.debian.org/~jeroen/status/package.php?p={$escaped-package}"  
               title="jeroen's build logs on buildd.debian.org">more</a>  
             <xsl:text>, </xsl:text>  
             <a href="http://experimental.debian.net/build.php?pkg={$escaped-package}"  
               title="experimental.debian.net build logs">exp</a>  
             <xsl:text>, </xsl:text>  
             <a href="http://buildd.debian-ports.org/status/package.php?p={$escaped-package}"  
               title="debian ports build logs">ports</a>  
792            </li>            </li>
793          </xsl:if>          </xsl:if>
794          <!-- DISABLED until ddtp.debian.org is back up          <xsl:if test="$other/ubuntu/bugs">
         <li>  
           <xsl:element name="a">  
             <xsl:attribute name="href">  
               <xsl:text>http://ddtp.debian.org/stats/pdesc/report.cgi?package=</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>&amp;lang=all&amp;type=src-drvbin&amp;subword=0</xsl:text>  
             </xsl:attribute>  
             Description's translations (DDTP)  
           </xsl:element>  
         </li>  
         <xsl:if test="$other/@debconf='yes'">  
795            <li>            <li>
796              <xsl:element name="a">              <a href="{$other/ubuntu/bugs/@url}"><xsl:value-of select="$other/ubuntu/bugs/@count"/>
797                <xsl:attribute name="href">              bugs</a>
                 <xsl:text>http://ddtp.debian.org/cgi-bin/ddtp.cgi?part=debconf&amp;package=</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:attribute>  
               Debconf templates's translations (DDTP)  
             </xsl:element>  
           </li>  
         </xsl:if>  
         -->  
         <xsl:if test="($hasunstable and $other/debcheck/@unstable='yes')  
           or ($hastesting and $other/debcheck/@testing='yes')  
           or ($hasstable and $other/debcheck/@stable='yes')">  
           <li>  
             Debcheck on:  
             <xsl:if test="$hasunstable">  
               <xsl:text> </xsl:text>  
               <a href="http://qa.debian.org/debcheck.php?dist=unstable&amp;package={$escaped-package}">unstable</a>  
             </xsl:if>  
             <xsl:if test="$hastesting">  
               <xsl:text> </xsl:text>  
               <a href="http://qa.debian.org/debcheck.php?dist=testing&amp;package={$escaped-package}">testing</a>  
             </xsl:if>  
             <xsl:if test="$hasstable">  
               <xsl:text> </xsl:text>  
               <a href="http://qa.debian.org/debcheck.php?dist=stable&amp;package={$escaped-package}">stable</a>  
             </xsl:if>  
           </li>  
         </xsl:if>  
         <xsl:if test="$other/@lintian='yes'">  
           <xsl:variable name="lintian_url"><xsl:call-template name="mk_lintian_url" /></xsl:variable>  
           <li>  
             <a href="{$lintian_url}">Lintian report</a>  
             <xsl:if test="$lin_errs + $lin_warns > 0">  
               <xsl:text> </xsl:text>  
               <small><span title="(errors, warnings)">(<xsl:value-of select="$lin_errs" />,  
                   <xsl:value-of select="$lin_warns" />)</span></small>  
             </xsl:if>  
798            </li>            </li>
799          </xsl:if>          </xsl:if>
         <li>  
           <a href="http://qa.debian.org/developer.php?popcon={$escaped-package}">Popcon stats</a>  
         </li>  
         <xsl:if test="$other/@svnbuildstat='yes'">  
           <li>  
             <a href="http://svnbuildstat.debian.net/packages/info/{$escaped-package}">Svnbuildstat</a>  
           </li>  
         </xsl:if>  
       </ul>  
     </td>  
   </tr>  
 </xsl:template>  
   
 <xsl:template name="package-files">  
   <tr class="titlerow">  
     <td class="titlecell" colspan="2">  
       Source package  
   </td></tr>  
   <tr class="titlerow">  
     <td class="labelcell">  
       <xsl:element name="a">  
         <xsl:attribute name="href">  
           <xsl:call-template name="mirror"/>  
           <xsl:text>/</xsl:text>  
           <xsl:value-of select="directory"/>  
           <xsl:text>/</xsl:text>  
         </xsl:attribute>  
         <xsl:text>Files</xsl:text>  
       </xsl:element>  
     </td>  
     <td class="contentcell" id="src_files">  
       <ul>  
         <xsl:for-each select="files/item">  
           <xsl:variable name="filetype">  
             <xsl:call-template name="categorize-srcfile" />  
           </xsl:variable>  
           <xsl:element name="li">  
             <xsl:attribute name="class">srcfile</xsl:attribute>  
             <xsl:if test="string($filetype)!=''">  
               <xsl:attribute name="id">  
                 <xsl:text>srcfile_</xsl:text>  
                 <xsl:value-of select="$filetype" />  
               </xsl:attribute>  
             </xsl:if>  
             <xsl:element name="a">  
               <xsl:attribute name="class">srcfile</xsl:attribute>  
               <xsl:attribute name="href">  
                 <xsl:call-template name="mirror"/>  
                 <xsl:text>/</xsl:text>  
                 <xsl:value-of select="../../directory"/>  
                 <xsl:text>/</xsl:text>  
                 <xsl:value-of select="filename"/>  
               </xsl:attribute>  
               <xsl:attribute name="title">  
                 <xsl:value-of select="filename" />  
                 <xsl:text>: </xsl:text>  
                 <xsl:value-of select="size"/>  
                 <xsl:text> bytes</xsl:text>  
               </xsl:attribute>  
               <xsl:text>.</xsl:text>  
               <xsl:value-of select="$filetype"/>  
             </xsl:element>  
           </xsl:element>  
         </xsl:for-each>  
800        </ul>        </ul>
801      </td>      </div>
802    </tr>    </xsl:if>
803  </xsl:template>  </xsl:template>
804    
805  <xsl:template name="todo-list">  <xsl:template name="other-links">
806    <xsl:variable name="todo">    <div class="block links">
807      <xsl:if test="@nmu">      <a name="links" />
808        <li>Incorporate and acknowledge the changes from the non maintainer upload.</li>      <h2>links</h2>
809      </xsl:if>      <ul>
810      <xsl:if test="$lin_errs + $lin_warns > 0">        <xsl:if test="homepage">
811            <li><a title="upstream web homepage" href="{homepage}">homepage</a></li>
812          </xsl:if>
813        <li>        <li>
814          <xsl:variable name="lintian_url"><xsl:call-template name="mk_lintian_url" /></xsl:variable>          <xsl:element name="a">
815          <a href="http://lintian.debian.org">Lintian</a><xsl:text> </xsl:text>            <xsl:attribute name="href">
816          <xsl:text>reports </xsl:text>              <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
817          <a href="{$lintian_url}">              <xsl:value-of select="directory"/>
818            <xsl:if test="$lin_errs > 0"><xsl:value-of select="$lin_errs" /> error<xsl:if test="$lin_errs > 1">s</xsl:if></xsl:if>              <xsl:text>/current/changelog</xsl:text>
819            <xsl:if test="$lin_errs > 0 and $lin_warns > 0"> and </xsl:if>            </xsl:attribute>
820            <xsl:if test="$lin_warns > 0"><xsl:value-of select="$lin_warns" /> warning<xsl:if test="$lin_warns > 1">s</xsl:if></xsl:if>            <xsl:text>changelog</xsl:text>
821          </a>          </xsl:element>
822          about this package. You should make the package <em>lintian clean</em>          /
823          getting rid of <xsl:if test="$lin_errs + $lin_warns = 1">it</xsl:if>          <xsl:element name="a">
824          <xsl:if test="$lin_errs + $lin_warns > 1">them</xsl:if>.            <xsl:attribute name="href">
825                <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
826                <xsl:value-of select="directory"/>
827                <xsl:text>/current/copyright</xsl:text>
828              </xsl:attribute>
829              <xsl:text>copyright</xsl:text>
830            </xsl:element>
831        </li>        </li>
832      </xsl:if>        <xsl:if test="architecture!='all'">
833      <xsl:if test="$hasmentors"> <!-- todo item about sponsoring mentors.d.n.  uploads -->          <li>
834        <xsl:variable name="mentors_version"            <xsl:text>buildd: </xsl:text>
835          select="document(concat('../base/', $dir, '/mentors.xml'))/source/version" />            <a href="http://buildd.debian.org/pkg.cgi?pkg={$escaped-package}"
836                 title="buildd.debian.org build logs">logs</a>
837              <xsl:text>, </xsl:text>
838              <!-- <a href="http://people.debian.org/~igloo/status.php?packages={$escaped-package}"
839                      title="igloo's build logs on people.debian.org">more</a> -->
840              <a href="http://buildd.debian.org/status/package.php?p={$escaped-package}"
841                 title="build logs on buildd.debian.org">more</a>
842              <xsl:text>, </xsl:text>
843              <!-- <a href="http://experimental.debian.net/build.php?pkg={$escaped-package}" -->
844                   <!--   title="experimental.debian.net build logs">exp</a> -->
845                   <xsl:if test="$hasexperimental">
846                     <a href="http://experimental.debian.net/new/package.php?p={$escaped-package}&amp;suite=experimental"
847                        title="experimental.debian.net build logs">exp</a>
848                     <xsl:text>, </xsl:text>
849                   </xsl:if>
850                   <a href="http://buildd.debian-ports.org/status/package.php?p={$escaped-package}"
851                      title="debian ports build logs">ports</a>
852            </li>
853          </xsl:if>
854          <xsl:if test="$hasother and $other/@piuparts='yes'">
855            <li>
856              <a title="report about errors found while stressing package installation"
857                 href="http://piuparts.debian.org/sid/source/{$hash}/{$package}.html">piuparts</a>
858            </li>
859          </xsl:if>
860          <xsl:if test="($hasunstable and $other/debcheck/@unstable='yes')
861                        or ($hastesting and $other/debcheck/@testing='yes')
862                        or ($hasstable and $other/debcheck/@stable='yes')">
863            <li>
864              debcheck:
865              <xsl:if test="$hasunstable">
866                <xsl:text> </xsl:text>
867                <a href="http://qa.debian.org/debcheck.php?dist=unstable&amp;package={$escaped-package}">unstable</a>
868              </xsl:if>
869              <xsl:if test="$hastesting">
870                <xsl:text> </xsl:text>
871                <a href="http://qa.debian.org/debcheck.php?dist=testing&amp;package={$escaped-package}">testing</a>
872              </xsl:if>
873              <xsl:if test="$hasstable">
874                <xsl:text> </xsl:text>
875                <a href="http://qa.debian.org/debcheck.php?dist=stable&amp;package={$escaped-package}">stable</a>
876              </xsl:if>
877            </li>
878          </xsl:if>
879          <xsl:if test="$other/@lintian='yes'">
880            <xsl:variable name="lintian_url"><xsl:call-template name="mk_lintian_url" /></xsl:variable>
881            <li>
882              <a title="report about packaging issues spotted by lintian"
883                 href="{$lintian_url}">lintian</a>
884              <!-- <xsl:if test="$lin_errs + $lin_warns > 0"> -->
885              <!--   <xsl:text> </xsl:text> -->
886              <!--   <small><span title="(errors, warnings)">(<span id="lintian_errors"><xsl:value-of select="$lin_errs" /></span>, -->
887              <!--  <span id="lintian_warnings"><xsl:value-of select="$lin_warns" /></span>)</span></small> -->
888              <!-- </xsl:if> -->
889            </li>
890          </xsl:if>
891        <li>        <li>
892          <a href="http://mentors.debian.net"><tt>mentors.debian.net</tt></a> has          <a title="package popularity"
893          <a href="http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package={$package}">version             href="http://qa.debian.org/developer.php?popcon={$escaped-package}">popcon</a>
           <xsl:value-of select="$mentors_version" /></a> of this package, you  
         should consider sponsoring its upload.  
894        </li>        </li>
895      </xsl:if>        <xsl:if test="$other/@svnbuildstat='yes'">
896      <xsl:if test="not(uploaders)and(priority='standard' or priority='required' or priority='important')">          <li>
897        <li>The package is of priority standard or higher, you should really find some co-maintainers.</li>            <a href="http://svnbuildstat.debian.net/packages/info/{$escaped-package}">Svnbuildstat</a>
898      </xsl:if>          </li>
899      <xsl:if test="standards-version!='' and not(starts-with(standards-version, $lastsv))">        </xsl:if>
900        <li>The package should be updated to follow the last version of        <xsl:if test="$other/i18n/@href">
901          <a href="http://www.debian.org/doc/debian-policy/">Debian Policy</a> (Standards-Version          <li>
902          <xsl:value-of select="$lastsv"/> instead of            <a title="translation status"
903          <xsl:value-of select="standards-version"/>).</li>               href="{$other/i18n/@href}">l10n</a>
904      </xsl:if>            <small>
905                (<span title="completeness of Debian string translation">
906                  <xsl:value-of select="$other/i18n/@deb" />
907                </span>,
908                <span title="completeness of non-Debian string translation">
909                  <xsl:value-of select="$other/i18n/@nondeb" />
910                </span>)
911              </small>
912            </li>
913          </xsl:if>
914        </ul>
915      </div>
916    </xsl:template>
917    
918    <xsl:template name="todo-list">
919      <xsl:variable name="todo">
920        <xsl:call-template name="issue-security" />
921        <xsl:call-template name="issue-nmu" />
922        <xsl:call-template name="issue-lintian" />
923        <xsl:call-template name="issue-mentors-pending" />
924        <xsl:call-template name="issue-comaintenance" />
925        <xsl:call-template name="issue-outdate-stdver" />
926        <xsl:call-template name="issue-new-upstream" />
927        <xsl:call-template name="issue-patches" />
928        <xsl:call-template name="issue-l10n" />
929      <xsl:if test="$hasother">      <xsl:if test="$hasother">
930        <xsl:for-each select="$other/todo/item">        <xsl:for-each select="$other/todo/item">
931          <xsl:call-template name="outputitem"/>          <xsl:call-template name="outputitem" />
932        </xsl:for-each>        </xsl:for-each>
       <xsl:if test="$other[dehs/@newer]">  
         <li>A new upstream version is available:  
           <a href="http://dehs.alioth.debian.org/maintainer.php?name={$escaped-package}"><xsl:value-of select="$other/dehs/@newer"/></a>,  
           you should consider packaging it.</li>  
       </xsl:if>  
       <xsl:if test="$other/bugs/@patch!='0'">  
         <li>The Bug Tracking System contains  
           <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?src={$escaped-package}&amp;include=tags:patch&amp;exclude=tags:pending&amp;pend-exc=done&amp;repeatmerged=no">patches fixing  
           <xsl:value-of select="$other/bugs/@patch"/> bug<xsl:if test="$other/bugs/@patch!='1'">s</xsl:if>  
           </a>  
           <xsl:if test="$other/bugs/@patch_m">  
             <xsl:text> (</xsl:text>  
             <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?src={$escaped-package}&amp;include=tags:patch&amp;exclude=tags:pending&amp;pend-exc=done&amp;repeatmerged=yes">  
               <xsl:value-of select="$other/bugs/@patch_m"/>  
             </a>  
             <xsl:text> if counting merged bugs)</xsl:text>  
           </xsl:if>, consider including or untagging  
           <xsl:if test="$other/bugs/@patch!='1'">them</xsl:if>  
           <xsl:if test="$other/bugs/@patch='1'">it</xsl:if>.  
         </li>  
       </xsl:if>  
933      </xsl:if>      </xsl:if>
934    </xsl:variable>    </xsl:variable>
935    
936    <xsl:if test="count($todo)>0 and string($todo)!=''">    <xsl:if test="count($todo)>0 and string($todo)!=''">
937      <tr class="titlerow">      <div class="block todo">
938        <td class="titlecell" id="todo">        <a name="todo" />
939          Todo        <h2>todo</h2>
940      </td></tr>        <ul>
941      <tr class="normalrow">          <xsl:copy-of select="$todo" />
942        <td class="contentcell2">        </ul>
943          <ul>      </div>
           <xsl:copy-of select="$todo"/>  
         </ul>  
       </td>  
     </tr>  
944    </xsl:if>    </xsl:if>
945  </xsl:template>  </xsl:template>
946    
947  <xsl:template name="problems">  <xsl:template name="problems">
948    <xsl:variable name="problems">    <xsl:variable name="problems">
949      <xsl:if test="$hasexcuse and document(concat('../base/', $dir, '/excuse.xml'))/excuse/@problematic">      <xsl:call-template name="issue-testing-excuses" />
950        <li>The package has not yet entered <a      <xsl:call-template name="issue-piuparts" />
951            href="http://ftp-master.debian.org/testing/update_excuses.html.gz#{$package}">testing</a>      <xsl:call-template name="issue-ancient-stdver" />
952          even though the <xsl:value-of select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/@limit"/>-day      <xsl:call-template name="issue-item-dead-package" />
953          delay is over.      <xsl:call-template name="issue-item-override-disparity" />
954          <a href="http://release.debian.org/migration/testing.pl?package={$escaped-package}">Check why</a>.</li>      <xsl:call-template name="issue-item-help-bugs" />
955      </xsl:if>      <xsl:call-template name="issue-item-wnpp" />
956      <xsl:if test="standards-version!='' and not(starts-with(standards-version, $lastmajorsv))">      <!-- <xsl:call-template name="issue-item-watch-failure" /> -->
957        <li>The package is severly out of date with respect to the Debian      <xsl:call-template name="issue-item-dehs-failure" />
         Policy. Latest version is <xsl:value-of select="$lastsv"/>  
         and your package only follows  
         <xsl:value-of select="standards-version"/>...</li>  
     </xsl:if>  
     <xsl:if test="@release!='unstable' and @release!='experimental'">  
       <li>This package is neither part of unstable nor experimental. This  
         probably means that the package <a  
           href="http://ftp-master.debian.org/removals.txt">has been removed</a> (or  
         has been renamed). Thus the information here is of little interest ...  
         the package is going to disappear unless someone takes it over and  
         reintroduces it into unstable.</li>  
     </xsl:if>  
958      <xsl:if test="$hasother">      <xsl:if test="$hasother">
   
       <!-- Override disparity handling. [JvW] -->  
       <xsl:if test="$other/@override='yes'">  
         <xsl:for-each select="$other/override/group">  
           <li>There were override disparities found in suite <xsl:value-of  
               select="@suite"/>:  
             <ul>  
               <xsl:for-each select="disparity">  
                 <li><xsl:value-of select="text()"/></li>  
               </xsl:for-each>  
             </ul>  
           </li>  
         </xsl:for-each>  
       </xsl:if>  
   
       <!-- Wnpp handling. [PvR] -->  
       <xsl:if test="$other/@wnpp='yes'">  
         <li>  
           <xsl:choose>  
             <xsl:when test="$other/wnpp/@type='O'">  
               <xsl:choose>  
                 <xsl:when test="@release!='unstable' and @release!='experimental'">  
                   The WNPP database contains an O (Orphaned) entry for  
                   this package. This is probably an error, as it is neither part of  
                   unstable nor experimental.  
                 </xsl:when>  
                 <xsl:otherwise>  
                   <span style="font-weight: bold">This package has been orphaned</span>.  
                   This means that it does not have a real maintainer at the  
                   moment. Please consider adopting this package if you are interested in it.  
                 </xsl:otherwise>  
               </xsl:choose>  
             </xsl:when>  
             <xsl:when test="$other/wnpp/@type='ITA'">  
               <xsl:choose>  
                 <xsl:when test="@release!='unstable' and @release!='experimental'">  
                   The WNPP database contains an ITA (Intent To Adopt) entry for  
                   this package. This is probably an error, as it is neither part of  
                   unstable nor experimental.  
                 </xsl:when>  
                 <xsl:otherwise>  
                   This package has been orphaned, but someone intends to maintain it.  
                 </xsl:otherwise>  
               </xsl:choose>  
             </xsl:when>  
             <xsl:when test="$other/wnpp/@type='RFA'">  
               <xsl:choose>  
                 <xsl:when test="@release!='unstable' and @release!='experimental'">  
                   The WNPP database contains an RFA (Request For Adoption) entry for  
                   this package. This is probably an error, as it is neither part of  
                   unstable nor experimental.  
                 </xsl:when>  
                 <xsl:otherwise>  
                   The current maintainer is looking for someone who can take over  
                   maintenance of this package. If you are interested in this package,  
                   please consider taking it over. Alternatively you may  
                   want to be co-maintainer in order to help the actual maintainer.  
                 </xsl:otherwise>  
               </xsl:choose>  
             </xsl:when>  
             <xsl:when test="$other/wnpp/@type='RFH'">  
               <xsl:choose>  
                 <xsl:when test="@release!='unstable' and @release!='experimental'">  
                   The WNPP database contains an RFH (Request For Help) entry for  
                   this package. This is probably an error, as it is neither part of  
                   unstable nor experimental.  
                 </xsl:when>  
                 <xsl:otherwise>  
                   The current maintainer is looking for someone who can help with the  
                   maintenance of this package. If you are interested in this package,  
                   please consider helping out. One way you can help is offer to be a  
                   co-maintainer or triage bugs in the bts.  
                 </xsl:otherwise>  
               </xsl:choose>  
             </xsl:when>  
             <xsl:when test="$other/wnpp/@type='ITP'">  
               <xsl:choose>  
                 <xsl:when test="@release!='unstable' and @release!='experimental'">  
                   The WNPP database contains an ITP (Intent To Package). This probably  
                   means that somebody is going to reintroduce this package into unstable.  
                 </xsl:when>  
                 <xsl:otherwise>  
                   The WNPP database contains an ITP (Intent To Package) entry for  
                   this package. This is probably an error, as it has already been  
                   packaged.  
                 </xsl:otherwise>  
               </xsl:choose>  
             </xsl:when>  
             <xsl:when test="$other/wnpp/@type='RFP'">  
               <xsl:choose>  
                 <xsl:when test="@release!='unstable' and @release!='experimental'">  
                   The WNPP database contains an RFP (Request For Package). This probably  
                   means that somebody would like to see this package reintroduced into  
                   unstable by a volunteer.  
                 </xsl:when>  
                 <xsl:otherwise>  
                   The WNPP database contains an RFP (Request For Package) entry  
                   for this package.  This is probably an error, as it has already  
                   been packaged.  
                 </xsl:otherwise>  
               </xsl:choose>  
             </xsl:when>  
             <xsl:when test="$other/wnpp/@type='RM'">  
               <span style="font-weight: bold">This package has been requested to be  
                 removed</span>.  
               This means that, when this request gets processed by an ftp-master, this  
               package will no longer be in unstable, and will automatically be removed  
               from testing too afterwards. If for some reason you want keep this  
               package in unstable, please discuss so in the bug.  
             </xsl:when>  
             <xsl:otherwise>  
               The WNPP database contains an entry for this package,  
               but it is unclear what kind of entry it is. This is probably an error.  
             </xsl:otherwise>  
           </xsl:choose>  
           <xsl:variable name="bn" select="$other/wnpp/@bugnumber"/>  
           Please see bug number <a href="http://bugs.debian.org/{$bn}">  
             #<xsl:value-of select="$bn"/></a> for more information.  
         </li>  
       </xsl:if>  
   
       <!-- disable watch rendering, see above -->  
       <!--  
       <xsl:if test="$other/@watch='yes'">  
         <li>  
           <xsl:if test="$other/watch/@warning!=''">  
             uscan had problems while searching for a new upstream version: <xsl:value-of select="$other/watch/@warning"/>  
           </xsl:if>  
         </li>  
       </xsl:if>  
       -->  
       <xsl:if test="$other[dehs/@error]">  
         <li>The package has a <kbd>debian/watch</kbd> file, but the last  
           attempt to use it for checking for newer upstream versions failed  
           with  
           <a href="http://dehs.alioth.debian.org/maintainer.php?name={$escaped-package}">an  
             error</a>.</li>  
       </xsl:if>  
   
       <!-- Misc problems reported -->  
959        <xsl:for-each select="$other/problems/item">        <xsl:for-each select="$other/problems/item">
960          <xsl:call-template name="outputitem"/>          <xsl:call-template name="outputitem"/>
961        </xsl:for-each>        </xsl:for-each>
962      </xsl:if>      </xsl:if>
963    </xsl:variable>    </xsl:variable>
964    
965    <xsl:if test="count($problems)>0 and string($problems)!=''">    <xsl:if test="count($problems)>0 and string($problems)!=''">
966      <tr class="titlerow">      <div class="block problems">
967        <td class="titlecell" id="problems">        <a name="problems" />
968          Problems        <h2>problems</h2>
969      </td></tr>        <ul>
970      <tr class="normalrow">          <xsl:copy-of select="$problems" />
971        <td class="contentcell2">        </ul>
972          <ul><xsl:copy-of select="$problems"/></ul>      </div>
       </td>  
     </tr>  
973    </xsl:if>    </xsl:if>
974  </xsl:template>  </xsl:template>
975    
976  <xsl:template name="testing-status">  <xsl:template name="testing-status">
977    <xsl:if test="$hasexcuse or $other/@transitions='yes'">    <xsl:if test="$hasexcuse or $other/@transitions='yes'">
978      <tr class="titlerow">      <div class="block testing">
979        <td class="titlecell">        <a name="testing" />
980          Testing status        <h2>testing migration</h2>
981      </td></tr>        <xsl:if test="$other/@transitions='yes'">
982    </xsl:if>          <xsl:variable name="translist">
983    <xsl:if test="$other/@transitions='yes'">            <xsl:for-each select="$other/transitions/transition">
984      <xsl:variable name="translist">              <xsl:value-of select="@name" />
985        <xsl:for-each select="$other/transitions/transition">              <xsl:if test="position() != last()"> <xsl:text> </xsl:text>
986          <xsl:value-of select="@name" />              </xsl:if>
987          <xsl:if test="position() != last()">            </xsl:for-each>
988            <xsl:text> </xsl:text>          </xsl:variable>
989          </xsl:if>          <xsl:variable name="transno"
990        </xsl:for-each>                        select="count($other/transitions/transition)" />
991      </xsl:variable>          <div class="warning">
992      <xsl:variable name="transno" select="count($other/transitions/transition)" />            <!-- XXX unappropriate <ul>, just to make the text looks like other
993      <tr class="normalrow">                 boxes, should be fixed on the CSS side (getting rid of <ul>) -->
994        <td class="contentcell2" style="text-align: left">            <p>This package is part of <em><xsl:value-of select="$transno" /> ongoing
995          <ul>                testing transition<xsl:if test="$transno != '1'">s</xsl:if></em>
996            <!-- XXX unappropriate <ul>, just to make the text looks like other              (namely: <tt><xsl:value-of select="$translist" /></tt>). For
997              boxes, should be fixed on the CSS side (getting rid of <ul>) -->              more information see the
998          <li>This package is part of <em><xsl:value-of select="$transno" />              <a href="http://ftp-master.debian.org/transitions.yaml">transition
999              ongoing testing transition<xsl:if test="$transno != '1'">s</xsl:if>                status file</a>.<br />
1000            </em> (namely: <tt><xsl:value-of select="$translist" /></tt>). For              <em>Uploads to unstable will be rejected</em> while
1001            more information see the              transitions are ongoing; you might want to upload to
1002            <a href="http://ftp-master.debian.org/transitions.yaml">transition              experimental in the meantime, or
1003              status file</a>.<br />              contact <tt><a href="mailto:debian-release@lists.debian.org">debian-release</a></tt>
1004            <em>Uploads to unstable will be rejected</em> while transitions are              if an upload is really necessary.
1005            ongoing; you might want to upload to experimental in the            </p>
1006            meantime, or contact <tt><a href="mailto:debian-release@lists.debian.org">debian-release</a></tt>          </div>
1007            if an upload is really necessary.        </xsl:if>
1008          </li>        <xsl:if test="$hasexcuse">
1009          </ul>          <a title="reasons why the package is not moving to testing"
1010        </td>             href="http://qa.debian.org/excuses.php?package={$package}">excuses</a>:
1011      </tr>          <ul class="testing-excuses">
   </xsl:if>  
   <xsl:if test="$hasexcuse">  
     <tr class="normalrow">  
       <td class="contentcell2" style="text-align: left">  
         <ul>  
1012            <xsl:for-each select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/item">            <xsl:for-each select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/item">
1013              <xsl:call-template name="outputitem"/>              <xsl:call-template name="outputitem"/>
1014            </xsl:for-each>            </xsl:for-each>
1015          </ul>          </ul>
1016        </td>        </xsl:if>
1017      </tr>      </div>
1018    </xsl:if>    </xsl:if>
1019  </xsl:template>  </xsl:template>
1020    
# Line 1257  other-to-%xx, especially % to %25... For Line 1050  other-to-%xx, especially % to %25... For
1050  <xsl:template match="source">  <xsl:template match="source">
1051    
1052    <!-- Start of html -->    <!-- Start of html -->
   <xsl:text disable-output-escaping="yes">  
   &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"&gt;  
   </xsl:text>  
1053    <html>    <html>
1054    <head>      <head>
1055    <meta name="ROBOTS" content="NOFOLLOW"/>        <meta name="ROBOTS" content="NOFOLLOW"/>
1056    <link type="text/css" title="User selected" rel="stylesheet" href="../common/default.css"/>        <link type="text/css" title="User selected" rel="stylesheet" href="../common/default.css"/>
1057    <link type="text/css" title="Official" rel="alternate stylesheet" href="../common/revamp.css"/>        <link type="text/css" title="Official" rel="alternate stylesheet" href="../common/revamp.css"/>
1058    <link type="text/css" title="Legacy PTS" rel="alternate stylesheet" href="../common/pts.css"/>        <link type="text/css" title="Legacy PTS" rel="alternate stylesheet" href="../common/pts.css"/>
1059    <link type="text/css" title="Compact rendering" rel="alternate stylesheet" href="../common/compact.css"/>        <link type="text/css" title="Compact rendering" rel="alternate stylesheet" href="../common/compact.css"/>
1060    <script type="text/javascript" src="../common/pts.js"></script>        <script type="text/javascript" src="../common/pts.js"></script>
1061    <xsl:if test="count($news)>0 and string($news)!=''">        <xsl:if test="count($news)>0 and string($news)!=''">
1062      <link rel="alternate" type="application/rss+xml" title="RSS"          <link rel="alternate" type="application/rss+xml" title="RSS"
1063        href="{$package}/news.rss20.xml" />                href="{$package}/news.rss20.xml" />
1064    </xsl:if>        </xsl:if>
1065    <title>Overview of <xsl:value-of select="$package"/> source package</title>        <title>Debian Package Tracking System -
1066    </head>          <xsl:value-of select="$package"/></title>
1067    <body onload="javascript:onLoad();">      </head>
1068        <body onload="javascript:onLoad();">
1069    <div id="quickforms" style="float: right;">        <div class="quickform" style="float: right;">
1070    <form method="get" action="/common/index.html">          <form title="jump to the PTS page of another source package"
1071    <p><span title="Jump to package">Go:</span>                method="get" action="/common/index.html">
1072    <input type="text" name="src" value=""/></p>            <p>
1073    </form>              <input type="text" size="14" name="src" value=""/>
1074    <form id="csspref-form" method="get" action="/common/set-csspref.php">              <input type="submit" value="jump to" />
1075    <p>Switch style: <select name="csspref" onchange="javascript:onChangeStyle();">            </p>
1076    <option value="revamp.css">Default</option>          </form>
1077    <option value="compact.css">Compact</option>        </div>
1078    <option value="pts.css">Legacy</option>  
1079    </select></p>        <h1>
1080    </form>          <xsl:value-of select="$package"/><br />
1081            <small>source package</small>
1082    </div>        </h1>
1083    <h1>Overview of  
1084    <xsl:element name="a">        <div id="body">
1085      <xsl:attribute name="href">          <xsl:choose>
1086        <xsl:text>http://packages.debian.org/src:</xsl:text>            <xsl:when test="$removed='yes'">
1087         <xsl:value-of select="$package"/>              <div class="block removed">
1088      </xsl:attribute>                <p>This package is not part of any Debian
1089     <xsl:value-of select="$package"/>                  distribution. Thus you won't find much information
1090    </xsl:element>                  here. The package is either very new and hasn't
1091    source package</h1>                  appeared on mirrors yet, or it's an old package that
1092                    eventually got removed.  The old news are kept for
1093    <div id="body">                  historic purpose only.</p>
1094    <xsl:choose>                <xsl:call-template name="static-info" />
1095    <xsl:when test="$removed='yes'">                <xsl:call-template name="latest-news" />
1096    <!-- REMOVED PACKAGE -->              </div>
1097    <p>This package is not part of any Debian distribution. Thus you won't            </xsl:when>
1098    find much information here. The package is either very new and hasn't            <xsl:otherwise>       <!-- non removed package -->
1099    appeared on mirrors yet, or it's an old package that eventually got removed.              <div class="left maincol">
1100    The old news are kept for historic purpose only.</p>                <xsl:call-template name="general-information" />
1101                  <xsl:call-template name="available-versions" />
1102    <table class="righttable">                <xsl:call-template name="binary-packages" />
1103      <xsl:call-template name="static-info" />              </div>
1104      <xsl:call-template name="latest-news" />              <div class="center maincol">
1105    </table>                <xsl:call-template name="todo-list" />
1106                  <xsl:call-template name="problems" />
1107    <!-- END REMOVED PACKAGE -->                <xsl:call-template name="testing-status" />
1108    </xsl:when>                <xsl:call-template name="static-info" />
1109    <xsl:otherwise>                <xsl:call-template name="latest-news" />
1110    <!-- NON REMOVED PACKAGE -->              </div>
1111                <div class="right maincol">
1112    <table class="containertable">                <xsl:call-template name="bugs-count" />
1113    <tr class="containerrow" valign="top">                <xsl:call-template name="other-links" />
1114    <td class="containercell">                <xsl:call-template name="ubuntu" />
1115    <!-- LEFT SIDE -->              </div>
1116    <table class="lefttable">            </xsl:otherwise>
1117      <xsl:call-template name="general-information" />          </xsl:choose>
1118      <xsl:call-template name="available-versions" />  
1119    </table>          <hr/>
1120    <table class="lefttable">          <div class="footer">
1121      <xsl:call-template name="package-files" />            <table width="100%">
1122      <xsl:call-template name="binary-packages" />              <tr>
1123    </table>                <td>
1124    <!-- END LEFT SIDE -->                <!--
1125    </td><td class="containercell">                  <div class="quickform">
1126    <!-- RIGHT SIDE -->                    <form id="csspref-form" method="get"
1127    <table class="righttable">                          action="/common/set-csspref.php">
1128      <xsl:call-template name="todo-list" />                      <p>
1129      <xsl:call-template name="problems" />                        change skin:
1130    </table>                        <select name="csspref" onchange="javascript:onChangeStyle();">
1131    <table class="righttable">                          <option value="revamp.css">default</option>
1132      <xsl:call-template name="testing-status" />                          <option value="compact.css">compact</option>
1133      <xsl:call-template name="static-info" />                          <option value="pts.css">legacy</option>
1134      <xsl:call-template name="latest-news" />                        </select>
1135    </table>                      </p>
1136    <!-- END RIGHT SIDE -->                    </form>
1137    </td><td class="containercell">                  </div>
1138    <table class="lefttable">                -->
1139      <xsl:call-template name="bugs-count" />                  <div class="quickform">
1140      <xsl:call-template name="pts-subscription" />                    <xsl:call-template name="pts-subscription" />
1141    </table>                  </div>
1142    <table class="lefttable">                </td>
1143      <xsl:call-template name="other-links" />                <td>
1144    </table>                  <p>
1145    <table class="lefttable" id="ubuntubox">                    <em><a href="http://www.debian.org">Debian</a>
1146      <xsl:call-template name="ubuntu" />                      Package Tracking System</em> - Copyright ©
1147    </table>                      2002-2009 Raphaël Hertzog, Stefano Zacchiroli and
1148    </td></tr>                      others.<br/> Report problems to the
1149    </table>                    <a href="http://bugs.debian.org/qa.debian.org"><tt>qa.debian.org</tt>
1150                        pseudopackage</a> in the <a href="http://bugs.debian.org">Debian
1151    <!-- END NON REMOVED PACKAGE -->                      <acronym title="Bug Tracking System">BTS</acronym></a>.<br/>
1152    </xsl:otherwise>                    Last modified: <xsl:value-of select="$date"/>.
1153    </xsl:choose>                  </p>
1154                  </td>
1155    <hr/>                <td>
1156    <div class="footer">                  <a href="http://validator.w3.org/check?uri=referer">
1157      <p>                    <img
1158        <a href="http://www.debian.org">Debian</a> Package Tracking System -                       src="http://www.w3.org/Icons/valid-xhtml10-blue"
1159        Copyright 2002-2008 Raphaël Hertzog and others.<br/>                       alt="Valid XHTML 1.0 Strict" height="31" width="88" />
1160        Report problems to the <a href="http://bugs.debian.org/qa.debian.org"                  </a>
1161          ><tt>qa.debian.org</tt> pseudopackage</a> in the <a                </td>
1162          href="http://bugs.debian.org">Debian <acronym              </tr>
1163          title="Bug Tracking System">BTS</acronym></a>.<br/>            </table>
1164        Last modified: <xsl:value-of select="$date"/>.          </div>
1165      </p>        </div>
1166    </div>      </body>
   </div>  
   </body>  
1167    </html>    </html>
1168  </xsl:template>  </xsl:template>
1169    

Legend:
Removed from v.1938  
changed lines
  Added in v.2338

  ViewVC Help
Powered by ViewVC 1.1.5