On Jun 29, 11:17 am, Wichert Akkerman <[EMAIL PROTECTED]> wrote:
> It's there in Pylons 0.9.7beta5. No idea where previous versions put it,
> but a quick grep should tell you.

It's new to 0.9.7beta5

In 0.9.6.1 , wsgiapp.py

class PylonsBaseWSGIApp
...
def setup_app_env
...
        registry = environ['paste.registry']
        registry.register(WSGIRequest.defaults, self.request_options)
        registry.register(WSGIResponse.defaults,
self.response_options)
        req = WSGIRequest(environ)
        # Setup the basic pylons global objects
        registry.register(pylons.request, req)
        registry.register(pylons.response, WSGIResponse())
        registry.register(pylons.buffet, self.buffet)
        registry.register(pylons.g, self.globals)
        registry.register(pylons.config, self.config)
        registry.register(pylons.h, self.helpers or \
                          pylons.legacy.load_h(self.package_name))


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to