Re: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Jeffry Houser
Are you talking about Cairngorm specific stuff here? Or generic MVC questions? It sounds like your post has a specific Cairngorm slant. Glenn Williams wrote: > > I do have some logic in the model. > > when I build URLS, I build them in the delegate before making the > service call. A d

Re: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Daniel Gold
www.flex-ria.com > > www.tinylion.co.uk > > www.our-little-secret.com > > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Jeffry Houser > *Sent:* Tuesday, April 15, 2008 2:26 PM > *To:* flexcoders@yahoogroups.com > *Subject:* Re

RE: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Glenn Williams
.uk www.our-little-secret.com From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffry Houser Sent: Tuesday, April 15, 2008 2:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MVC - Philosophical question I'd put it in the model. The Contro

Re: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Jeffry Houser
I'd put it in the model. The Controller is just supposed to facilitate communication between the View and the Model. Building a URL (or retrieving it from a database) is some form of business logic and that should go in the model. Cesare Rocchi wrote: > > > Hi, > > I am developing an appl

RE: [flexcoders] MVC - Philosophical question

2008-04-15 Thread Glenn Williams
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Cesare Rocchi Sent: Tuesday, April 15, 2008 9:55 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] MVC - Philosophical question Hi, I am developing an application which loads data from the internet. Many actions, many different

[flexcoders] MVC - Philosophical question

2008-04-15 Thread Cesare Rocchi
Hi, I am developing an application which loads data from the internet. Many actions, many different urls, often built on the fly. Since I am enjoying mvc, where would you build the url? in the controller or in the model? -c. __