/[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 1768 by zack, Sat Dec 1 09:34:52 2007 UTC revision 1991 by hertzog, Wed Sep 10 08:55:15 2008 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-2007 Raphaël Hertzog and others  # Copyright 2002-2008 Raphaël Hertzog and others
5    # Copyright 2007-2008 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 18  Line 30 
30  <xsl:param name="hastesting" select="''"/>  <xsl:param name="hastesting" select="''"/>
31  <xsl:param name="hasunstable" select="''"/>  <xsl:param name="hasunstable" select="''"/>
32  <xsl:param name="hasexperimental" select="''"/>  <xsl:param name="hasexperimental" select="''"/>
33    <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="hasoldstable-security" select="''"/>
38  <xsl:param name="hasstable-security" select="''"/>  <xsl:param name="hasstable-security" select="''"/>
39  <xsl:param name="hastesting-security" select="''"/>  <xsl:param name="hastesting-security" select="''"/>
# Line 29  Line 42 
42  <xsl:param name="hasnews" select="''"/>  <xsl:param name="hasnews" select="''"/>
43  <xsl:param name="hasexcuse" select="''"/>  <xsl:param name="hasexcuse" select="''"/>
44    
45  <xsl:variable name="other" select="document(concat('../base/', $dir, '/other.xml'))/other"/>  <xsl:variable name="other"
46      select="document(concat('../base/', $dir, '/other.xml'))/other"/>
47    <xsl:variable name="low-nmu-emails"
48      select="document('../base/low_threshold_nmu.emails.xml')/emails"/>
49    
50  <!-- Those variables controls the todo and problem item concerning  <!-- Those variables controls the todo and problem item concerning
51       standards-version not being up to date -->       standards-version not being up to date -->
52  <xsl:variable name="lastsv" select="'3.7.2'"/>  <xsl:variable name="lastsv" select="'3.8.0'"/>
53  <xsl:variable name="lastmajorsv" select="'3.'"/>  <xsl:variable name="lastmajorsv" select="'3.'"/>
54    
55    <!-- lintian summary -->
56    <xsl:variable name="lin_errs" select="$other/lintian/@errors" />
57    <xsl:variable name="lin_warns" select="$other/lintian/@warnings" />
58    
59  <!-- Named templates aka functions -->  <!-- Named templates aka functions -->
60    
61    <xsl:template name="mk_lintian_url">
62      <!-- convert maintainer/name to follow lintian.debian.org convention -->
63      <xsl:variable name="lintian_pattern" select="concat('àáèéëêòöøîìùñ~/()&#34; ', &quot;'&quot;)"/>
64      <xsl:variable name="lintian_email" select="translate(maintainer/email, $lintian_pattern, '_____________________')"/>
65    
66      <xsl:text>http://lintian.debian.org/reports/maintainer/</xsl:text>
67      <xsl:value-of select="$lintian_email" />
68      <xsl:text>.html#</xsl:text>
69      <xsl:value-of select="$package" />
70    </xsl:template>
71    
72  <xsl:template name="mirror">  <xsl:template name="mirror">
73    <xsl:text>http://ftp.debian.org/debian</xsl:text>    <xsl:text>http://ftp.debian.org/debian</xsl:text>
74  </xsl:template>  </xsl:template>
# Line 80  other-to-%xx, especially % to %25... For Line 112  other-to-%xx, especially % to %25... For
112    </xsl:if>    </xsl:if>
113  </xsl:template>  </xsl:template>
114    
115    <xsl:variable name="escaped-package">
116      <xsl:call-template name="escape-name">
117        <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
118      </xsl:call-template>
119    </xsl:variable>
120    
121  <!-- Strip epoch -->  <!-- Strip epoch -->
122  <xsl:template name="strip-epoch">  <xsl:template name="strip-epoch">
123    <xsl:param name="version"/>    <xsl:param name="version"/>
# Line 95  other-to-%xx, especially % to %25... For Line 133  other-to-%xx, especially % to %25... For
133    <xsl:if test="repository">    <xsl:if test="repository">
134      <tr>      <tr>
135        <td class="labelcell">        <td class="labelcell">
136          <xsl:text>Version Control</xsl:text>          <acronym title="Version Control System">VCS</acronym>
137        </td>        </td>
138        <td class="contentcell">        <td class="contentcell">
         <xsl:if test="repository/vcs[@kind='browser']">  
           <a href="{repository/vcs[@kind='browser']/@url}">  
             <xsl:text>browser</xsl:text>  
           </a>  
           <br />  
         </xsl:if>  
139          <xsl:if test="repository/vcs[@kind!='browser']">          <xsl:if test="repository/vcs[@kind!='browser']">
           <xsl:text>raw: </xsl:text>  
140            <xsl:for-each select="repository/vcs[@kind!='browser']">            <xsl:for-each select="repository/vcs[@kind!='browser']">
141              <xsl:sort select="@kind" />              <xsl:sort select="@kind" />
142              <a href="{@url}">              <a title="access to the raw repository" href="{@url}">
143                <xsl:value-of select="@kind" />                <xsl:value-of select="@kind" />
144              </a>              </a>
145              <xsl:if test="position()!=last()">              <xsl:if test="position()!=last()">
# Line 116  other-to-%xx, especially % to %25... For Line 147  other-to-%xx, especially % to %25... For
147              </xsl:if>              </xsl:if>
148            </xsl:for-each>            </xsl:for-each>
149          </xsl:if>          </xsl:if>
150            <xsl:if test="repository/vcs[@kind='browser']">
151              <xsl:text> (</xsl:text>
152              <a title="web-based repository browsing"
153                href="{repository/vcs[@kind='browser']/@url}">browse</a>
154              <xsl:text>)</xsl:text>
155            </xsl:if>
156        </td>        </td>
157      </tr>      </tr>
158    </xsl:if>    </xsl:if>
159  </xsl:template>  </xsl:template>
160    
161  <xsl:template name="add-maintenance-info">  <xsl:template name="add-maintenance-info">
162      <xsl:param name="email" />
163    <xsl:variable name="dm">    <xsl:variable name="dm">
164      <xsl:if test="dm-upload-allowed and string(dm-upload-allowed)='yes'">      <xsl:if test="dm-upload-allowed and string(dm-upload-allowed)='yes'">
165        <xsl:text>true</xsl:text>        <xsl:text>true</xsl:text>
166      </xsl:if>      </xsl:if>
167    </xsl:variable>    </xsl:variable>
168    <xsl:variable name="lownmu">    <xsl:variable name="lownmu">
169      <xsl:if test="maintainer/low-threshold-nmu      <xsl:if test="$low-nmu-emails/email[text()=$email]">
         and string(maintainer/low-threshold-nmu)='yes'">  
170        <xsl:text>true</xsl:text>        <xsl:text>true</xsl:text>
171      </xsl:if>      </xsl:if>
172    </xsl:variable>    </xsl:variable>
# Line 137  other-to-%xx, especially % to %25... For Line 174  other-to-%xx, especially % to %25... For
174    <xsl:if test="string($dm)!='' or string($lownmu)!=''">    <xsl:if test="string($dm)!='' or string($lownmu)!=''">
175      <tr>      <tr>
176        <td class="labelcell">        <td class="labelcell">
177          <xsl:text>Maintenance info</xsl:text>          <xsl:text>Maintenance</xsl:text>
178        </td>        </td>
179        <td class="contentcell">        <td class="contentcell">
180    
# Line 145  other-to-%xx, especially % to %25... For Line 182  other-to-%xx, especially % to %25... For
182            <span class="dm-tag">            <span class="dm-tag">
183              <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>              <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>
184            </span>            </span>
185              <xsl:text> </xsl:text>
186          </xsl:if>          </xsl:if>
187    
188          <xsl:if test="string($lownmu)!=''">          <xsl:if test="string($lownmu)!=''">
# Line 152  other-to-%xx, especially % to %25... For Line 190  other-to-%xx, especially % to %25... For
190              <a href="http://wiki.debian.org/LowThresholdNmu"><acronym              <a href="http://wiki.debian.org/LowThresholdNmu"><acronym
191                  title="maintainer agrees with Low Threshold NMU, see wiki page for details">LowNMU</acronym></a>                  title="maintainer agrees with Low Threshold NMU, see wiki page for details">LowNMU</acronym></a>
192            </span>            </span>
193              <xsl:text> </xsl:text>
194          </xsl:if>          </xsl:if>
195        </td>        </td>
196      </tr>      </tr>
# Line 164  other-to-%xx, especially % to %25... For Line 203  other-to-%xx, especially % to %25... For
203    <xsl:if test="count($news)>0 and string($news)!=''">    <xsl:if test="count($news)>0 and string($news)!=''">
204      <tr class="titlerow">      <tr class="titlerow">
205      <td class="titlecell">      <td class="titlecell">
206        Latest News <a class="feedlink" href="{$package}/news.rss20.xml">RSS</a>        Latest news <a class="feedlink" href="{$package}/news.rss20.xml">RSS</a>
207      </td></tr>      </td></tr>
208      <tr class="normalrow">      <tr class="normalrow">
209      <td class="contentcell2">      <td class="contentcell2">
210      <ul><xsl:copy-of select="$news"/></ul>      <ul id="news-list"><xsl:copy-of select="$news"/></ul>
211      </td>      </td>
212      </tr>      </tr>
213    </xsl:if>    </xsl:if>
# Line 200  other-to-%xx, especially % to %25... For Line 239  other-to-%xx, especially % to %25... For
239      <xsl:when test="substring(filename,string-length(filename)-6, 7)='diff.gz'">      <xsl:when test="substring(filename,string-length(filename)-6, 7)='diff.gz'">
240        <xsl:text>diff</xsl:text>        <xsl:text>diff</xsl:text>
241      </xsl:when>      </xsl:when>
242      <xsl:when test="substring(filename,string-length(filename)-10, 8)='orig.tar'">      <xsl:when test="substring(filename,string-length(filename)-5, 3)='tar'">
243        <xsl:text>orig</xsl:text>        <xsl:text>orig</xsl:text>
244      </xsl:when>      </xsl:when>
245      <xsl:otherwise><xsl:text></xsl:text></xsl:otherwise>      <xsl:otherwise><xsl:text></xsl:text></xsl:otherwise>
# Line 216  other-to-%xx, especially % to %25... For Line 255  other-to-%xx, especially % to %25... For
255    
256  <xsl:template name="general-information">  <xsl:template name="general-information">
257    <tr class="titlerow">    <tr class="titlerow">
258      <td class="titlecell" colspan="2">      <td class="titlecell" colspan="2">General information</td>
       General information  
     </td>  
259    </tr>    </tr>
260    <tr class="normalrow">    <tr class="normalrow">
261      <td class="labelcell">Latest version</td>      <td class="labelcell">Latest version</td>
# Line 248  other-to-%xx, especially % to %25... For Line 285  other-to-%xx, especially % to %25... For
285        </xsl:call-template>        </xsl:call-template>
286      </td>      </td>
287    </tr>    </tr>
288      <xsl:if test="uploaders">
289        <tr class="normalrow">
290          <td class="labelcell"><a href="http://www.debian.org/doc/manuals/developers-reference/pkgs.html#collaborative-maint">Uploaders</a></td>
291          <td class="contentcell">
292            <xsl:for-each select="uploaders/item">
293              <xsl:element name="a">
294                <xsl:attribute name="href">
295                  <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>
296                  <xsl:call-template name="escape-name">
297                    <xsl:with-param name="text"><xsl:value-of select="email"/></xsl:with-param>
298                  </xsl:call-template>
299                </xsl:attribute>
300                <xsl:value-of select="name"/>
301              </xsl:element>
302              <xsl:text> </xsl:text>
303              <xsl:call-template name="maintainer-email">
304                <xsl:with-param name="email" select="email" />
305              </xsl:call-template>
306              <br />
307            </xsl:for-each>
308        </td></tr>
309      </xsl:if>
310      <xsl:call-template name='add-maintenance-info'>
311        <xsl:with-param name="email" select="maintainer/email" />
312      </xsl:call-template>
313    <tr class="normalrow">    <tr class="normalrow">
314      <td class="labelcell"><a href="http://www.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s-collaborative-maint">Co-Maintainers</a></td>      <xsl:variable name='stdver' select="standards-version" />
315        <td class="labelcell">Conforms to</td>
316      <td class="contentcell">      <td class="contentcell">
317        <xsl:if test="uploaders">        <a title="Debian Policy Manual (version: {$stdver})"
318          <xsl:for-each select="uploaders/item">          href="http://www.debian.org/doc/debian-policy/">
319            <xsl:element name="a">          <xsl:value-of select="$stdver"/>
320              <xsl:attribute name="href">        </a>
321                <xsl:text>http://qa.debian.org/developer.php?login=</xsl:text>      </td>
322                <xsl:call-template name="escape-name">    </tr>
                 <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:if>  
       <xsl:if test="not(uploaders)">  
         <a class="none" title="You should find some co-maintainers ..." name="fake">None</a>  
       </xsl:if>  
       <xsl:call-template name='add-maintenance-info' />  
   </td></tr>  
323    <tr class="normalrow">    <tr class="normalrow">
324      <td class="labelcell">Standards-Version</td>      <td class="labelcell">Priority</td>
325      <td class="contentcell"><xsl:value-of select="standards-version"/></td>      <td class="contentcell"> <xsl:value-of select="priority"/> </td>
326    </tr>    </tr>
327    <tr class="normalrow">    <tr class="normalrow">
328      <td class="labelcell">Priority &amp; Section</td>      <td class="labelcell">Section</td>
329      <td class="contentcell"><xsl:value-of select="priority"/> - <xsl:value-of select="section"/></td>      <td class="contentcell"> <xsl:value-of select="section"/> </td>
330    </tr>    </tr>
331    <xsl:call-template name='add-vcs-info' />    <xsl:call-template name='add-vcs-info' />
332    <xsl:if test="architecture!='any' and architecture!='all'">    <xsl:if test="architecture!='any' and architecture!='all'">
# Line 293  other-to-%xx, especially % to %25... For Line 339  other-to-%xx, especially % to %25... For
339    
340  <xsl:template name="bugs-count">  <xsl:template name="bugs-count">
341    <tr class="titlerow">    <tr class="titlerow">
342      <td class="titlecell" colspan="2">      <td class="titlecell" colspan="2">Bugs count</td>
       Bugs count  
     </td>  
343    </tr>    </tr>
344    <tr class="normalrow" id="bugs_all">    <tr class="normalrow" id="bugs_all">
345      <td class="labelcell">All bugs</td>      <td class="labelcell">All bugs
346           (<xsl:element name="a">
347            <xsl:attribute name="href">
348              <xsl:text>http://people.debian.org/~glandium/bts/</xsl:text>
349              <xsl:value-of select="substring($package, 1, 1)"/>
350              <xsl:text>/</xsl:text>
351              <xsl:value-of select="$escaped-package" />
352              <xsl:text>.png</xsl:text>
353            </xsl:attribute>
354            <xsl:text>graph</xsl:text>
355          </xsl:element>
356          <xsl:text>)</xsl:text>
357        </td>
358      <td class="contentcell">      <td class="contentcell">
359        <xsl:element name="a">        <xsl:element name="a">
360          <xsl:attribute name="href">          <xsl:attribute name="href">
361            <xsl:text>http://bugs.debian.org/src:</xsl:text>            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=no&amp;src=</xsl:text>
362            <xsl:call-template name="escape-name">            <xsl:value-of select="$escaped-package" />
             <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>  
           </xsl:call-template>  
363          </xsl:attribute>          </xsl:attribute>
364          <xsl:if test="$hasother">          <xsl:if test="$hasother">
365            <xsl:value-of select="$other/bugs/@all"/>            <xsl:value-of select="$other/bugs/@all"/>
366          </xsl:if>          </xsl:if>
367        </xsl:element>        </xsl:element>
368          <xsl:if test="$hasother and $other/bugs/@all_m">
369            (<xsl:element name="a">
370              <xsl:attribute name="href">
371                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?repeatmerged=yes&amp;src=</xsl:text>
372                <xsl:value-of select="$escaped-package" />
373              </xsl:attribute>
374              <xsl:value-of select="$other/bugs/@all_m"/>
375            </xsl:element>)
376          </xsl:if>
377      </td>      </td>
378    </tr>    </tr>
379    <tr class="normalrow" id="bugs_rc">    <tr class="normalrow" id="bugs_rc">
# Line 318  other-to-%xx, especially % to %25... For Line 381  other-to-%xx, especially % to %25... For
381      <td class="contentcell">      <td class="contentcell">
382        <xsl:element name="a">        <xsl:element name="a">
383          <xsl:attribute name="href">          <xsl:attribute name="href">
384            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
385            <xsl:call-template name="escape-name">            <xsl:value-of select="$escaped-package" />
386              <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</xsl:text>  
387          </xsl:attribute>          </xsl:attribute>
388          <xsl:if test="$hasother">          <xsl:if test="$hasother">
389            <xsl:value-of select="$other/bugs/@rc"/>            <xsl:value-of select="$other/bugs/@rc"/>
390          </xsl:if>          </xsl:if>
391        </xsl:element>        </xsl:element>
392          <xsl:if test="$hasother and $other/bugs/@rc_m">
393            (<xsl:element name="a">
394              <xsl:attribute name="href">
395                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
396                <xsl:value-of select="$escaped-package" />
397                <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>
398              </xsl:attribute>
399              <xsl:value-of select="$other/bugs/@rc_m"/>
400            </xsl:element>)
401          </xsl:if>
402      </td>      </td>
403    </tr>    </tr>
404    <tr class="normalrow" id="bugs_in">    <tr class="normalrow" id="bugs_in">
405      <td class="labelcell"><span class="indented"><acronym title="Important and Normal">I&amp;N bugs</acronym></span></td>      <td class="labelcell"><span class="indented"><acronym title="Important and Normal">I&amp;N</acronym> bugs</span></td>
406      <td class="contentcell">      <td class="contentcell">
407        <xsl:element name="a">        <xsl:element name="a">
408          <xsl:attribute name="href">          <xsl:attribute name="href">
409            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
410            <xsl:call-template name="escape-name">            <xsl:value-of select="$escaped-package" />
411              <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</xsl:text>  
412          </xsl:attribute>          </xsl:attribute>
413          <xsl:if test="$hasother">          <xsl:if test="$hasother">
414            <xsl:value-of select="$other/bugs/@normal"/>            <xsl:value-of select="$other/bugs/@normal"/>
415          </xsl:if>          </xsl:if>
416        </xsl:element>        </xsl:element>
417          <xsl:if test="$hasother and $other/bugs/@normal_m">
418            (<xsl:element name="a">
419              <xsl:attribute name="href">
420                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
421                <xsl:value-of select="$escaped-package" />
422                <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>
423              </xsl:attribute>
424              <xsl:value-of select="$other/bugs/@normal_m"/>
425            </xsl:element>)
426          </xsl:if>
427      </td>      </td>
428    </tr>    </tr>
429    <tr class="normalrow" id="bugs_mw">    <tr class="normalrow" id="bugs_mw">
430      <td class="labelcell"><span class="indented"><acronym title="Minor and Wishlist">M&amp;W bugs</acronym></span></td>      <td class="labelcell"><span class="indented"><acronym title="Minor and Wishlist">M&amp;W</acronym> bugs</span></td>
431      <td class="contentcell">      <td class="contentcell">
432        <xsl:element name="a">        <xsl:element name="a">
433          <xsl:attribute name="href">          <xsl:attribute name="href">
434            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
435            <xsl:call-template name="escape-name">            <xsl:value-of select="$escaped-package" />
436              <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</xsl:text>  
437          </xsl:attribute>          </xsl:attribute>
438          <xsl:if test="$hasother">          <xsl:if test="$hasother">
439            <xsl:value-of select="$other/bugs/@wishlist"/>            <xsl:value-of select="$other/bugs/@wishlist"/>
440          </xsl:if>          </xsl:if>
441        </xsl:element>        </xsl:element>
442          <xsl:if test="$hasother and $other/bugs/@wishlist_m">
443            (<xsl:element name="a">
444              <xsl:attribute name="href">
445                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
446                <xsl:value-of select="$escaped-package" />
447                <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>
448              </xsl:attribute>
449              <xsl:value-of select="$other/bugs/@wishlist_m"/>
450            </xsl:element>)
451          </xsl:if>
452      </td>      </td>
453    </tr>    </tr>
454    <tr class="normalrow" id="bugs_fp">    <tr class="normalrow" id="bugs_fp">
455      <td class="labelcell"><span class="indented"><acronym title="Fixed and Pending">F&amp;P bugs</acronym></span></td>      <td class="labelcell"><span class="indented"><acronym title="Fixed and Pending">F&amp;P</acronym> bugs</span></td>
456      <td class="contentcell">      <td class="contentcell">
457        <xsl:element name="a">        <xsl:element name="a">
458          <xsl:attribute name="href">          <xsl:attribute name="href">
459            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>            <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
460            <xsl:call-template name="escape-name">            <xsl:value-of select="$escaped-package" />
461              <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</xsl:text>  
462          </xsl:attribute>          </xsl:attribute>
463          <xsl:if test="$hasother">          <xsl:if test="$hasother">
464            <xsl:value-of select="$other/bugs/@fixed"/>            <xsl:value-of select="$other/bugs/@fixed"/>
465          </xsl:if>          </xsl:if>
466        </xsl:element>        </xsl:element>
467          <xsl:if test="$hasother and $other/bugs/@fixed_m">
468            (<xsl:element name="a">
469              <xsl:attribute name="href">
470                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
471                <xsl:value-of select="$escaped-package" />
472                <xsl:text>&amp;archive=no&amp;pend-inc=pending-fixed&amp;pend-inc=fixed&amp;repeatmerged=yes</xsl:text>
473              </xsl:attribute>
474              <xsl:value-of select="$other/bugs/@fixed_m"/>
475            </xsl:element>)
476          </xsl:if>
477      </td>      </td>
478    </tr>    </tr>
479      <xsl:if test="$other/bugs/@gift > 0">
480        <tr class="normalrow" id="bugs_gift">
481          <td class="labelcell"><span class="indented"><a
482                href="http://wiki.debian.org/qa.debian.org/GiftTag">Gift</a>
483              bugs</span></td>
484          <td class="contentcell">
485            <xsl:element name="a">
486              <xsl:attribute name="href">
487                <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=</xsl:text>
488                <xsl:value-of select="$escaped-package" />
489                <xsl:text>&amp;users=debian-qa@lists.debian.org;tag=gift</xsl:text>
490              </xsl:attribute>
491              <xsl:value-of select="$other/bugs/@gift" />
492            </xsl:element>
493          </td>
494        </tr>
495      </xsl:if>
496  </xsl:template>  </xsl:template>
497    
498  <xsl:template name="pts-subscription">  <xsl:template name="pts-subscription">
499    <tr class="titlerow">    <tr class="titlerow">
500      <td class="titlecell" colspan="2">      <td class="titlecell" colspan="2">
501        <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        <a class="titlelink" href="http://www.debian.org/doc/manuals/developers-reference/resources.html#pkg-tracking-system"><acronym title="Package Tracking System">PTS</acronym></a> subscription
502    </td></tr>    </td></tr>
503    <tr class="normalrow">    <tr class="normalrow">
504      <td class="labelcell">Subscribers count</td>      <td class="labelcell">Subscribers count</td>
# Line 404  other-to-%xx, especially % to %25... For Line 516  other-to-%xx, especially % to %25... For
516              <option value="unsubscribe">Unsubscribe</option>              <option value="unsubscribe">Unsubscribe</option>
517              <option value="advanced">Advanced mode</option>              <option value="advanced">Advanced mode</option>
518            </select>            </select>
519            <input type="text" name="email" size="15" value="your email" onFocus="if(email.value=='your email'){{email.value=''}}"/>            <input type="text" name="email" size="15" value="your email"
520                onfocus="if(email.value=='your email'){{email.value=''}}"/>
521            <input type="submit" name="submit" value="Send"/>            <input type="submit" name="submit" value="Send"/>
522          </p>          </p>
523        </form>        </form>
# Line 414  other-to-%xx, especially % to %25... For Line 527  other-to-%xx, especially % to %25... For
527    
528  <xsl:template name="binary-packages">  <xsl:template name="binary-packages">
529    <tr class="titlerow">    <tr class="titlerow">
530      <td class="titlecell" colspan="2">      <td class="titlecell" colspan="2">Binary packages</td>
531        Binary package(s)    </tr>
   </td></tr>  
532    <tr class="normalrow">    <tr class="normalrow">
533      <td class="normalcell" colspan="2" style="text-align: left">      <td class="normalcell" colspan="2" style="text-align: left">
534        <ul>        <ul>
535          <xsl:for-each select="binary/item">          <xsl:for-each select="binary/item">
536            <xsl:sort select="text()"/>            <xsl:sort select="text()"/>
537            <xsl:variable name="pkg" select="text()"/>            <xsl:variable name="pkg" select="text()"/>
538              <xsl:variable name="tooltip"
539                select="concat($pkg, ': ',
540                    $other/descriptions/shortdesc[@package=$pkg])" />
541            <li class="binpkg">            <li class="binpkg">
542              <a class="binpkg" href="http://packages.debian.org/{text()}"><xsl:value-of select="text()"/></a>              <a class="binpkg" title="{$tooltip}"
543                  href="http://packages.debian.org/{text()}"><xsl:value-of select="text()"/></a>
544              <span style="font-size: 70%">              <span style="font-size: 70%">
545                (<a href="http://bugs.debian.org/{text()}"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@all"/> bugs</a>:                (<a href="http://bugs.debian.org/{text()}"><xsl:value-of select="$other/bugs/item[@name=$pkg]/@all"/> bugs</a>:
546    
# Line 492  other-to-%xx, especially % to %25... For Line 608  other-to-%xx, especially % to %25... For
608      <tr class="normalrow">      <tr class="normalrow">
609        <td class="labelcell"><a href="http://www.debian.org/releases/sarge/">Oldstable</a></td>        <td class="labelcell"><a href="http://www.debian.org/releases/sarge/">Oldstable</a></td>
610        <td class="contentcell">        <td class="contentcell">
611          <xsl:value-of select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/>          <a href="http://packages.debian.org/source/oldstable/{$package}"><xsl:value-of
612                select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/></a>
613        </td>        </td>
614      </tr>      </tr>
615    </xsl:if>    </xsl:if>
# Line 510  other-to-%xx, especially % to %25... For Line 627  other-to-%xx, especially % to %25... For
627      <tr class="normalrow">      <tr class="normalrow">
628        <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>        <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>
629        <td class="contentcell">        <td class="contentcell">
630          <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>          <a href="http://packages.debian.org/source/stable/{$package}"><xsl:value-of
631                select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/></a>
632        </td>        </td>
633      </tr>      </tr>
634    </xsl:if>    </xsl:if>
# Line 522  other-to-%xx, especially % to %25... For Line 640  other-to-%xx, especially % to %25... For
640        </td>        </td>
641      </tr>      </tr>
642    </xsl:if>    </xsl:if>
643    <xsl:if test="$hass-p-u">    <xsl:if test="$hasstable-proposed-updates">
644      <tr class="normalrow">      <tr class="normalrow">
645        <td class="labelcell"><small>Stable Proposed Updates</small></td>        <td class="labelcell"><small>Stable Proposed Updates</small></td>
646        <td class="contentcell">        <td class="contentcell">
647          <xsl:value-of select="document(concat('../base/', $dir, '/s-p-u.xml'))/source/version"/>          <xsl:value-of select="document(concat('../base/', $dir,
648                '/stable-proposed-updates.xml'))/source/version" />
649        </td>        </td>
650      </tr>      </tr>
651    </xsl:if>    </xsl:if>
# Line 536  other-to-%xx, especially % to %25... For Line 655  other-to-%xx, especially % to %25... For
655      <tr class="normalrow">      <tr class="normalrow">
656        <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>        <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>
657        <td class="contentcell">        <td class="contentcell">
658          <xsl:value-of select="document(concat('../base/', $dir, '/testing.xml'))/source/version"/>          <a href="http://packages.debian.org/source/testing/{$package}"><xsl:value-of
659                select="document(concat('../base/', $dir, '/testing.xml'))/source/version"/></a>
660        </td>        </td>
661      </tr>      </tr>
662    </xsl:if>    </xsl:if>
# Line 548  other-to-%xx, especially % to %25... For Line 668  other-to-%xx, especially % to %25... For
668        </td>        </td>
669      </tr>      </tr>
670    </xsl:if>    </xsl:if>
671    <xsl:if test="$hast-p-u">    <xsl:if test="$hastesting-proposed-updates">
672      <tr class="normalrow">      <tr class="normalrow">
673        <td class="labelcell"><small>Testing Proposed Updates</small></td>        <td class="labelcell"><small>Testing Proposed Updates</small></td>
674        <td class="contentcell">        <td class="contentcell">
675          <xsl:value-of select="document(concat('../base/', $dir, '/t-p-u.xml'))/source/version"/>          <xsl:value-of select="document(concat('../base/', $dir,
676                '/testing-proposed-updates.xml'))/source/version" />
677        </td>        </td>
678      </tr>      </tr>
679    </xsl:if>    </xsl:if>
# Line 562  other-to-%xx, especially % to %25... For Line 683  other-to-%xx, especially % to %25... For
683      <tr class="normalrow">      <tr class="normalrow">
684        <td class="labelcell">Unstable</td>        <td class="labelcell">Unstable</td>
685        <td class="contentcell">        <td class="contentcell">
686          <xsl:value-of select="document(concat('../base/', $dir, '/unstable.xml'))/source/version"/>          <a href="http://packages.debian.org/source/unstable/{$package}"><xsl:value-of
687                select="document(concat('../base/', $dir, '/unstable.xml'))/source/version"/></a>
688        </td>        </td>
689      </tr>      </tr>
690    </xsl:if>    </xsl:if>
# Line 572  other-to-%xx, especially % to %25... For Line 694  other-to-%xx, especially % to %25... For
694      <tr class="normalrow">      <tr class="normalrow">
695        <td class="labelcell">Experimental</td>        <td class="labelcell">Experimental</td>
696        <td class="contentcell">        <td class="contentcell">
697          <xsl:value-of select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/>          <a href="http://packages.debian.org/source/experimental/{$package}"><xsl:value-of
698                select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/></a>
699        </td>        </td>
700      </tr>      </tr>
701    </xsl:if>    </xsl:if>
# Line 598  other-to-%xx, especially % to %25... For Line 721  other-to-%xx, especially % to %25... For
721    </xsl:if>    </xsl:if>
722  </xsl:template>  </xsl:template>
723    
724  <xsl:template name="patches">  <xsl:template name="ubuntu">
725    <!-- Patches list [FG] -->    <!-- Patches list [FG] -->
726    <xsl:if test="$other/@patches='yes'">    <xsl:if test="$other/@ubuntu='yes'">
727      <tr class="titlerow">      <tr class="titlerow">
728        <td class="titlecell" colspan="2">        <td class="titlecell" colspan="2"><a
729          Patches            title="Information about Ubuntu for Debian Developers"
730      </td></tr>            href="https://wiki.ubuntu.com/Ubuntu/ForDebianDevelopers">Ubuntu ...</a>
731          </td>
732        </tr>
733      <tr>      <tr>
734        <td class="contentcell" colspan="2" style="text-align: left">        <td class="contentcell" colspan="2" style="text-align: left">
735          <ul>          <ul>
           <xsl:for-each select="$other/patches/item">  
