vote up 2 vote down star
1

I have a pretty standard django app, and am wondering how to set the url routing so that I don't have to explicitly map each url to a view.

For example, let's say that I have the following views: Project, Links, Profile, Contact. I'd rather not have my urlpatterns look like this:

(r'^Project/$', 'mysite.app.views.project'),
(r'^Links/$', 'mysite.app.views.links'),
(r'^Profile/$', 'mysite.app.views.profile'),
(r'^Contact/$', 'mysite.app.views.contact'),

And so on. In Pylons, it would be as simple as:

map.connect(':controller/:action/:id')

And it would automatically grab the right controller and function. Is there something similar in Django?

flag

Wait, do you want '^Links/$', to point to 'mysite.app.views.links' ? – Pete Karl II Oct 3 '08 at 18:12
Yeah, copy/paste errors are pretty sweet. – swilliams Oct 3 '08 at 18:43

3 Answers

vote up 2 vote down check
mods = ('Project','Links','Profile','Contact')

urlpatterns = patterns('',
   *(('^%s/$'%n, 'mysite.app.views.%s'%n.lower()) for n in mods)
)
link|flag
That's giving me an error 'generator' object has no 'resolve'. I think I know what you're trying to do (write a route for each string in the tuple), but it's creating a Generator that django can't resolve instead. – swilliams Oct 3 '08 at 19:04
i didn't test it, try unwrapping the generator with a *(...for...). i'm editing the answer – Javier Oct 3 '08 at 19:28
I'm getting a syntax error with this now. I've never seen * used like that... is that supposed to dereference a pointer like C? Could you please test this before posting? – swilliams Oct 3 '08 at 20:04
it expands an iterator to positional arguments. i did test it already. – Javier Oct 3 '08 at 20:14
Are you using some kind of library? What version of python? I get a syntax error on every kind of iterator object I try that on. – swilliams Oct 3 '08 at 20:23
show 7 more comments
vote up 4 vote down

Unless you have a really huge number of views, writing them down explicitly is not too bad, from a style perspective.

You can shorten your example, though, by using the prefix argument of the patterns function:

urlpatterns = patterns('mysite.app.views',
    (r'^Project/$', 'project'),
    (r'^Links/$', 'links'),
    (r'^Profile/$', 'profile'),
    (r'^Contact/$', 'contact'),
)
link|flag
This is true, but now I'm feeling comitted. :) – swilliams Oct 3 '08 at 20:05
vote up 2 vote down

You might be able to use a special view function along these lines:

def router(request, function, module):
    m =__import__(module, globals(), locals(), [function.lower()])
    try:
        return m.__dict__[function.lower()](request)
    except KeyError:
        raise Http404()

and then a urlconf like this:

(r'^(?P<function>.+)/$', router, {"module": 'mysite.app.views'}),

This code is untested but the general idea should work, even though you should remember:

Explicit is better than implicit.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.