[XML-SIG] drv_htmlllib

Lars Marius Garshol lmariusg@ifi.uio.no
25 Aug 1999 08:43:07 +0200


* Paul Prescod
|
| In pylibs.py, there is a comment that says:
| 
| #handle_starttag is never called!

That was put in by me. I seem to recall that when I first wrote the
*mllib drivers that method was for some reason never called, and so I
just left it empty.
 
| In accordance with the comment, there is no definition for
| handle_starttag. There is a (seemingly correct) definition for
| unknown_starttag but it doesn't seem to ever get called.

Hmmm. Maybe something to do with version mismatches?

| This seems to fix it:
| 
| def handle_starttag( self, tag, method, attributes ):
|     self.unknown_startag( tag, attributes )

Yup, this is correct (and I have it in my CVS tree already). I have to
get my act together soon and put out a new set of releases for SAX.
The time when I can do that is getting much closer, but is not there
yet.
 
--Lars M.