736              <li>              <li>
737                <a href="{$other/patches/item/@url}">Patch from <xsl:value-of select="$other/patches/item/@distro"/> for version <xsl:value-of select="$other/patches/item/@version"/></a>                      Version: <a href="{$other/ubuntu/@url}"><xsl:value-of select="$other/ubuntu/@version"/></a>
738              </li>              </li>
739            </xsl:for-each>            <xsl:if test="$other/ubuntu/patch">
           <xsl:if test="$other/bugs/@patch!='0'">  
740              <li>              <li>
741                <xsl:element name="a">                      <a href="{$other/ubuntu/patch/@url}">Patch for version <xsl:value-of select="$other/ubuntu/patch/@version"/></a>
742                  <xsl:attribute name="href">              </li>
743                    <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</xsl:text>            </xsl:if>
744                    <xsl:call-template name="escape-name">            <xsl:if test="$other/ubuntu/bugs">
745                      <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <li>
746                    </xsl:call-template>                      <a href="{$other/ubuntu/bugs/@url}"><xsl:value-of select="$other/ubuntu/bugs/@count"/> open bugs</a>
                   <xsl:text>&amp;include=tags:patch&amp;exclude=tags:pending&amp;pend-exc=done</xsl:text>  
                 </xsl:attribute>  
                 Patches from BTS (<xsl:value-of select="$other/bugs/@patch"/>)  
               </xsl:element>  
