cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2002-02-01 Thread kinman
kinman 02/02/01 14:20:37 Modified:jasper/src/share/org/apache/jasper Tag: tomcat_40_branch CommandLineContext.java Log: PR: 5471 Submitted by: [EMAIL PROTECTED] (Steve Downey) Revision ChangesPath No revision No

cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2002-02-01 Thread kinman
kinman 02/02/01 13:54:21 Modified:jasper/src/share/org/apache/jasper CommandLineContext.java Log: PR: 5471 Submitted by: [EMAIL PROTECTED] (Steve Downey) Revision ChangesPath 1.8 +28 -4 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/CommandLineContex

cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-08 Thread glenn
glenn 01/02/08 05:36:56 Modified:jasper/src/share/org/apache/jasper CommandLineContext.java Log: Put runtime jsp page servlets in a package Revision ChangesPath 1.6 +12 -3 jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper/CommandLineContext.java Ind

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-07 Thread Glenn Nielsen
It doesn't matter what package jasper puts compiled runtime servlets in, it is all internal to jasper. Regards, Glenn > -Original Message- > From: Glenn Nielsen [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 06, 2001 9:48 PM > To: [EMAIL PROTECTED] > Subjec

RE: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-07 Thread Steve Downey
, the code that is developed and tested can be identical to the code that is shipped to QA and to production. -Original Message- From: Glenn Nielsen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 9:48 PM To: [EMAIL PROTECTED] Subject: Re: cvs commit: jakarta-tomcat-4.0/jasper

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-07 Thread cmanolache
> > > The new jasper makes it very easy to find and view > > > the java source for > > > a translated jsp page, it is located in > > > work/somehost/someapp/some/context/path/MyJSP.java. > > > > > > > Does it not seem logical to assign a package to the > > MyJSP class based on all or part of the

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-07 Thread Glenn Nielsen
Mel Martinez wrote: > > --- Glenn Nielsen <[EMAIL PROTECTED]> wrote: > > > There is no need for all this complexity to generate > > a package name > > in the new Jasper. > > Hmmm... compared to the gobbledy-gook that was being > done before, I'd hardly call what I did complex. > Aside from opti

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-06 Thread Mel Martinez
--- Glenn Nielsen <[EMAIL PROTECTED]> wrote: > There is no need for all this complexity to generate > a package name > in the new Jasper. Hmmm... compared to the gobbledy-gook that was being done before, I'd hardly call what I did complex. Aside from options, all it does is very simply asign t

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-06 Thread Glenn Nielsen
Mel Martinez wrote: > > The package naming solution I've opt'ed for in my own > enhancement to Jasper (which I'll gladly share) is to > derive package names that are related to the location > of the jsp relative to the server context. This is > simple, flexible and should avoid collisions. > T

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-06 Thread Mel Martinez
The package naming solution I've opt'ed for in my own enhancement to Jasper (which I'll gladly share) is to derive package names that are related to the location of the jsp relative to the server context. This is simple, flexible and should avoid collisions. Some implementation details are: Con

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-06 Thread Glenn Nielsen
"Craig R. McClanahan" wrote: > > Glenn Nielsen wrote: > > > "Craig R. McClanahan" wrote: > > > > > > [EMAIL PROTECTED] wrote: > > > > > > > When Jasper is run in a servlet > > > > container it no longer puts the class files in a package, they are now > > > > in the default package. > > > > >

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-05 Thread Craig R. McClanahan
Glenn Nielsen wrote: > "Craig R. McClanahan" wrote: > > > > [EMAIL PROTECTED] wrote: > > > > > When Jasper is run in a servlet > > > container it no longer puts the class files in a package, they are now > > > in the default package. > > > > > > > As was discussed earlier on TOMCAT-DEV, thi

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-05 Thread Paul Speed
Glenn Nielsen wrote: > > "Craig R. McClanahan" wrote: > > > > [EMAIL PROTECTED] wrote: > > > > > When Jasper is run in a servlet > > > container it no longer puts the class files in a package, they are now > > > in the default package. > > > > > > > As was discussed earlier on TOMCAT-DEV, t

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-05 Thread Glenn Nielsen
"Craig R. McClanahan" wrote: > > [EMAIL PROTECTED] wrote: > > > When Jasper is run in a servlet > > container it no longer puts the class files in a package, they are now > > in the default package. > > > > As was discussed earlier on TOMCAT-DEV, this is going to cause > portability problem

Re: cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-05 Thread Craig R. McClanahan
[EMAIL PROTECTED] wrote: > When Jasper is run in a servlet > container it no longer puts the class files in a package, they are now > in the default package. > As was discussed earlier on TOMCAT-DEV, this is going to cause portability problems for people who use beans that are not in package

cvs commit: jakarta-tomcat-4.0/jasper/src/share/org/apache/jasper CommandLineContext.java

2001-02-03 Thread glenn
glenn 01/02/03 17:03:04 Modified:jasper/src/share/org/apache/jasper CommandLineContext.java Log: - Implemented Java SecurityManager - Switched to using URLClassLoader Jasper now creates a URLClassLoader for each JSP page and defers any other class loading to the web app c