Skip to content

Instantly share code, notes, and snippets.

Created August 11, 2011 21:38
Show Gist options
  • Save anonymous/1140856 to your computer and use it in GitHub Desktop.
Save anonymous/1140856 to your computer and use it in GitHub Desktop.
Pasted form Komodo IDE
>>> from medley.common.middleware import ThreadLocalsRequestMiddleware
>>> class R(object):
... is_mobile = True
...
>>> R().is_mobile
True
>>> ThreadLocalsRequestMiddleware().process_request(R())
>>> from medley.common.middleware import get_current_request
>>> get_current_request().is_mobile
True
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment