Re: JSP suggestion

2004-03-25 Thread Harry Mantheakis
> Sorry, but that wouldn't help the original poster. Oh, Ralph, now you've gone and spoiled the fun. I was really enjoying this thread. > He is searching for a way to include taglib definitions > and imports that are used in the pages. Any kind of dynamic > include or decorators wouldn't achieve

RE: RE : JSP suggestion

2004-03-25 Thread John Sidney-Woollett
Ralph Einfeldt said: > > Sorry, but that wouldn't help the original poster. > > He is searching for a way to include taglib definitions > and imports that are used in the pages. Any kind of dynamic > include or decorators wouldn't achieve that. Sorry, you're right, misread the original post. Had

RE: RE : JSP suggestion

2004-03-24 Thread Ralph Einfeldt
t [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 24, 2004 11:09 PM > To: Hertenstein Alain > Cc: Tomcat Users List > Subject: Re: RE : JSP suggestion > > > Also have a look at OpenSymphony's SiteMesh filter - it does just what > you're trying to do with your f

Re: RE : JSP suggestion

2004-03-24 Thread John Sidney-Woollett
pe this helps, > Alain > > -Message d'origine- > De : Keith Hyland [mailto:[EMAIL PROTECTED] > Envoyé : mercredi, 24. mars 2004 16:56 > À : Tomcat Users List > Objet : Re: JSP suggestion > > > Or you can specify a prelude.jspf file in your web.xml (I think t

RE : JSP suggestion

2004-03-24 Thread Hertenstein Alain
004 16:56 À : Tomcat Users List Objet : Re: JSP suggestion Or you can specify a prelude.jspf file in your web.xml (I think this may only work with servlet spec 2.4 servers) (The prelude is added to the top of the file, the coda is added to the end of the file) allFiles *.j

Re: JSP suggestion

2004-03-24 Thread Tim Funk
It depends what you are trying to accomplish. If you are trying for common functionality at the beginning of a page - it might be better to have a custom tag at the beginnign of all your files which does the stuff you need. Otherwise (IMO) - standard imports (@file include) stink. Only import wh

Re: JSP suggestion

2004-03-24 Thread Keith Hyland
Or you can specify a prelude.jspf file in your web.xml (I think this may only work with servlet spec 2.4 servers) (The prelude is added to the top of the file, the coda is added to the end of the file) allFiles *.jsp false false false /template/prelude.jspf /temp

Re: JSP suggestion

2004-03-24 Thread Adam Buglass
I use HTH. Adam. On Wed, 2004-03-24 at 14:46, Edson Alves Pereira wrote: > Hello folks, iÂd like to build a default jsp header to all my > jspÂpage, in this header i would put all taglibs and imports i need, but i > in doubt about which is the best way to do it. Sould i make all others p