
WE_Frontend::LinkChecker - check a site for broken links

use WE_Frontend::LinkChecker;
my $lc = WE_Frontend::LinkChecker->new(-url => "http://www/",
-restrict => [...]);
my $errors = $lc->check_html;
print $errors;

Construct a new WE_Frontend::LinkChecker object. The default start URL is $url, the restrictions are specified by -restrict.
Start the linkcheck process and return the results as a HTML string.
Return the HTML header. This method is used by check_html by default.
Start the linkcheck process and create the output string with the help of Template-Toolkit. The Template object is set in $template_object. $template_file holds the Template file. Extra arguments for the process method of Template as a hash reference may also be supplied.
Start the linkcheck process and return the list of failed_urls as a hash.

Slaven Rezic - slaven@rezic.de
