This is the default handler for feincms page content.
It isn’t a class-based-view like those in Django’s generic view framework. State should not be stored on the Handler class, because of thread-safety and cross polination issues.
Calls prepare, render and finalize, in this order.
Runs finalize() on content types having such a method, adds headers and returns the final response.
Prepare / pre-process content types. If this method returns anything, it is treated as a HttpResponse and handed back to the visitor.
The render step. Must return a HttpResponse.
Default handler
All views in the feincms.views.generic module are almost the same as their counterparts in django.views.generic (before class-based views came along), except that they add a feincms_page object to the context.
Adds the best-match page to the extra_context keyword argument. Mainly used to provide generic views which integrate into the page module.
Marks the view method as standalone view; this means that HttpResponse objects returned from ApplicationContent are returned directly, without further processing.