Phillip B Oldham
Phillip B Oldham

Reputation: 19375

MVC alternatives: examples of MVA & AVC?

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?

Upvotes: 6

Views: 2561

Answers (3)

Roman
Roman

Reputation: 66156

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.

Upvotes: 0

Gabriel Ščerbák
Gabriel Ščerbák

Reputation: 18570

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.

Upvotes: 0

Related Questions