----------------
* Rewrote/refactored restish.templating to be more flexible, less weird ;-) and
to make resources need no direct relation to an application's lib.templating
module. WARNING: backwards incompatible change ... sorry.
* Extract render_page, render_response and render_element from templating
decorators allowing greater control over the response when the decorator's
convenience gets in the way.
* Performance improvments: restish's Request and Response objects now directly
subclass webob's classes avoiding lots of getattr() calls; restish.app now
uses the PATH_INFO from the WSGI environ instead of creating a number of URL
instances to work out the same thing.
* Added Request.application_path as a convenience for getting the path part of
the application's root URL.
* Added the ApplicationURLAccessor contrib util, an attempt to make it easy for
an application to define and create its fixed/canonical URLs.
* Added Tempita templating renderer "contrib" module.