/[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 903 by jeroen, Mon Jan 31 22:52:35 2005 UTC revision 1094 by djpig, Mon Sep 12 21:18:50 2005 UTC
# Line 13  Line 13 
13  <xsl:param name="package"/>  <xsl:param name="package"/>
14  <xsl:param name="dir"/>  <xsl:param name="dir"/>
15  <xsl:param name="date"/>  <xsl:param name="date"/>
16    <xsl:param name="hasoldstable" select="''"/>
17  <xsl:param name="hasstable" select="''"/>  <xsl:param name="hasstable" select="''"/>
18  <xsl:param name="hastesting" select="''"/>  <xsl:param name="hastesting" select="''"/>
19  <xsl:param name="hasunstable" select="''"/>  <xsl:param name="hasunstable" select="''"/>
# Line 20  Line 21 
21  <xsl:param name="hasother" select="''"/>  <xsl:param name="hasother" select="''"/>
22  <xsl:param name="hass-p-u" select="''"/>  <xsl:param name="hass-p-u" select="''"/>
23  <xsl:param name="hast-p-u" select="''"/>  <xsl:param name="hast-p-u" select="''"/>
24    <xsl:param name="hasoldstable-security" select="''"/>
25  <xsl:param name="hasstable-security" select="''"/>  <xsl:param name="hasstable-security" select="''"/>
26  <xsl:param name="hastesting-security" select="''"/>  <xsl:param name="hastesting-security" select="''"/>
27    <xsl:param name="hassecure-testing" select="''"/>
28    <xsl:param name="hasvolatile" select="''"/>
29  <xsl:param name="hasnews" select="''"/>  <xsl:param name="hasnews" select="''"/>
30  <xsl:param name="hasexcuse" select="''"/>  <xsl:param name="hasexcuse" select="''"/>
31    
# Line 29  Line 33 
33    
34  <!-- Those variables controls the todo and problem item concerning  <!-- Those variables controls the todo and problem item concerning
35       standards-version not being up to date -->       standards-version not being up to date -->
36  <xsl:variable name="lastsv" select="'3.6.1'"/>  <xsl:variable name="lastsv" select="'3.6.2'"/>
37  <xsl:variable name="lastmajorsv" select="'3.'"/>  <xsl:variable name="lastmajorsv" select="'3.'"/>
38    
39  <!-- Named templates aka functions -->  <!-- Named templates aka functions -->
40  <xsl:template name="mirror">  <xsl:template name="mirror">
41    <xsl:choose>    <xsl:text>http://ftp.debian.org/debian</xsl:text>
     <xsl:when test="contains(/source/section, 'non-US')">  
       <xsl:text>http://non-us.debian.org/debian-non-US</xsl:text>  
     </xsl:when>  
     <xsl:otherwise>  
       <xsl:text>http://http.us.debian.org/debian</xsl:text>  
     </xsl:otherwise>  
   </xsl:choose>  
42  </xsl:template>  </xsl:template>
43    
44  <xsl:template name="outputitem">  <xsl:template name="outputitem">
# Line 51  Line 48 
48          <xsl:text>[</xsl:text>          <xsl:text>[</xsl:text>
49          <xsl:value-of select="@date"/>          <xsl:value-of select="@date"/>
50          <xsl:text>] </xsl:text>          <xsl:text>] </xsl:text>
51        </xsl:if><a href="{@url}"><xsl:value-of select="text()"/></a></li>        </xsl:if><a href="{@url}">
52          <xsl:value-of select="text()"/></a><xsl:if test="@from">
53            <xsl:text> (</xsl:text>
54            <xsl:value-of select="@from"/>
55            <xsl:text>)</xsl:text></xsl:if></li>
56      </xsl:when>      </xsl:when>
57      <xsl:otherwise>      <xsl:otherwise>
58        <li><xsl:if test="@date">        <li><xsl:if test="@date">
# Line 78  Line 79 
79    </xsl:if>    </xsl:if>
80  </xsl:template>  </xsl:template>
81    
82    <!-- Strip epoch -->
83    <xsl:template name="strip-epoch">
84      <xsl:param name="version"/>
85      <xsl:if test="contains($version,':')">
86        <xsl:value-of select="substring-after($version,':')"/>
87      </xsl:if>
88      <xsl:if test="not(contains($version,':'))">
89        <xsl:value-of select="$version"/>
90      </xsl:if>
91    </xsl:template>
92    
93    
94  <!-- All the work is done in a single template -->  <!-- All the work is done in a single template -->
95  <xsl:template match="source">  <xsl:template match="source">
96    
97    <!-- Start of html -->    <!-- Start of html -->
98      <xsl:text disable-output-escaping="yes">
99      &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"&gt;
100      </xsl:text>
101    <html>    <html>
102    <head>    <head>
103    <meta name="ROBOTS" content="NOFOLLOW"/>    <meta name="ROBOTS" content="NOFOLLOW"/>
# Line 94  Line 109 
109    
110    <form method="get" action="/common/index.html" style="float: right;">    <form method="get" action="/common/index.html" style="float: right;">
111    <!-- this link should make lynx/links happy [FG] -->    <!-- this link should make lynx/links happy [FG] -->
112    Jump to package (<a href="/">home page</a>): <br/>    <p>Jump to package (<a href="/">home page</a>): <br/>
113    <input type="text" name="src" value=""/>    <input type="text" name="src" value=""/></p>
114    </form>    </form>
115    <h1>Overview of <xsl:value-of select="$package"/> source package</h1>    <h1>Overview of
116      <xsl:element name="a">
117        <xsl:attribute name="href">
118          <xsl:text>http://packages.debian.org/src:</xsl:text>
119           <xsl:value-of select="$package"/>
120        </xsl:attribute>
121       <xsl:value-of select="$package"/>
122      </xsl:element>
123      source package</h1>
124    
125    <table class="containertable">    <table class="containertable">
126    <tr class="containerrow" valign="top">    <tr class="containerrow" valign="top">
# Line 262  Line 285 
285    <tr class="normalrow">    <tr class="normalrow">
286    <td class="contentcell" colspan="2">    <td class="contentcell" colspan="2">
287    <form method="post" action="/cgi-bin/pts.cgi">    <form method="post" action="/cgi-bin/pts.cgi">
288        <p>
289      <input type="hidden" name="package" value="{$package}"/>      <input type="hidden" name="package" value="{$package}"/>
290      <select name="what">      <select name="what">
291        <option value="subscribe">Subscribe</option>        <option value="subscribe">Subscribe</option>
# Line 270  Line 294 
294      </select>      </select>
295      <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" onFocus="if(email.value=='your email'){{email.value=''}}"/>
296      <input type="submit" name="submit" value="Send"/>      <input type="submit" name="submit" value="Send"/>
297        </p>
298    </form>    </form>
299    </td>    </td>
300    </tr>    </tr>
# Line 280  Line 305 
305    </td></tr>    </td></tr>
306    <tr class="normalrow">    <tr class="normalrow">
307    <td class="normalcell" colspan="2" style="text-align: left">    <td class="normalcell" colspan="2" style="text-align: left">
308      <ul>
309    <xsl:for-each select="binary/item">    <xsl:for-each select="binary/item">
310      <xsl:sort select="text()"/>      <xsl:sort select="text()"/>
311      <xsl:variable name="pkg" select="text()"/>      <xsl:variable name="pkg" select="text()"/>
# Line 338  Line 364 
364      </span>      </span>
365      </li>      </li>
366    </xsl:for-each>    </xsl:for-each>
367    </td></tr>    </ul></td></tr>
368    
369    <tr class="titlerow">    <tr class="titlerow">
370    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
371    Other available versions    Available versions
372    </td></tr>    </td></tr>
373    <xsl:if test="$hasexperimental">  
374      <!-- oldstable -->
375      <xsl:if test="$hasoldstable">
376    <tr class="normalrow">    <tr class="normalrow">
377    <td class="labelcell">Experimental</td>    <td class="labelcell"><a href="http://www.debian.org/releases/woody/">Oldstable</a></td>
378    <td class="contentcell">    <td class="contentcell">
379    <xsl:value-of select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/oldstable.xml'))/source/version"/>
380      </td>
381      </tr>
382      </xsl:if>
383      <xsl:if test="$hasoldstable-security">
384      <tr class="normalrow">
385      <td class="labelcell"><small>Oldstable Security Updates</small></td>
386      <td class="contentcell">
387      <xsl:value-of select="document(concat('../base/', $dir, '/oldstable-security.xml'))/source/version"/>
388      </td>
389      </tr>
390      </xsl:if>
391    
392      <!-- stable -->
393      <xsl:if test="$hasstable">
394      <tr class="normalrow">
395      <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>
396      <td class="contentcell">
397      <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>
398    </td>    </td>
399    </tr>    </tr>
400    </xsl:if>    </xsl:if>
401    <xsl:if test="$hasstable-security">    <xsl:if test="$hasstable-security">
402    <tr class="normalrow">    <tr class="normalrow">
403    <td class="labelcell">Security Updates (stable)</td>    <td class="labelcell"><small>Stable Security Updates</small></td>
404    <td class="contentcell">    <td class="contentcell">
405    <xsl:value-of select="document(concat('../base/', $dir, '/stable-security.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/stable-security.xml'))/source/version"/>
406    </td>    </td>
407    </tr>    </tr>
408    </xsl:if>    </xsl:if>
409    <xsl:if test="$hastesting-security">    <xsl:if test="$hass-p-u">
410    <tr class="normalrow">    <tr class="normalrow">
411    <td class="labelcell">Security Updates (testing)</td>    <td class="labelcell"><small>Stable Proposed Updates</small></td>
412    <td class="contentcell">    <td class="contentcell">
413    <xsl:value-of select="document(concat('../base/', $dir, '/testing-security.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/s-p-u.xml'))/source/version"/>
414    </td>    </td>
415    </tr>    </tr>
416    </xsl:if>    </xsl:if>
417    
418      <!-- testing -->
419    <xsl:if test="$hastesting">    <xsl:if test="$hastesting">
420    <tr class="normalrow">    <tr class="normalrow">
421    <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>    <td class="labelcell"><a href="http://www.debian.org/releases/testing/">Testing</a></td>
# Line 376  Line 424 
424    </td>    </td>
425    </tr>    </tr>
426    </xsl:if>    </xsl:if>
427      <xsl:if test="$hastesting-security">
428      <tr class="normalrow">
429      <td class="labelcell"><small>Testing Security Updates</small></td>
430      <td class="contentcell">
431      <xsl:value-of select="document(concat('../base/', $dir, '/testing-security.xml'))/source/version"/>
432      </td>
433      </tr>
434      </xsl:if>
435    <xsl:if test="$hast-p-u">    <xsl:if test="$hast-p-u">
436    <tr class="normalrow">    <tr class="normalrow">
437    <td class="labelcell">Testing Proposed Updates</td>    <td class="labelcell"><small>Testing Proposed Updates</small></td>
438    <td class="contentcell">    <td class="contentcell">
439    <xsl:value-of select="document(concat('../base/', $dir, '/t-p-u.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/t-p-u.xml'))/source/version"/>
440    </td>    </td>
441    </tr>    </tr>
442    </xsl:if>    </xsl:if>
443    <xsl:if test="$hasstable">  
444      <!-- unstable -->
445      <xsl:if test="$hasunstable">
446    <tr class="normalrow">    <tr class="normalrow">
447    <td class="labelcell"><a href="http://www.debian.org/releases/stable/">Stable</a></td>    <td class="labelcell">Unstable</td>
448    <td class="contentcell">    <td class="contentcell">
449    <xsl:value-of select="document(concat('../base/', $dir, '/stable.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/unstable.xml'))/source/version"/>
450    </td>    </td>
451    </tr>    </tr>
452    </xsl:if>    </xsl:if>
453    <xsl:if test="$hass-p-u">  
454      <!-- experimental -->
455      <xsl:if test="$hasexperimental">
456    <tr class="normalrow">    <tr class="normalrow">
457    <td class="labelcell">Stable Proposed Updates</td>    <td class="labelcell">Experimental</td>
458    <td class="contentcell">    <td class="contentcell">
459    <xsl:value-of select="document(concat('../base/', $dir, '/s-p-u.xml'))/source/version"/>    <xsl:value-of select="document(concat('../base/', $dir, '/experimental.xml'))/source/version"/>
460    </td>    </td>
461    </tr>    </tr>
462    </xsl:if>    </xsl:if>
463    
464      <!-- secure-testing -->
465      <xsl:if test="$hassecure-testing">
466      <tr class="normalrow">
467      <td class="labelcell">Secure testing</td>
468      <td class="contentcell">
469      <xsl:value-of select="document(concat('../base/', $dir, '/secure-testing.xml'))/source/version"/>
470      </td>
471      </tr>
472      </xsl:if>
473    
474      <!-- volatile -->
475      <xsl:if test="$hasvolatile">
476      <tr class="normalrow">
477      <td class="labelcell">Volatile</td>
478      <td class="contentcell">
479      <xsl:value-of select="document(concat('../base/', $dir, '/volatile.xml'))/source/version"/>
480      </td>
481      </tr>
482      </xsl:if>
483    
484      <!-- Patches list [FG] -->
485      <xsl:if test="$other/@patches='yes'">
486        <tr class="titlerow">
487        <td class="titlecell" colspan="2">
488        Patches
489        </td></tr>
490        <tr>
491        <td class="contentcell" colspan="2" style="text-align: left">
492        <ul>
493        <xsl:for-each select="$other/patches/item">
494          <li>
495            <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>
496          </li>
497        </xsl:for-each>
498        <xsl:if test="$other/bugs/@patch!='0'">
499          <li>
500            <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;include=patch&amp;exclude=pending">Patches from BTS (<xsl:value-of select="$other/bugs/@patch"/>)</a>
501          </li>
502        </xsl:if>
503        </ul>
504        </td>
505        </tr>
506      </xsl:if>
507    
508    
509    <tr class="titlerow">    <tr class="titlerow">
510    <td class="titlecell" colspan="2">    <td class="titlecell" colspan="2">
511    Other links    Other links
512    </td></tr>    </td></tr>
513    <tr>    <tr>
514    <td class="contentcell" colspan="2" style="text-align: left">    <td class="contentcell" colspan="2" style="text-align: left">
515      <ul>
516      <li>
517        <xsl:element name="a">
518          <xsl:attribute name="href">
519            <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
520            <xsl:value-of select="directory"/>
521            <xsl:text>/</xsl:text>
522            <xsl:call-template name="escape-name">
523              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
524            </xsl:call-template>
525            <xsl:text>_</xsl:text>
526            <xsl:call-template name="escape-name">
527              <xsl:with-param name="text">
528                <xsl:call-template name="strip-epoch">
529                  <xsl:with-param name="version">
530                    <xsl:value-of select="version"/>
531                  </xsl:with-param>
532                </xsl:call-template>
533              </xsl:with-param>
534            </xsl:call-template>
535            <xsl:text>/changelog</xsl:text>
536          </xsl:attribute>
537          <xsl:text>Changelog</xsl:text>
538        </xsl:element>
539        /
540        <xsl:element name="a">
541          <xsl:attribute name="href">
542            <xsl:text>http://packages.debian.org/changelogs/</xsl:text>
543            <xsl:value-of select="directory"/>
544            <xsl:text>/</xsl:text>
545            <xsl:call-template name="escape-name">
546              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
547            </xsl:call-template>
548            <xsl:text>_</xsl:text>
549            <xsl:call-template name="escape-name">
550              <xsl:with-param name="text">
551                <xsl:call-template name="strip-epoch">
552                  <xsl:with-param name="version">
553                    <xsl:value-of select="version"/>
554                  </xsl:with-param>
555                </xsl:call-template>
556              </xsl:with-param>
557            </xsl:call-template>
558            <xsl:text>/copyright</xsl:text>
559          </xsl:attribute>
560          <xsl:text>Copyright</xsl:text>
561        </xsl:element>
562      </li>
563    <xsl:if test="architecture!='all'">    <xsl:if test="architecture!='all'">
564      <li>      <li>
565        <xsl:element name="a">        <xsl:element name="a">
# Line 490  Line 643 
643                                <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-/()&#34; ', &quot;'&quot;)"/>                                <xsl:variable name="pattern" select="concat('àáèéëêòöøîìùñ-/()&#34; ', &quot;'&quot;)"/>
644    <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '____________________')"/>    <xsl:variable name="_name" select="translate(maintainer/name, $pattern, '____________________')"/>
645      <li><a href="http://lintian.debian.org/reports/m{$_name}.html#{$package}">Lintian report</a></li>      <li><a href="http://lintian.debian.org/reports/m{$_name}.html#{$package}">Lintian report</a></li>
646      <li>
647        <xsl:element name="a">
648          <xsl:attribute name="href">
649            <xsl:text>http://qa.debian.org/developer.php?popcon=</xsl:text>
650            <xsl:call-template name="escape-name">
651              <xsl:with-param name="text"><xsl:value-of select="$package"/></xsl:with-param>
652            </xsl:call-template>
653          </xsl:attribute>
654          <xsl:text>Popcon stats</xsl:text>
655        </xsl:element>
656      </li>
657      </ul>
658    </td>    </td>
659    </tr>    </tr>
660    
# Line 511  Line 675 
675    </td></tr>    </td></tr>
676    <tr class="normalrow">    <tr class="normalrow">
677    <td class="normalcell" colspan="2" style="text-align: left">    <td class="normalcell" colspan="2" style="text-align: left">
678      <ul>
679    <xsl:for-each select="files/item">    <xsl:for-each select="files/item">
680      <li>      <li>
681      <xsl:element name="a">      <xsl:element name="a">
# Line 530  Line 695 
695      </xsl:element>      </xsl:element>
696      </li>      </li>
697    </xsl:for-each>    </xsl:for-each>
698    </td></tr>    </ul></td></tr>
699    
700    </table>    </table>
701    <!-- END LEFT SIDE -->    <!-- END LEFT SIDE -->
# Line 562  Line 727 
727          <li>A new upstream version was found:          <li>A new upstream version was found:
728             (<xsl:value-of select="$other/watch/@new"/>). <a href="{$other/watch/@url}"><xsl:value-of select="$other/watch/@url"/></a></li>             (<xsl:value-of select="$other/watch/@new"/>). <a href="{$other/watch/@url}"><xsl:value-of select="$other/watch/@url"/></a></li>
729        </xsl:if>        </xsl:if>
730          <xsl:if test="$other/bugs/@patch!='0'">
731            <li>The Bug Tracking System contains <a href="http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=src&amp;data={$package}&amp;include=patch&amp;exclude=pending"><xsl:value-of select="$other/bugs/@patch"/> patch(es)</a>, you should include it(them).</li>
732          </xsl:if>
733      </xsl:if>      </xsl:if>
734    </xsl:variable>    </xsl:variable>
735    <xsl:if test="count($todo)>0 and string($todo)!=''">    <xsl:if test="count($todo)>0 and string($todo)!=''">
# Line 570  Line 738 
738    Todo    Todo
739    </td></tr>    </td></tr>
740    <tr class="normalrow">    <tr class="normalrow">
741    <td class="contentcell2"><xsl:copy-of select="$todo"/>    <td class="contentcell2">
742      <ul>
743      <xsl:copy-of select="$todo"/>
744      </ul>
745    </td>    </td>
746    </tr>    </tr>
747    </xsl:if>    </xsl:if>
# Line 601  Line 772 
772      </xsl:if>      </xsl:if>
773      <xsl:if test="$hasother">      <xsl:if test="$hasother">
774    
775          <!-- Override disparity handling. [JvW] -->
776          <xsl:if test="$other/@override='yes'">
777            <xsl:for-each select="$other/override/group">
778              <li>There were override disparities found in suite <xsl:value-of
779                  select="@suite"/>:
780                <ul>
781                  <xsl:for-each select="disparity">
782                    <li><xsl:value-of select="text()"/></li>
783                  </xsl:for-each>
784                </ul>
785              </li>
786            </xsl:for-each>
787          </xsl:if>
788    
789        <!-- Wnpp handling. [PvR] -->        <!-- Wnpp handling. [PvR] -->
790        <xsl:if test="$other/@wnpp='yes'">        <xsl:if test="$other/@wnpp='yes'">
791        <li>        <li>
# Line 635  Line 820 
820            for this package.  This is probably an error, as it has already            for this package.  This is probably an error, as it has already
821            been packaged.            been packaged.
822            </xsl:when>            </xsl:when>
823              <xsl:when test="$other/wnpp/@type='RM'">
824              <span style="font-weight: bold">This package has been requested to be
825              removed</span>.
826              This means that, when this request gets processed by an ftp-master, this
827              package will no longer be in unstable, and will automatically be removed
828              from testing too afterwards. If for some reason you want keep this
829              package in unstable, please discuss so in the bug.
830              </xsl:when>
831            <xsl:otherwise>            <xsl:otherwise>
832            The WNPP database contains an entry for this package,            The WNPP database contains an entry for this package,
833            but it is unclear what kind of entry it is. This is probably an error.            but it is unclear what kind of entry it is. This is probably an error.
# Line 667  Line 860 
860    Problems    Problems
861    </td></tr>    </td></tr>
862    <tr class="normalrow">    <tr class="normalrow">
863    <td class="contentcell2"><xsl:copy-of select="$problems"/>    <td class="contentcell2">
864      <ul><xsl:copy-of select="$problems"/></ul>
865    </td>    </td>
866    </tr>    </tr>
867    </xsl:if>    </xsl:if>
# Line 679  Line 873 
873    </td></tr>    </td></tr>
874    <tr class="normalrow">    <tr class="normalrow">
875    <td class="contentcell2" style="text-align: left">    <td class="contentcell2" style="text-align: left">
876      <ul>
877    <xsl:for-each select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/item">    <xsl:for-each select="document(concat('../base/', $dir, '/excuse.xml'))/excuse/item">
878      <xsl:call-template name="outputitem"/>      <xsl:call-template name="outputitem"/>
879    </xsl:for-each>    </xsl:for-each>
880      </ul>
881    </td>    </td>
882    </tr>    </tr>
883    </xsl:if>    </xsl:if>
# Line 700  Line 896 
896      Static Information      Static Information
897      </td></tr>      </td></tr>
898      <tr class="normalrow">      <tr class="normalrow">
899      <td class="contentcell2"><xsl:copy-of select="$static"/></td>      <td class="contentcell2">
900        <ul><xsl:copy-of select="$static"/></ul>
901        </td>
902      </tr>      </tr>
903    </xsl:if>    </xsl:if>
904    
# Line 717  Line 915 
915      Latest News      Latest News
916      </td></tr>      </td></tr>
917      <tr class="normalrow">      <tr class="normalrow">
918      <td class="contentcell2"><xsl:copy-of select="$news"/></td>      <td class="contentcell2">
919        <ul><xsl:copy-of select="$news"/></ul>
920        </td>
921      </tr>      </tr>
922    </xsl:if>    </xsl:if>
923    
# Line 726  Line 926 
926    </td></tr>    </td></tr>
927    </table>    </table>
928    <hr/>    <hr/>
929    Debian Package Tracking System - Copyright 2002-2004 Raphaël Hertzog<br/>    <p>
930      Debian Package Tracking System - Copyright 2002-2005 Raphaël Hertzog<br/>
931      Report problems to the <a href="http://bugs.debian.org/qa.debian.org"
932      >qa.debian.org pseudopackage</a><br/>
933    Last modified : <xsl:value-of select="$date"/>    Last modified : <xsl:value-of select="$date"/>
934      </p>
935    </body>    </body>
936    </html>    </html>
937  </xsl:template>  </xsl:template>

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

  ViewVC Help
Powered by ViewVC 1.1.5