After reading this blog post i got curious and got this of wikipedia (ok not the best source)
1. The user interacts with the user interface in some way (e.g. presses a button).
2. A controller handles the input event from the user interface, often via a registered handler or callback.
3. The controller accesses the model, possibly updating it in a way appropriate to the user’s action (e.g. controller updates user’s Shopping cart).[3]
4. A view uses the model (indirectly) to generate an appropriate user interface (e.g. the view produces a screen listing the shopping cart contents). The view gets its own data from the model. The model has no direct knowledge of the view.
5. The user interface waits for further user interactions, which begins the cycle anew.
This part from point 4 got me puzzled; A view uses the model (indirectly)
How does a view uses the model indirectly if it may not be a part of the controller (see first url)? I’m guessing the observer pattern must be implemented in a true MVC framework.