I'm interested in learning about the alternative patterns to Model-View-Controller, specifically the Model-View-Adapter and Application-View-Controller patterns.

Google results tend to be either a high-level overview or Java-based.

Can anyone either provide, or point me to, an example of these patterns in either PHP, Python or JavaScript?

link|improve this question

72% accept rate
And what's wrong with MVC? – Roman Mar 12 '10 at 22:29
There's nothing "wrong" with MVC, but sometimes the problem doesn't fit exactly with that pattern. MVA seems as though it could help with my particular task, but I could do with an example to be sure. – unpluggd Mar 13 '10 at 12:33
1  
look also at the DCI (data, contexts and interactions) architecture – Gabriel Ščerbák Apr 6 '10 at 22:57
there is also PAC (Presentation Abstraction Controller) described in POSA1 and MVVM (Model View ViewModel) and MVP (Model View Presenter) by Martin Fowler. – Gabriel Ščerbák Apr 8 '10 at 15:37
feedback

3 Answers

This could be "python" enough: http://en.wikipedia.org/wiki/Application_View_Controller You should look at that framework, although patterns aren't frameworks and understanding frameworks won't necessary make you understand the pattern.

link|improve this answer
The GoF authors suggest we understand patterns in the perspective we implement them, including languages, including frameworks. – Radek Jun 9 '10 at 21:44
@Radek Patterns can be described as solutions for problems in a certain context. What I say is that you get different solutions for the same problem in different contexts, what you say is that you need to know the context to apply the solution I guess. I saw people many times think the solutions only are the patterns and therefore I want to stress their wider scope. – Gabriel Ščerbák Jun 10 '10 at 7:20
feedback

As I understand from AVC description on its site, AVC is not a design pattern, it's a framework for python (and for jython as well).

That's why I think that your question is incorrect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.