747              </li>              </li>
748            </xsl:if>            </xsl:if>
749          </ul>          </ul>
# Line 641  other-to-%xx, especially % to %25... For Line 760  other-to-%xx, especially % to %25... For
760    <tr>    <tr>
761      <td class="contentcell" colspan="2" style="text-align: left">      <td class="contentcell" colspan="2" style="text-align: left">
762        <ul>        <ul>
763            <xsl:if test="homepage">
764              <li> <a href="{homepage}">Upstream homepage</a> </li>
765            </xsl:if>
766          <li>          <li>
767            <xsl:element name="a">            <xsl:element name="a">
768              <xsl:attribute name="href">              <xsl:attribute name="href">
# Line 662  other-to-%xx, especially % to %25... For Line 784  other-to-%xx, especially % to %25... For
784          </li>          </li>
785          <xsl:if test="architecture!='all'">          <xsl:if test="architecture!='all'">
786            <li>            <li>
787              <xsl:element name="a">              <xsl:text>Buildd: </xsl:text>
788                <xsl:attribute name="href">              <a href="http://buildd.debian.org/pkg.cgi?pkg={$escaped-package}"
789                  <xsl:text>http://buildd.debian.org/pkg.cgi?pkg=</xsl:text>                title="buildd.debian.org build logs">logs</a>
790                  <xsl:call-template name="escape-name">              <xsl:text>, </xsl:text>
791                    <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>              <!-- <a href="http://people.debian.org/~igloo/status.php?packages={$escaped-package}"
792                  </xsl:call-template>                title="igloo's build logs on people.debian.org">more</a> -->
793                </xsl:attribute>              <a href="http://buildd.debian.org/~jeroen/status/package.php?p={$escaped-package}"
794                <xsl:text>Buildd logs</xsl:text>                title="jeroen's build logs on buildd.debian.org">more</a>
795              </xsl:element>              <xsl:text>, </xsl:text>
796              <xsl:text> (</xsl:text>              <a href="http://experimental.debian.net/build.php?pkg={$escaped-package}"
797              <xsl:element name="a">                title="experimental.debian.net build logs">exp</a>
798                <xsl:attribute name="href">              <xsl:text>, </xsl:text>
799                  <xsl:text>http://experimental.debian.net/build.php?pkg=</xsl:text>              <a href="http://buildd.debian-ports.org/status/package.php?p={$escaped-package}"
800                  <xsl:call-template name="escape-name">                title="debian ports build logs">ports</a>
                   <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>  
                 </xsl:call-template>  
               </xsl:attribute>  
               <xsl:text>more</xsl:text>  
             </xsl:element>  
             <xsl:text>)</xsl:text>  
