> Section 4.2 of the book explains what happens.
>
> If the URL does not request a static file web2py processes the request
> in the following order:
> • Parses cookies.
> • Creates an environment in which to execute the function.
> • Initializes request, response, cache.
> • Opens the existing session or creates a new one.
> • Executes the models belonging to the requested application.
> • Executes the requested controller action function.
> • If the function returns a dictionary, executes the associated view.
> • On success, commits all open transactions.
> • Saves the session.
> • Returns an HTTP response.
>
> Note the part about a dictionary. If the controller returns a
> dictionary then a view is used to format the response, otherwise the
> return from the controller is used as the response.
>

Great, I jumped over the Core part just to quickly get started.
THanks

Dan


-- 
To unsubscribe, reply using "remove me" as the subject.

Reply via email to