Re: modperl/ASP and MVC design pattern

2001-04-25 Thread ed phillips
[EMAIL PROTECTED] wrote: > > Francesco, I believe that Ian was joking, hence the yikes before the name, > > so the above post is the documentation! > > > > Ed > > > > .. so the best environment for the MVC++ design pattern is parrot/mod_parrot :) > http://www.oreilly.com/news/parrotstory_0401.ht

Re: modperl/ASP and MVC design pattern

2001-04-25 Thread f . pasqualini
Quoting ed phillips <[EMAIL PROTECTED]>: > Francesco Pasqualini wrote: > > > - Original Message - > > From: <[EMAIL PROTECTED]> > > To: "Francesco Pasqualini" <[EMAIL PROTECTED]> > > Cc: <[EMAIL PROTECTED]> > > Sen

Re: modperl/ASP and MVC design pattern

2001-04-24 Thread ed phillips
Francesco Pasqualini wrote: > - Original Message - > From: <[EMAIL PROTECTED]> > To: "Francesco Pasqualini" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Friday, April 20, 2001 8:11 PM > Subject: Re: modperl/ASP and MVC design patt

Re: modperl/ASP and MVC design pattern

2001-04-24 Thread Francesco Pasqualini
- Original Message - From: <[EMAIL PROTECTED]> To: "Francesco Pasqualini" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, April 20, 2001 8:11 PM Subject: Re: modperl/ASP and MVC design pattern > > You can (I have) accomplish this with mod_pe

Re: modperl/ASP and MVC design pattern

2001-04-21 Thread Joshua Chamas
> I' m using UniquePackages and because subs name conflict I need to put the > subs in the asp pages. > Can I still use initialization of global vars in the > global.asa/Spript_OnStart (as you suggest) ? > ...so the ASP/$Server->Transfer() is the equivalent of JSP/forward > I don't know if tra

Re: modperl/ASP and MVC design pattern

2001-04-21 Thread Francesco Pasqualini
- Original Message - From: "Joshua Chamas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, April 21, 2001 3:54 AM Subject: Re: modperl/ASP and MVC design pattern > [EMAIL PROTECTED] wrote: > > > > To avoid p

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Joshua Chamas
[EMAIL PROTECTED] wrote: > > To avoid passing many parameters to the subs I become using a $cx (cx stand for > context) global hash containig everything the subs needed, passed to each sub. > >page test.asp >$cx = {}; >$cx->{'name'} = 'default name'; >$cx->{'age'} = 30; >...

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread f . pasqualini
Quoting Joshua Chamas <[EMAIL PROTECTED]>: > > Francesco Pasqualini wrote: > > > > an interesting feature of JSP is the possibility to use the MVC design > pattern (INPUT/OUTPUT/LOGIC separation) > > This is obtained with the "forward" instruction. > > How the MVC design pattern can be implemen

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Gunther Birznieks
At 10:01 AM 4/20/01 -0700, Perrin Harkins wrote: >On Fri, 20 Apr 2001, Francesco Pasqualini wrote: > > But are there in the mod_perl architecture some guidelines and/or > > frameworks that encourages the MVC design patern ? I think that > > Apache::ASP could be (for example) the right tool, adding

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Joachim Zobel
At 15:44 20.04.2001 +0200, you wrote: >an interesting feature of JSP is the possibility to use the MVC design >pattern (INPUT/OUTPUT/LOGIC separation) >This is obtained with the "forward" instruction. >How the MVC design pattern can be implemented in the mod_perl (and >specifically Apache::ASP)

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Joachim Zobel
o:[EMAIL PROTECTED]>[EMAIL PROTECTED]> >Sent: Friday, April 20, 2001 5:32 PM >Subject: Re: modperl/ASP and MVC design pattern > >I think that Apache::ASP could be (for example) the right tool, adding the >"forward" feature. The forward seems to be an internal_redirec

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Ian Kallen <[EMAIL PROTECTED]>
You can (I have) accomplish this with mod_perl and HTML::Mason, Mason's root level autohandler can play the role of the JSP model 2 "controller servlet": dispatching logic processing to Perl objects (er, beans) and "forwarding" to a view (with the Mason $m->call_next or $m->comp mechanisms). I t

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Joshua Chamas
> Francesco Pasqualini wrote: > > an interesting feature of JSP is the possibility to use the MVC design pattern >(INPUT/OUTPUT/LOGIC separation) > This is obtained with the "forward" instruction. > How the MVC design pattern can be implemented in the mod_perl (and specifically >Apache::ASP) a

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Perrin Harkins
On Fri, 20 Apr 2001, Francesco Pasqualini wrote: > But are there in the mod_perl architecture some guidelines and/or > frameworks that encourages the MVC design patern ? I think that > Apache::ASP could be (for example) the right tool, adding the > "forward" feature. The forward feature looks lik

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread T.J. Mather
> But are there in the mod_perl architecture some guidelines and/or frameworks > that encourages the MVC design patern ? Apache::PageKit is a MVC based framework. You can find it on CPAN here: http://cpan2.org/Asset/display?dist=Apache-PageKit I wrote an article on it for take23: http://take

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Francesco Pasqualini
- Original Message -From: "Brett W. McCoy" <[EMAIL PROTECTED]>To: "Francesco Pasqualini" <[EMAIL PROTECTED]>Cc: <[EMAIL PROTECTED]>Sent: Friday, April 20, 2001 5:32 PMSubject: Re: modperl/ASP and MVC design pattern> On Fri, 20 Apr

Re: modperl/ASP and MVC design pattern

2001-04-20 Thread Brett W. McCoy
On Fri, 20 Apr 2001, Francesco Pasqualini wrote: > an interesting feature of JSP is the possibility to use the MVC design > pattern (INPUT/OUTPUT/LOGIC separation) This is obtained with the > "forward" instruction. How the MVC design pattern can be implemented > in the mod_perl (and specifically

modperl/ASP and MVC design pattern

2001-04-20 Thread Francesco Pasqualini
an interesting feature of JSP is the possibility to use the MVC design pattern (INPUT/OUTPUT/LOGIC separation) This is obtained  with the "forward" instruction. How the MVC design pattern can be implemented in the mod_perl (and specifically Apache::ASP) architecture ?   Thanks Francesco