801            </li>            </li>
802          </xsl:if>          </xsl:if>
803          <!-- DISABLED until ddtp.debian.org is back up          <!-- DISABLED until ddtp.debian.org is back up
# Line 718  other-to-%xx, especially % to %25... For Line 834  other-to-%xx, especially % to %25... For
834              Debcheck on:              Debcheck on:
835              <xsl:if test="$hasunstable">              <xsl:if test="$hasunstable">
836                <xsl:text> </xsl:text>                <xsl:text> </xsl:text>
837                <xsl:element name="a">                <a href="http://qa.debian.org/debcheck.php?dist=unstable&amp;package={$escaped-package}">unstable</a>
                 <xsl:attribute name="href">  
                   <xsl:text>http://qa.debian.org/debcheck.php?dist=unstable&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>  
                 <xsl:text>unstable</xsl:text>  
               </xsl:element>  
838              </xsl:if>              </xsl:if>
839              <xsl:if test="$hastesting">              <xsl:if test="$hastesting">
840                <xsl:text> </xsl:text>                <xsl:text> </xsl:text>
841                <xsl:element name="a">                <a href="http://qa.debian.org/debcheck.php?dist=testing&amp;package={$escaped-package}">testing</a>
                 <xsl:attribute name="href">  
                   <xsl:text>http://qa.debian.org/debcheck.php?dist=testing&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>  
                 <xsl:text>testing</xsl:text>  
               </xsl:element>  
