HTML::DOM, version 0.048
HTML::DOM is a Perl implementation of the HTML Document Object Model
This is an alpha release. So far, the level-2 core, HTML and event DOM interfaces have been implemented, and some of the level-2 style sheet interfaces.
RECENT CHANGES
See the Changes file for the long version.
Bug fix: Area elements now trigger a DOMActivate event when the click method is called. (This means that a default event handler for links gets called with area elements, as well as â€~aâ€TM elements.)
Bug fix: Implicitly-closed forms were being associated with inputs in subsequent forms, resulting in there being two forms that contain the same input element in their ->elements and ->inputs arrays (RT #65363).
Bug fixes:
• Setting innerHTML and calling the insertAdjacent* methods now cause
node lists and collections to be updated.
• Checking a radio button now causes other radio buttons in the same
group to become unchecked.
TO DO
INSTALLATION
The easiest way to install this module is to use the CPAN module or the cpan script:
[sudo] perl -MCPAN -e "install HTML::DOM"
[sudo] cpan HTML::DOM
Or you can use the following:
perl Makefile.PL
make
make test
[sudo] make install
DEPENDENCIES
This module requires perl 5.8.3 or higher and the following Perl modules:
DOCUMENTATION
After installing, you can find documentation for this module with the perldoc command.
perldoc HTML::DOM
Or try using man (it's faster, in my experience):
man HTML::DOM
COPYRIGHT AND LICENCE
Copyright (C) 2007-11 Father Chrysostomos
This program is free software; you may redistribute it and/or modify it under the same terms as perl.