I was refering to the fact, that Eli described the interaction of the three components correctly and you don’t.
which more or less correctly describes the roles of the components, while
is either wrong or misunderstandable. Take a look at the diagram you linked - the View must know the Model to know what to display (doing the “sate query”) and the Controller is no accessor to the Model at least not in a wrapping fashion (like your statements seem to suggest to me). Also the Model does not know the View, at least not interface wise. It may “know” the View because it is hooked as a Listener, but that doesn’t make the View and its functionality available to the Model (again like your statements seem to suggest to me).
My experience of the MVC pattern come from daily work with multiple languages, frameworks and application setups - not from Wikipedia. Also I doubt that Sun is the originator of the MVC pattern so the term “official documentation” might be a bit exaggeratory.
You are right about the misimplementations, though. There are myriads of (mostly web-) frameworks out there, that state they implement MVC but doing only something vaguely related…