842              </xsl:if>              </xsl:if>
843              <xsl:if test="$hasstable">              <xsl:if test="$hasstable">
844                <xsl:text> </xsl:text>                <xsl:text> </xsl:text>
845                <xsl:element name="a">                <a href="http://qa.debian.org/debcheck.php?dist=stable&amp;package={$escaped-package}">stable</a>
846                  <xsl:attribute name="href">              </xsl:if>
847                    <xsl:text>http://qa.debian.org/debcheck.php?dist=stable&amp;package=</xsl:text>            </li>
848                    <xsl:call-template name="escape-name">          </xsl:if>
849                      <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>          <xsl:if test="$other/@lintian='yes'">
850                    </xsl:call-template>            <xsl:variable name="lintian_url"><xsl:call-template name="mk_lintian_url" /></xsl:variable>
851                  </xsl:attribute>            <li>
852                  <xsl:text>stable</xsl:text>              <a href="{$lintian_url}">Lintian report</a>
853                </xsl:element>              <xsl:if test="$lin_errs + $lin_warns > 0">
854                  <xsl:text> </xsl:text>
855                  <small><span title="(errors, warnings)">(<xsl:value-of select="$lin_errs" />,
856                      <xsl:value-of select="$lin_warns" />)</span></small>
857              </xsl:if>              </xsl:if>
858            </li>            </li>
859          </xsl:if>          </xsl:if>
         <!-- convert maintainer/name to follow lintian.debian.org convention [FG] -->  
         <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-~/()&#34; ', &quot;'&quot;)"/>  
         <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '_____________________')"/>  
         <li><a href="http://lintian.debian.org/reports/m{$_name}.html#{$package}">Lintian report</a></li>  
         <li>  
           <xsl:element name="a">  
             <xsl:attribute name="href">  
               <xsl:text>http://qa.debian.org/developer.php?popcon=</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:text>Popcon stats</xsl:text>  
           </xsl:element>  
         </li>  
