T5.2.6: Catch page call in AppModule

2012-11-06 Thread resign
Hi, is it possible to catch every page call in ONE central point, like AppModule ? The background is - i have to insert Please wait... - message in an */existing /* project. Any ideas? Thanks, resign PS: for AJAX things i use progressive display works fine. -- View this message in

Re: T5.2.6: Catch page call in AppModule

2012-11-06 Thread Lance Java
Take a look at the diagram at the bottom of this page: http://tapestry.apache.org/request-processing.html You can contribute a PageRenderRequestFilter to the PageRenderRequestHandler in your AppModule. -- View this message in context:

Re: T5.2.6: Catch page call in AppModule

2012-11-06 Thread Lance Java
You could also use a ComponentClassTransformWorker2 to attach a custom mixin to every Page class. http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/services/transform/ComponentClassTransformWorker2.html -- View this message in context:

Re: T5.2.6: Catch page call in AppModule

2012-11-06 Thread Bob Harner
If all of the pages happen to use the same layout component then the /easiest/ thing would be to put the message there, depending on how and where you want the message to appear. On Tue, Nov 6, 2012 at 4:33 AM, Lance Java lance.j...@googlemail.comwrote: You could also use a