Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-23 Thread Martin Cooper
On Thu, 23 Dec 2004 10:58:16 -0800, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On Thu, 23 Dec 2004 10:54:31 -0800, Dakota Jack <[EMAIL PROTECTED]> wrote: > > What does "Commons FileUpload being Filter-ized" mean? > > Martin has talked (on the Commons dev list) about his plans to upgrade > Commo

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-23 Thread Craig McClanahan
On Thu, 23 Dec 2004 10:54:31 -0800, Dakota Jack <[EMAIL PROTECTED]> wrote: > What does "Commons FileUpload being Filter-ized" mean? Martin has talked (on the Commons dev list) about his plans to upgrade Commons FileUpload to use a Servlet Filter, and the request wrapper features of Servlet 2.3, in

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-23 Thread Dakota Jack
What does "Commons FileUpload being Filter-ized" mean? Jack On Thu, 23 Dec 2004 08:37:24 -0800, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On Wed, 22 Dec 2004 23:40:33 -0800, Don Brown <[EMAIL PROTECTED]> wrote: > > > The problem with putting code like that into a command, is what if > > som

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-23 Thread Craig McClanahan
On Wed, 22 Dec 2004 23:40:33 -0800, Don Brown <[EMAIL PROTECTED]> wrote: > The problem with putting code like that into a command, is what if > someone wants to replace the populate command, but doesn't want to > re-invent the multipart stuff? I think there is a place for service > functions, cal

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-23 Thread Joe Germuska
At 1:17 PM -0800 12/22/04, Don Brown wrote: "coming soon"? Is that an offer? :) uh-oh. Well, to be honest, not very soon, as I'm going to be mostly offline for the next week for the holidays. (I did say "*if*...) I haven't felt like there's a clear consensus on how to move such a thing forwar

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-22 Thread Don Brown
; Sent: Wednesday, December 22, 2004 9:17 PM Subject: Re: ViewUtils and UtilityFactory (was Extracting taglibs) "coming soon"? Is that an offer? :) I like the API bean aka ViewContext aka ConfigHelper and agree it is a better solution. Reading over the API bean thread, Ted has convinced m

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-22 Thread Niall Pemberton
fragments of common code. Niall - Original Message - From: "Don Brown" <[EMAIL PROTECTED]> To: "Joe Germuska" <[EMAIL PROTECTED]> Cc: "Struts Developers List" Sent: Wednesday, December 22, 2004 9:17 PM Subject: Re: ViewUtils and UtilityFactory

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-22 Thread Don Brown
"coming soon"? Is that an offer? :) I like the API bean aka ViewContext aka ConfigHelper and agree it is a better solution. Reading over the API bean thread, Ted has convinced me this bean would actually be created for each request probably somewhere early in the chain. While it could be pas

Re: ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-22 Thread Joe Germuska
At 12:33 PM -0800 12/22/04, Don Brown wrote: What about having a UtilityFactory class that provides RequestUtils and ViewUtils? It goes without saying we'd deprecate the static methods and delegate to new, non-static methods on an instance pulled from this factory. Does Struts have a consisten

ViewUtils and UtilityFactory (was Extracting taglibs)

2004-12-22 Thread Don Brown
e tiles sub-project that struts core would use. Don't JSF and Spring currently use tiles and have to include struts.jar when all they really want is tiles? -Original Message- From: Don Brown [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 7:51 PM To: Struts Developers List Sub

Re: Extracting taglibs

2004-12-22 Thread Nathan Bubna
>>completely separate tiles sub-project that struts core would use. Don't > >>JSF and Spring currently use tiles and have to include struts.jar when > >>all they really want is tiles? > >> > >> > >>>-Original Message- > >>>From: Don Brown [ma

Re: Extracting taglibs

2004-12-22 Thread Martin Cooper
On Tue, 21 Dec 2004 21:06:19 -0800, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On Tue, 21 Dec 2004 20:45:03 -0800, Don Brown <[EMAIL PROTECTED]> wrote: > > > I agree as well. This lets us follow a consistent approach to > > subprojects, where they may (and probably should) link to Struts core,

Re: Extracting taglibs

2004-12-22 Thread Don Brown
:) Actually, in the extraction I performed so far, I did just that and moved TilesPreProcessor into the o.a.s.tiles.commands package. There was one other class, o.a.s.actions.RedeployableActionServlet that I moved into o.a.s.tiles since it was full of references to TilesRequestProcessor. Don

Re: Extracting taglibs

