#!/usr/bin/perl #$Revision: 1.3 $$Date: 2007/02/19 02:04:33 $$Author: boumenot $ ####################################################################### ####################################################################### package ItemSearch::HTML::Parser; use base(HTML::Parser); use Data::Dumper; sub new { my $that = shift; my $class = ref($that) || $that; my $self = $class->SUPER::new(@_); bless $self, $class; $self->unbroken_text(1); return $self; } # Keep a queue of depth two to track the last two start tags # encountered. This allows me track the correct number of tags that lead # up to a valid entry. I'm attempting to parse lists of the form. #

SearchIndex: Books

# #

SearchIndex: Software

#