Re: AW: Custom Transformers

2004-05-21 Thread Joerg Heinicke
On 21.05.2004 05:31, Tony Collen wrote: By using the LogTransformer before and after my transformer, it seems that once startRecording() is called, no events are sent to my tranformer. I would assume that calling endRecording() would turn that off, but that doesn't seem to be the case. Can

Re: AW: Custom Transformers

2004-05-20 Thread Tony Collen
Round II: Here's my transformer code, (I know there's extra imports I don't need just yet): - package com.openweather.cocoon.transformation; import org.apache.cocoon.transformation.AbstractSAXTransformer; import org.apache.cocoon.environment.SourceResolver; import

AW: Custom Transformers

2004-05-19 Thread Marco Rolappe
hi tony, AFAIR all that recording functionality you need exists in AbstractSAXTransformer. so, slightly modified, that pseudocode should do it. -Ursprungliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von Tony Collen Gesendet: Mittwoch, 19. Mai 2004 23:06

Re: AW: Custom Transformers

2004-05-19 Thread Tony Collen
Marco Rolappe wrote: hi tony, AFAIR all that recording functionality you need exists in AbstractSAXTransformer. so, slightly modified, that pseudocode should do it. Marco, Aha! Thanks for pointing me in the right direction. Tony