860          <li>          <li>
861            <xsl:element name="a">            <a href="http://qa.debian.org/developer.php?popcon={$escaped-package}">Popcon stats</a>
             <xsl:attribute name="href">  
               <xsl:text>http://svnbuildstat.debian.net/packages/info/</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:text>Svnbuildstat</xsl:text>  
           </xsl:element>  
862          </li>          </li>
863            <xsl:if test="$other/@svnbuildstat='yes'">
864              <li>
865                <a href="http://svnbuildstat.debian.net/packages/info/{$escaped-package}">Svnbuildstat</a>
866              </li>
867            </xsl:if>
868        </ul>        </ul>
869      </td>      </td>
870    </tr>    </tr>
# Line 787  other-to-%xx, especially % to %25... For Line 872  other-to-%xx, especially % to %25... For
872    
873  <xsl:template name="package-files">  <xsl:template name="package-files">
874    <tr class="titlerow">    <tr class="titlerow">
875      <td class="titlecell" colspan="2">      <td class="titlecell" colspan="2">Source package</td>
876        Package files    </tr>
   </td></tr>  
877    <tr class="titlerow">    <tr class="titlerow">
878      <td class="labelcell">      <td class="labelcell">
879        <xsl:element name="a">        <xsl:element name="a">
# Line 799  other-to-%xx, especially % to %25... For Line 883  other-to-%xx, especially % to %25... For
883            <xsl:value-of select="directory"/>            <xsl:value-of select="directory"/>
884            <xsl:text>/</xsl:text>            <xsl:text>/</xsl:text>
885          </xsl:attribute>          </xsl:attribute>
886          <xsl:text>Source files</xsl:text>          <xsl:text>Files</xsl:text>
887        </xsl:element>        </xsl:element>
888      </td>      </td>
889      <td class="contentcell" id="src_files">      <td class="contentcell" id="src_files">
# Line 843  other-to-%xx, especially % to %25... For Line 927  other-to-%xx, especially % to %25... For
927    
928  <xsl:template name="todo-list">  <xsl:template name="todo-list">
929    <xsl:variable name="todo">    <xsl:variable name="todo">
930      <xsl:if test="@nmu">      <xsl:call-template name="issue-nmu" />
931        <li>Incorporate and acknowledge the changes from the non maintainer upload.</li>      <xsl:call-template name="issue-lintian" />
932      </xsl:if>      <xsl:call-template name="issue-mentors-pending" />
933      <xsl:if test="not(uploaders)and(priority='standard' or priority='required' or priority='important')">      <xsl:call-template name="issue-comaintenance" />
934        <li>The package is of priority standard or higher, you should really find some co-maintainers.</li>      <xsl:call-template name="issue-outdate-stdver" />
935      </xsl:if>      <xsl:call-template name="issue-new-upstream" />
936      <xsl:if test="not(starts-with(standards-version, $lastsv))">      <xsl:call-template name="issue-patches" />
       <li>The package should be updated to follow the last version of  
         <a href="http://www.debian.org/doc/debian-policy/">Debian Policy</a> (Standards-Version  
         <xsl:value-of select="$lastsv"/> instead of  
         <xsl:value-of select="standards-version"/>).</li>  
     </xsl:if>  
937      <xsl:if test="$hasother">      <xsl:if test="$hasother">
938        <xsl:for-each select="$other/todo/item">        <xsl:for-each select="$other/todo/item">
939          <xsl:call-template name="outputitem"/>          <xsl:call-template name="outputitem" />
940        </xsl:for-each>        </xsl:for-each>
       <!-- new upstream version goes in todo [FG] -->  
       <xsl:if test="$other/@watch='yes' and $other/watch/@new!='0'">  
         <li>A new upstream version was found:  
           (<xsl:value-of select="$other/watch/@new"/>). <a href="{$other/watch/@url}"><xsl:value-of select="$other/watch/@url"/></a></li>  
       </xsl:if>  
       <xsl:if test="$other/bugs/@patch!='0'">  
         <li>The Bug Tracking System contains  
           <xsl:element name="a">  
             <xsl:attribute name="href">  
               <xsl:text>http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data=</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;include=tags:patch&amp;exclude=tags:pending&amp;pend-exc=done</xsl:text>  
             </xsl:attribute>  
             <xsl:value-of select="$other/bugs/@patch"/> patch<xsl:if test="$other/bugs/@patch!='1'">es</xsl:if>  
           </xsl:element>, you should include  
           <xsl:if test="$other/bugs/@patch!='1'">them</xsl:if>  
           <xsl:if test="$other/bugs/@patch='1'">it</xsl:if>.  
         </li>  
       </xsl:if>  
941      </xsl:if>      </xsl:if>
942    </xsl:variable>    </xsl:variable>
943    <xsl:if test="count($todo)>0 and string($todo)!=''">    <xsl:if test="count($todo)>0 and string($todo)!=''">
944      <tr class="titlerow">      <tr class="titlerow">
945        <td class="titlecell" id="todo">        <td class="titlecell" id="todo">Todo</td>
946          Todo      </tr>
     </td></tr>  
947      <tr class="normalrow">      <tr class="normalrow">
948        <td class="contentcell2">        <td class="contentcell2"><ul><xsl:copy-of select="$todo"/></ul></td>
         <ul>  
           <xsl:copy-of select="$todo"/>  
         </ul>  
       </td>  
949      </tr>      </tr>
950    </xsl:if>    </xsl:if>
951  </xsl:template>  </xsl:template>
952    
953  <xsl:template name="problems">  <xsl:template name="problems">
954    <xsl:variable name="problems">    <xsl:variable name="problems">
955      <xsl:if test="$hasexcuse and document(concat('../base/', $dir, '/excuse.xml'))/excuse/@problematic">      <xsl:call-template name="issue-testing-excuses" />
956        <li>The package has not yet entered <a      <xsl:call-template name="issue-ancient-stdver" />
957            href="http://ftp-master.debian.org/testing/update_excuses.html.gz#{$package}">testing</a>      <xsl:call-template name="issue-item-dead-package" />
958          even though the <xsl:value-of select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/@limit"/>-day      <xsl:call-template name="issue-item-override-disparity" />
959          delay is over.      <xsl:call-template name="issue-item-help-bugs" />
960          <xsl:element name="a">      <xsl:call-template name="issue-item-wnpp" />
961            <xsl:attribute name="href">      <!-- <xsl:call-template name="issue-item-watch-failure" /> -->
962              <xsl:text>http://bjorn.haxx.se/debian/testing.pl?package=</xsl:text>      <xsl:call-template name="issue-item-dehs-failure" />
             <xsl:call-template name="escape-name">  
               <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>  
             </xsl:call-template>  
           </xsl:attribute>  
           Check why  
         </xsl:element>  
         .</li>  
     </xsl:if>  
     <xsl:if test="not(starts-with(standards-version, $lastmajorsv))">  
       <li>The package is severly out of date with respect to the Debian  
         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>  
