HTML::DOM, version 0.011 HTML::DOM is a Perl implementation of the HTML Document Object Model This is an alpha release. So far, the level-1 DOM interfaces and the level-2 core interfaces have been implemented, and some of the level-2 event and style sheet interfaces. CHANGES IN THIS RELEASE New features: • Link and style elements now have their ‘sheet’ attribute (in other words, the LinkStyle interface has been added). • HTML::DOM now has a C method (the DocumentStyle inter- face has been implemented). One bug fix: • The so-called ‘content_offset’ bug (RT #34404) has been fixed. It actually had nothing to do with content_offset (which merely exposed the bug), but text after the tag that was inserted in the document, rather than the HTML element. TO DO - Add support to HTML::DOM::Interface for UTF-16 methods. - Weaken upward references - Add Level 2 HTML support - Finish Level 2 Events support - Finish Level 2 CSS support - etc. - Write more complete documentation - Write more tests 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.0 or later and the following Perl modules: - Scalar Util 1.08 or later - Exporter 5.57 or later - HTML::TreeBuilder and HTML::Element (both part of the HTML::Tree distribution) (tested with 3.23) - URI (tested with 1.35) - HTTP::Headers::Util is required for writing cookies. - HTML::Form 1.054 is required if any of the methods provided for WWW::Mechanize compatibility are to be used. - CSS::DOM 0.02 or later 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 Father Chrysostomos This program is free software; you may redistribute it and/or modify it under the same terms as perl.