Re: libwww-perl-5b5 released
Chris Fedde (cfedde@loupe.ezsrc.mrg.uswest.com)
Fri, 29 Sep 1995 00:22:35 -0600
In message <199509161124.NAA13361@bergen.oslonett.no>you write:
>I will become busy doing "real" work now, which probably means that
>there will not be much progress for libwww-perl-5 the next month or
>so. Because of this I decided to release what I got at this point.
Here is a cdiff to HTML::Element.pm to correct a slight behavior problem
with creation of definition lists and Netscape tables.
*** Element.pm Thu Sep 28 01:23:22 1995
--- Element.pm Fri Sep 29 00:13:32 1995
***************
*** 47,62 ****
fallback => 0
);
! # Elements that does not have corresponding end tags
for (qw(base link meta isindex nextid
img br hr wbr
input
)
) {
$noEndTag{$_} = 1;
}
! # Link elements an the name of the link attribute
%linkElements =
(
'base' => 'href',
--- 47,64 ----
fallback => 0
);
! # Elements that do not have corresponding end tags
for (qw(base link meta isindex nextid
img br hr wbr
+ th tr td
+ dt dd li
input
)
) {
$noEndTag{$_} = 1;
}
! # Link elements and the name of the link attribute
%linkElements =
(
'base' => 'href',