963      <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>  
   
       <!-- uscan output if present [FG] -->  
       <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>  
   
       <!-- Misc problems reported -->  
964        <xsl:for-each select="$other/problems/item">        <xsl:for-each select="$other/problems/item">
965          <xsl:call-template name="outputitem"/>          <xsl:call-template name="outputitem"/>
966        </xsl:for-each>        </xsl:for-each>
# Line 1068  other-to-%xx, especially % to %25... For Line 968  other-to-%xx, especially % to %25... For
968    </xsl:variable>    </xsl:variable>
969    <xsl:if test="count($problems)>0 and string($problems)!=''">    <xsl:if test="count($problems)>0 and string($problems)!=''">
970      <tr class="titlerow">      <tr class="titlerow">
971        <td class="titlecell" id="problems">        <td class="titlecell" id="problems">Problems</td>
972          Problems      </tr>
     </td></tr>  
973      <tr class="normalrow">      <tr class="normalrow">
974        <td class="contentcell2">        <td class="contentcell2"><ul><xsl:copy-of select="$problems"/></ul></td>
         <ul><xsl:copy-of select="$problems"/></ul>  
       </td>  
975      </tr>      </tr>
976    </xsl:if>    </xsl:if>
977  </xsl:template>  </xsl:template>
978    
979  <xsl:template name="testing-status">  <xsl:template name="testing-status">
980    <xsl:if test="$hasexcuse">    <xsl:if test="$hasexcuse or $other/@transitions='yes'">
981      <tr class="titlerow">      <tr class="titlerow">
982        <td class="titlecell">        <td class="titlecell">
983          Testing Status          Testing status
984      </td></tr>      </td></tr>
985      </xsl:if>
986      <xsl:if test="$other/@transitions='yes'">
987        <xsl:variable name="translist">
988          <xsl:for-each select="$other/transitions/transition">
989            <xsl:value-of select="@name" />
990            <xsl:if test="position() != last()">
991              <xsl:text> </xsl:text>
992            </xsl:if>
993          </xsl:for-each>
994        </xsl:variable>
995        <xsl:variable name="transno" select="count($other/transitions/transition)" />
996      <tr class="normalrow">      <tr class="normalrow">
997        <td class="contentcell2" style="text-align: left">        <td class="contentcell2" style="text-align: left">
998          <ul>          <ul>
999            <xsl:for-each select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/item">            <!-- XXX unappropriate <ul>, just to make the text looks like other
1000              <xsl:call-template name="outputitem"/>              boxes, should be fixed on the CSS side (getting rid of <ul>) -->
1001            </xsl:for-each>                <li>This package is part of <em><xsl:value-of select="$transno" />
1002          </ul>                    ongoing testing transition<xsl:if test="$transno != '1'">s</xsl:if>
1003        </td>                  </em> (namely: <tt><xsl:value-of select="$translist" /></tt>). For
1004      </tr>                  more information see the
1005    </xsl:if>                  <a href="http://ftp-master.debian.org/transitions.yaml">transition
1006  </xsl:template>                    status file</a>.<br />
1007                    <em>Uploads to unstable will be rejected</em> while transitions are
1008  <xsl:template name="static-info">                  ongoing; you might want to upload to experimental in the
1009    <xsl:call-template name="output-static">                  meantime, or contact <tt><a href="mailto:debian-release@lists.debian.org">debian-release</a></tt>
1010      <xsl:with-param name="static" select="$static" />                  if an upload is really necessary.
1011    </xsl:call-template>                </li>
1012  </xsl:template>              </ul>
1013              </td>
1014            </tr>
1015          </xsl:if>
1016          <xsl:if test="$hasexcuse">
1017            <tr class="normalrow">
1018              <td class="contentcell2" style="text-align: left">
1019                <a title="reasons why the package is not moving to testing"
1020                  href="http://qa.debian.org/excuses.php?package={$package}">Excuses</a>:
1021                <ul class="testing-excuses">
1022                  <xsl:for-each select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/item">
1023                    <xsl:call-template name="outputitem"/>
1024                  </xsl:for-each>
1025                </ul>
1026              </td>
1027            </tr>
1028          </xsl:if>
1029        </xsl:template>
1030    
1031  <xsl:template name="latest-news">      <xsl:template name="static-info">
1032    <xsl:call-template name="output-news">        <xsl:call-template name="output-static">
1033      <xsl:with-param name="news" select="$news" />          <xsl:with-param name="static" select="$static" />
1034    </xsl:call-template>        </xsl:call-template>
1035  </xsl:template>      </xsl:template>
1036    
1037  <xsl:variable name="static">      <xsl:template name="latest-news">
1038    <xsl:if test="$hasnews">        <xsl:call-template name="output-news">
1039      <xsl:for-each select="document(concat('../base/', $dir, '/news.xml'))/news/static/item">          <xsl:with-param name="news" select="$news" />
1040        <xsl:call-template name="outputitem"/>        </xsl:call-template>
1041      </xsl:for-each>      </xsl:template>
   </xsl:if>  
 </xsl:variable>  
1042    
1043  <xsl:variable name="news">      <xsl:variable name="static">
1044    <xsl:if test="$hasnews">        <xsl:if test="$hasnews">
1045      <xsl:for-each select="document(concat('../base/', $dir, '/news.xml'))/news/news/item">          <xsl:for-each select="document(concat('../base/', $dir, '/news.xml'))/news/static/item">
1046        <xsl:call-template name="outputitem"/>            <xsl:call-template name="outputitem"/>
1047      </xsl:for-each>          </xsl:for-each>
1048    </xsl:if>        </xsl:if>
1049  </xsl:variable>      </xsl:variable>
1050    
1051  <!-- All the work is done in a single template -->      <xsl:variable name="news">
1052  <xsl:template match="source">        <xsl:if test="$hasnews">
1053            <xsl:for-each select="document(concat('../base/', $dir, '/news.xml'))/news/news/item">
1054              <xsl:call-template name="outputitem"/>
1055            </xsl:for-each>
1056          </xsl:if>
1057        </xsl:variable>
1058    
1059    <!-- Start of html -->      <!-- All the work is done in a single template -->
1060    <xsl:text disable-output-escaping="yes">      <xsl:template match="source">
   &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"&gt;  
   </xsl:text>  
   <html>  
   <head>  
   <meta name="ROBOTS" content="NOFOLLOW"/>  
   <link type="text/css" title="Default" rel="stylesheet" href="../common/pts.css"/>  
   <link type="text/css" title="Standard link rendering" rel="alternate stylesheet" href="../common/pts2.css"/>  
   <link type="text/css" title="Compact rendering" rel="alternate stylesheet" href="../common/compact.css"/>  
   <xsl:if test="count($news)>0 and string($news)!=''">  
     <link rel="alternate" type="application/rss+xml" title="RSS"  
       href="{$package}/news.rss20.xml" />  
   </xsl:if>  
   <title>Overview of <xsl:value-of select="$package"/> source package</title>  
   </head>  
   <body>  
   
   <form method="get" action="/common/index.html" style="float: right;">  
   <!-- this link should make lynx/links happy [FG] -->  
   <p>Jump to package (<a href="/">home page</a>): <br/>  
   <input type="text" name="src" value=""/></p>  
   </form>  
   <h1>Overview of  
   <xsl:element name="a">  
     <xsl:attribute name="href">  
       <xsl:text>http://packages.debian.org/src:</xsl:text>  
        <xsl:value-of select="$package"/>  
     </xsl:attribute>  
    <xsl:value-of select="$package"/>  
   </xsl:element>  
   source package</h1>  
