Skip Menu |

This queue is for tickets about the HTML-StripScripts-Parser CPAN distribution.

Report information
The Basics
Id: 31028
Status: resolved
Priority: 0/
Queue: HTML-StripScripts-Parser

People
Owner: Nobody in particular
Requestors: howachen [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Failed to work under Windows
Date: Wed, 28 Nov 2007 19:39:33 +0800
To: bug-html-stripscripts-parser [...] rt.cpan.org
From: "howard chen" <howachen [...] gmail.com>
Hello, Just noticed that the module failed to work under Windows (ActiveState Perl) Example Codes: ################### use HTML::StripScripts::Parser(); my $hss = HTML::StripScripts::Parser->new( { Context => 'Inline', ## HTML::StripScripts configuration }, strict_comment => 1, ## HTML::Parser options strict_names => 1, ); my $html = "<i>test</i>"; print $hss->filter_html($html); ################### Show quoted text
---------- Capture Output ---------- Can't locate object method "filter_html" via package "HTML::StripScripts::Parser" at C:\test.pl line 15. The module was installed via ppm, and I can't find the method "filter_html" in the HTML::StripScripts::Parser pm on my perl lib folder. Any idea? Thanks.
Hi What version of HTML::StripScripts::Parser is installed? filter_html() was added in version 1.00 Clint
Subject: Re: [rt.cpan.org #31028] Failed to work under Windows
Date: Wed, 28 Nov 2007 23:19:40 +0800
To: bug-HTML-StripScripts-Parser [...] rt.cpan.org
From: "howard chen" <howachen [...] gmail.com>
On Nov 28, 2007 7:51 PM, Clinton Gormley via RT <bug-HTML-StripScripts-Parser@rt.cpan.org> wrote: Show quoted text
> > <URL: http://rt.cpan.org/Ticket/Display.html?id=31028 > > > Hi > > What version of HTML::StripScripts::Parser is installed? > > filter_html() was added in version 1.00 > > Clint >
Oh yes, I never thought the Windows ppm is still using the old version Thanks for your good job. Howard