Always include <%@ taglib ... %> directive

2001-11-23 Thread Philippe ENTZMANN
All of my JSP pages have include taglib directives like : <%@ taglib prefix="ka" uri="/mykillerapp-taglib" %> <%@ taglib prefix="scriptfree" uri="/scriptfree-taglib" %> I would like to make some of theses directives (the 2nd) "mandatory". In other words, I would like to include this taglib withou

RE: using ONLY taglib in JSP

2001-11-22 Thread Philippe ENTZMANN
Thanks a lot. Where can I download this ? Just a step further ... Is there a way to automatically include a <%@ taglib %> in all the JSP pages a compilation time. So all pages will be scriptlet-free ? --- Shawn Bayern <[EMAIL PROTECTED]> wrote: > There's a standard, easier way to handle it: yo

RE: using ONLY taglib in JSP

2001-11-22 Thread Philippe ENTZMANN
I would never want to > take the ability > away from my system to be able to have code in JSP > layer. Of course as > we implement the MVC I understand that the View > should not contain any > buisnesslogic, but then again it might have > presentation logic. > > hope it

using ONLY taglib in JSP

2001-11-22 Thread Philippe ENTZMANN
Need some advices to use ONLY taglib in my JSP pages. We have some taglibs implementing our business model. With a MVC approach in mind, we avoid using Java code in our JSP and always put "model" into tag. Is it possible de restrict JSP pags to only contains tags (taglig, HTML, ...) et not Java so