1061    
1062    <div id="body">        <!-- Start of html -->
1063    <xsl:choose>        <html>
1064    <xsl:when test="$removed='yes'">          <head>
1065    <!-- REMOVED PACKAGE -->            <meta name="ROBOTS" content="NOFOLLOW"/>
1066    <p>This package is not part of any Debian distribution. Thus you won't            <link type="text/css" title="User selected" rel="stylesheet" href="../common/default.css"/>
1067    find much information here. The package is either very new and hasn't            <link type="text/css" title="Official" rel="alternate stylesheet" href="../common/revamp.css"/>
1068    appeared on mirrors yet, or it's an old package that eventually got removed.            <link type="text/css" title="Legacy PTS" rel="alternate stylesheet" href="../common/pts.css"/>
1069    The old news are kept for historic purpose only.</p>            <link type="text/css" title="Compact rendering" rel="alternate stylesheet" href="../common/compact.css"/>
1070              <script type="text/javascript" src="../common/pts.js"></script>
1071    <table class="righttable">            <xsl:if test="count($news)>0 and string($news)!=''">
1072      <xsl:call-template name="static-info" />              <link rel="alternate" type="application/rss+xml" title="RSS"
1073      <xsl:call-template name="latest-news" />                href="{$package}/news.rss20.xml" />
1074    </table>            </xsl:if>
1075              <title>Overview of <xsl:value-of select="$package"/> source package</title>
1076    <!-- END REMOVED PACKAGE -->          </head>
1077    </xsl:when>          <body onload="javascript:onLoad();">
1078    <xsl:otherwise>  
1079    <!-- NON REMOVED PACKAGE -->            <div id="quickforms" style="float: right;">
1080                <form method="get" action="/common/index.html">
1081    <table class="containertable">                <p><span title="Jump to package">Go:</span>
1082    <tr class="containerrow" valign="top">                  <input type="text" name="src" value=""/></p>
1083    <td class="containercell">              </form>
1084    <!-- LEFT SIDE -->              <form id="csspref-form" method="get" action="/common/set-csspref.php">
1085    <table class="lefttable">                <p>Switch style: <select name="csspref" onchange="javascript:onChangeStyle();">
1086      <xsl:call-template name="general-information" />                    <option value="revamp.css">Default</option>
1087      <xsl:call-template name="bugs-count" />                    <option value="compact.css">Compact</option>
1088      <xsl:call-template name="pts-subscription" />                    <option value="pts.css">Legacy</option>
1089      <xsl:call-template name="binary-packages" />                </select></p>
1090      <xsl:call-template name="available-versions" />              </form>
     <xsl:call-template name="patches" />  
     <xsl:call-template name="other-links" />  
     <xsl:call-template name="package-files" />  
   </table>  
   <!-- END LEFT SIDE -->  
   </td><td class="containercell">  
   <!-- RIGHT SIDE -->  
   <table class="righttable">  
     <xsl:call-template name="todo-list" />  
     <xsl:call-template name="problems" />  
     <xsl:call-template name="testing-status" />  
     <xsl:call-template name="static-info" />  
     <xsl:call-template name="latest-news" />  
     <xsl:call-template name="latest-news" />  
   </table>  
   <!-- END RIGHT SIDE -->  
   </td></tr>  
   </table>  
1091    
1092    <!-- END NON REMOVED PACKAGE -->            </div>
1093    </xsl:otherwise>            <h1>Overview of
1094    </xsl:choose>              <xsl:element name="a">
1095                  <xsl:attribute name="href">
1096                    <xsl:text>http://packages.debian.org/src:</xsl:text>
1097                    <xsl:value-of select="$package"/>
1098                  </xsl:attribute>
1099                  <xsl:value-of select="$package"/>
1100                </xsl:element>
1101                source package</h1>
1102    
1103    <hr/>            <div id="body">
1104    <div class="footer">              <xsl:choose>
1105      <p>                <xsl:when test="$removed='yes'">
1106        Debian Package Tracking System - Copyright 2002-2007 Raphaël Hertzog and                  <!-- REMOVED PACKAGE -->
1107        others<br/>                  <p>This package is not part of any Debian distribution. Thus you won't
1108        Report problems to the <a href="http://bugs.debian.org/qa.debian.org"                    find much information here. The package is either very new and hasn't
1109          >qa.debian.org pseudopackage</a><br/>                    appeared on mirrors yet, or it's an old package that eventually got removed.
1110        Last modified : <xsl:value-of select="$date"/>                    The old news are kept for historic purpose only.</p>
1111      </p>  
1112    </div>                  <table class="righttable">
1113    </div>                    <xsl:call-template name="static-info" />
1114    </body>                    <xsl:call-template name="latest-news" />
1115    </html>                  </table>
1116  </xsl:template>  
1117                    <!-- END REMOVED PACKAGE -->
1118                  </xsl:when>
1119                  <xsl:otherwise>
1120                    <!-- NON REMOVED PACKAGE -->
1121    
1122                    <table class="containertable">
1123                      <tr class="containerrow" valign="top">
1124                        <td class="containercell">
1125                          <!-- LEFT SIDE -->
1126                          <table class="lefttable">
1127                            <xsl:call-template name="general-information" />
1128                            <xsl:call-template name="available-versions" />
1129                          </table>
1130                          <table class="lefttable">
1131                            <xsl:call-template name="package-files" />
1132                            <xsl:call-template name="binary-packages" />
1133                          </table>
1134                          <!-- END LEFT SIDE -->
1135                          </td><td class="containercell">
1136                          <!-- RIGHT SIDE -->
1137                          <table class="righttable">
1138                            <xsl:call-template name="todo-list" />
1139                            <xsl:call-template name="problems" />
1140                          </table>
1141                          <table class="righttable">
1142                            <xsl:call-template name="testing-status" />
1143                            <xsl:call-template name="static-info" />
1144                            <xsl:call-template name="latest-news" />
1145                          </table>
1146                          <!-- END RIGHT SIDE -->
1147                          </td><td class="containercell">
1148                          <table class="lefttable">
1149                            <xsl:call-template name="bugs-count" />
1150                            <xsl:call-template name="pts-subscription" />
1151                          </table>
1152                          <table class="lefttable">
1153                            <xsl:call-template name="other-links" />
1154                          </table>
1155                          <table class="lefttable" id="ubuntubox">
1156                            <xsl:call-template name="ubuntu" />
1157                          </table>
1158                      </td></tr>
1159                    </table>
1160    
1161                    <!-- END NON REMOVED PACKAGE -->
1162                  </xsl:otherwise>
1163                </xsl:choose>
1164    
1165                <hr/>
1166                <div class="footer">
1167                  <table width="100%">
1168                    <tr>
1169                      <td>
1170                        <p>
1171                          <em><a href="http://www.debian.org">Debian</a> Package
1172                            Tracking System</em> - Copyright 2002-2008 Raphaël
1173                          Hertzog and others.<br/> Report problems to the
1174                          <a href="http://bugs.debian.org/qa.debian.org"><tt>qa.debian.org</tt>
1175                            pseudopackage</a> in the <a href="http://bugs.debian.org">Debian
1176                            <acronym title="Bug Tracking System">BTS</acronym></a>.<br/>
1177                          Last modified: <xsl:value-of select="$date"/>.
1178                        </p>
1179                      </td>
1180                      <td>
1181                        <a href="http://validator.w3.org/check?uri=referer"><img
1182                            src="http://www.w3.org/Icons/valid-xhtml10-blue"
1183                            alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
1184                      </td>
1185                    </tr>
1186                  </table>
1187                </div>
1188              </div>
1189            </body>
1190          </html>
1191        </xsl:template>
1192    
1193  </xsl:stylesheet>  </xsl:stylesheet>

Legend:
Removed from v.1768  
changed lines
  Added in v.1991

  ViewVC Help
Powered by ViewVC 1.1.5