Opened 15 years ago

Last modified 7 months ago

#12075 closed New feature

Add wsgiorg.routing args support — at Version 7

Reported by: Gustavo Narea Owned by: Gustavo Narea
Component: HTTP handling Version: dev
Severity: Normal Keywords: WSGI, wsgiorg.routing_args
Cc: Florian Apolloner Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Aymeric Augustin)

The wsgiorg.routing_args standard may be really useful if you want to use WSGI middleware or applications inside Django because some of them take advantage of that to do nice/useful things.

It's currently not supported in Django - But it will with the attached patch.

[edit] fixed broken link.

Change History (8)

comment:1 by Gustavo Narea, 15 years ago

I forgot to mention, the patch assumes that the WSGI environment is available, which won't true with mod_python until the patch I sent for #8927 is applied.

by Gustavo Narea, 14 years ago

Improved patch to support wsgiorg.routing_args

comment:2 by Russell Keith-Magee, 14 years ago

milestone: 1.2
Needs tests: set
Triage Stage: UnreviewedAccepted

comment:3 by Gustavo Narea, 14 years ago

Status: newassigned

I reimplemented this functionality as a Django middleware in twod.wsgi. That middleware has full unit test coverage:
http://bitbucket.org/2degrees/twod.wsgi/src/tip/twod/wsgi/middleware.py
http://bitbucket.org/2degrees/twod.wsgi/src/tip/tests/test_middleware.py

Would you like me to write a patch with the middleware or write tests for the initial patch?

comment:4 by Julien Phalip, 13 years ago

Severity: Normal
Type: New feature

comment:5 by Aymeric Augustin, 12 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:6 by Aymeric Augustin, 12 years ago

Easy pickings: unset

Change Easy pickings from NULL to False.

comment:7 by Aymeric Augustin, 11 years ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.
Back to Top