2004-12-22 Thread David Graham
--- Don Brown <[EMAIL PROTECTED]> wrote: > FWIW, so far, I extracted tiles and taglib into their own projects, and > got both core and taglib compiling (haven't tried tiles yet). It took > the steps I described earlier as well as moving some methods from > TagUtils back into ResponseUtils. O

Re: Extracting taglibs

2004-12-22 Thread Joe Germuska
At 6:09 AM -0600 12/22/04, Vic wrote: Joe Germuska wrote: I do think that Struts shouldn't depend on subprojects. -1. core should not depdend on any subprojects I think. Not today, 1st day or repackaging but eventualy. I also think subprojects should be set up to depend on a struts.jar ... and n

Re: Extracting taglibs

2004-12-22 Thread Vic
Joe Germuska wrote: I do think that Struts shouldn't depend on subprojects. -1. core should not depdend on any subprojects I think. Not today, 1st day or repackaging but eventualy. I also think subprojects should be set up to depend on a struts.jar ... and not the code. -- RiA-SoA w/JDNC

Re: Extracting taglibs

2004-12-22 Thread Joe Germuska
At 10:24 PM -0800 12/21/04, Don Brown wrote: FWIW, so far, I extracted tiles and taglib into their own projects, and got both core and taglib compiling (haven't tried tiles yet). It took the steps I described earlier as well as moving some methods from TagUtils back into ResponseUtils. Of cours

Re: Extracting taglibs

2004-12-21 Thread Don Brown
FWIW, so far, I extracted tiles and taglib into their own projects, and got both core and taglib compiling (haven't tried tiles yet). It took the steps I described earlier as well as moving some methods from TagUtils back into ResponseUtils. Of course, if ResponseUtils has been dreprecated lo

Re: Extracting taglibs

2004-12-21 Thread Dakota Jack
This would be Tony the Tiger GRRREeattt! Jack On Tue, 21 Dec 2004 21:06:19 -0800, Craig McClanahan <[EMAIL PROTECTED]> wrote: > On Tue, 21 Dec 2004 20:45:03 -0800, Don Brown <[EMAIL PROTECTED]> wrote: > > > I agree as well. This lets us follow a consistent approach to > > subprojec

Re: Extracting taglibs

2004-12-21 Thread Craig McClanahan
On Tue, 21 Dec 2004 20:45:03 -0800, Don Brown <[EMAIL PROTECTED]> wrote: > I agree as well. This lets us follow a consistent approach to > subprojects, where they may (and probably should) link to Struts core, > but Struts core should not depend on them. I hope this can actually be accomplished

Re: Extracting taglibs

2004-12-21 Thread Don Brown
Message- From: Don Brown [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 7:51 PM To: Struts Developers List Subject: Extracting taglibs My basic assumption in approaching taglibs extraction into its own subproject is it can reference Struts classes, but Struts classes shouldn't

Re: Extracting taglibs

2004-12-21 Thread David Graham
n, Hal > <[EMAIL PROTECTED]> wrote: > > > > > >>Haven't look into this much but it would seem better to have a > > >>completely separate tiles sub-project that struts core would use. > Don't > > >>JSF and Spring currently use tiles an

Re: Extracting taglibs

2004-12-21 Thread Martin Cooper
ook into this much but it would seem better to have a > > >>completely separate tiles sub-project that struts core would use. Don't > > >>JSF and Spring currently use tiles and have to include struts.jar when > > >>all they really want is tiles? > > &

Re: Extracting taglibs

2004-12-21 Thread Craig McClanahan
to have a > >>completely separate tiles sub-project that struts core would use. Don't > >>JSF and Spring currently use tiles and have to include struts.jar when > >>all they really want is tiles? > >> > >> > >>>-Original Message

Re: Extracting taglibs

2004-12-21 Thread Don Brown
Sent: Tuesday, December 21, 2004 7:51 PM To: Struts Developers List Subject: Extracting taglibs My basic assumption in approaching taglibs extraction into its own subproject is it can reference Struts classes, but Struts classes shouldn't reference it. If that is correct, here are the changes I see hap

Re: Extracting taglibs

2004-12-21 Thread Eddie Bush
-- > > From: Don Brown [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, December 21, 2004 7:51 PM > > To: Struts Developers List > > Subject: Extracting taglibs > > > > My basic assumption in approaching taglibs extraction into its own > > subproject is it can

RE: Extracting taglibs

2004-12-21 Thread Deadman, Hal
on Brown [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 21, 2004 7:51 PM > To: Struts Developers List > Subject: Extracting taglibs > > My basic assumption in approaching taglibs extraction into its own > subproject is it can reference Struts classes, but Struts classes > sh

Extracting taglibs

2004-12-21 Thread Don Brown
My basic assumption in approaching taglibs extraction into its own subproject is it can reference Struts classes, but Struts classes shouldn't reference it. If that is correct, here are the changes I see happening to extract taglibs: 1. Move o.a.s.taglib out into its own subproject src tree 2. Remo