Re: ADF Faces javascript rendering

2006-02-22 Thread Werner Punz
Laurie Harper schrieb: The Tomahawk components 'inject' Javascript file references into the head section of the response by using a filter to buffer and post-process the response. I'm assuming ADF Faces has some mechanism for injecting Javascript too, but I can't seem to track it down...

Re: ADF Faces javascript rendering

2006-02-22 Thread Laurie Harper
Werner Punz wrote: Laurie, cannot help you there, but a minor sidequestion, did you use my dojo hooks I provided in the sandbox? If yes please give me feedback if you need something changed or added, now is a perfect time for doing it, the whole dojo base will be moved into Tomahawk after 1.1.2,

Re: ADF Faces javascript rendering

2006-02-22 Thread Mike Kienenberger
Have you looked at this? http://wiki.apache.org/myfaces/External_Resources On 2/22/06, Laurie Harper [EMAIL PROTECTED] wrote: The Tomahawk components 'inject' Javascript file references into the head section of the response by using a filter to buffer and post-process the response. I'm

Re: ADF Faces javascript rendering

2006-02-22 Thread Adam Winer
Laurie, We use a Scriptlet API down in : oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs ... the basic gist of which is that a Renderer can say hey, I need function foo(), and the Scriptlet API figures out whether that means importing a lib, or writing out an in-place script, and

Re: ADF Faces javascript rendering

2006-02-22 Thread Laurie Harper
Mike, thanks for the link. Yes, I'm familiar with the AddResources stuff in Tomahawk, but was looking for the equivalent functionality in ADF Faces so I can inter-operate with either. L. Mike Kienenberger wrote: Have you looked at this? http://wiki.apache.org/myfaces/External_Resources On

Re: ADF Faces javascript rendering

2006-02-22 Thread Rogers Reilly
Werner Punz wrote: Laurie Harper schrieb: The Tomahawk components 'inject' Javascript file references into the head section of the response by using a filter to buffer and post-process the response. I'm assuming ADF Faces has some mechanism for injecting Javascript too, but I can't seem to

Re: ADF Faces javascript rendering

2006-02-22 Thread Laurie Harper
Mike Kienenberger wrote: On 2/22/06, Laurie Harper [EMAIL PROTECTED] wrote: Maybe it would make sense to move Tomahawk's AddResources / Filter based stuff into commons so it can be re-used across Tomahawk, ADFF, Tobago and other component libraries? I don't see any reason why we can't move

ADF Faces javascript rendering

2006-02-21 Thread Laurie Harper
The Tomahawk components 'inject' Javascript file references into the head section of the response by using a filter to buffer and post-process the response. I'm assuming ADF Faces has some mechanism for injecting Javascript too, but I can't seem to track it down... I've found the code that