Howdy,

This problem is caused by the use of "s in the short description
(obviously).  The short description is used in the meta line, and
these "s causes it to think that the attribute is finished before
it is.  The following patch changes these into "s, which
should behave correctly.  I'd have applied it myself, but the file
is owned by the debwww group of which I am not a member.

Matt

--- /org/packages.debian.org/htmlscripts/html.pl        Sat Dec 23 11:51:34 2000
+++ html.pl     Sat May 26 20:04:38 2001
@@ -5,6 +5,7 @@
 my ($TITLE, $PACKTOP, $ROOT, $DESC, $KEYWORDS) = @_;
 $ROOT = 'http://www.debian.org';
 if (defined $DESC) {
+       $DESC =~ s/"/"/g;
        $DESC_LINE = "<meta name=\"Description\" content=\"$DESC\">";
 }
 else {

Reply via email to