How to get at the body in a custom tag...

1999-09-02 Thread Eduardo Pelegri-Llopart
Dave Navas asked: = A quick btw -- if someone can 'splain to me how this kind of tag: setPageData myCustomTag/ /setPageData can capture its body, I'd sure appreciate it. Maybe it's just the engine I'm using, but I'm not clear as to how that's accomplished. It seems like all I

Re: How to get at the body in a custom tag...

1999-09-02 Thread David Navas
Just fyi -- I think that was fairly clear, its just that the implementation I was using lost content and I wanted to make sure I was doing things correctly. :) By the way, I'm not sure what the doEndTag() exists for. Are there places where it should be called and release() should/might not?

Re: How to get at the body in a custom tag...

1999-09-02 Thread Eduardo Pelegri-Llopart
doEndTag() returns an indication of whether you are done with this page (e.g. because you just forwarded the request elsewhere, or whatever), or not. (EVAL_PAGE and SKIP_PAGE). It should also release all local resources. release() is intended to release resources not defined locally in this

Re: How to get at the body in a custom tag...

1999-09-02 Thread David Navas
Eduardo Pelegri-Llopart wrote: doEndTag() returns an indication of whether you are done with this page (e.g. because you just forwarded the request elsewhere, or whatever), or not. (EVAL_PAGE and SKIP_PAGE). It should also release all local resources. Err, did this change recently? The