show/hide this revision's text 2 deleted 8 characters in body

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.project'}),
mysite.app.views'}),

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

Explicit is better than implicit.

show/hide this revision's text 1

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.project'}),

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

Explicit is better than implicit.