[Zope] Fighting htmllib in external method

2000-10-10 Thread Jason Spisak
Howdy Zopsters, I want to catalog some html files but I want to strip the html tags out. htmlparser does a good job of that, but when I try to acces that from an external method, I run into trouble. import htmllib import formatter def index(self, html): fmtr =

[Zope] Fighting htmllib in external method

2000-10-10 Thread Jason Spisak
Howdy Zopsters, I want to catalog some html files but I want to strip the html tags out. htmlparser does a good job of that, but when I try to acces that from an external method, I run into trouble. import htmllib import formatter def index(self, html): fmtr =

Re: [Zope] Fighting htmllib in external method

2000-10-10 Thread Jonothan Farr
file.read() - Original Message - From: "Jason Spisak" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 2:47 AM Subject: [Zope] Fighting htmllib in external method Howdy Zopsters, I want to catalog some html files but I want to strip the htm

[Zope] Fighting htmllib in external method

2000-10-10 Thread Jason Spisak
ot; [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 10, 2000 2:47 AM Subject: [Zope] Fighting htmllib in external method Howdy Zopsters, I want to catalog some html files but I want to strip the html tags out. htmlparser does a good job of that, but when I try to acces

Re: [Zope] Fighting htmllib in external method

2000-10-10 Thread Dieter Maurer
Jason Spisak writes: I want to catalog some html files but I want to strip the html tags out. htmlparser does a good job of that, but when I try to acces that from an external method, I run into trouble. You may look at

Re: [Zope] Fighting htmllib in external method

2000-10-10 Thread Jason Spisak
Dieter: Thanks Dieter. Jason Spisak writes: I want to catalog some html files but I want to strip the html tags out. htmlparser does a good job of that, but when I try to acces that from an external method, I run into trouble. You may look at