Skip to main content

Automagic url namespace resolution

Project description

Django supports namespaces that help applications find out their current namespace and refer to themselves in a stable way even if there are more than one instance of the same module in the url patterns.

However, Django does not automatically set the current_app context which means that the app will actually resolve the namespaced urls to the last announced instance of itself.

This context processor digs the detail up and voilá.

Usage

The context processor needs to be added to the template configuration. The rude way to do it is as follows:

TEMPLATES[0]['OPTIONS']['context_processors'].append(
    'namespaced.context_processors.namespaced')

Using a context processor for this use is a bit questionable and generally a middleware would be the correct place to edit requests. However middlewares are executed at a stage where the URL resolution has not been matched and will traverse all URLs even if they are not going to be used. This code is mostly relevant in views anyway.

This enables you to have two separate instances of the same app in two different urls. Normally Django would always refer to the last instance by the app name which will mess up all internal linkage within any of the previous instances. Let’s assume we have this inside an app:

{% url 'myapp:index' %}

To make this work for both instances, the urls.py should look something like this:

urlpatterns = [
    url(r'^first/', include('myapp.urls', namespace='first', app_name='myapp')),
    url(r'^last/', include('myapp.urls', namespace='last', app_name='myapp)),
]

The apps can refer to themselves with myapp:, each other with first: and last:. It will most likely make sense to use the explicit names in the rest of the project.

For now, the use without namespaces has not been tested.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-namespaced-1.0.1.tar.gz (18.3 kB view details)

Uploaded Source

Built Distributions

django_namespaced-1.0.1-py3-none-any.whl (9.2 kB view details)

Uploaded Python 3

django_namespaced-1.0.1-py2-none-any.whl (9.3 kB view details)

Uploaded Python 2

File details

Details for the file django-namespaced-1.0.1.tar.gz.

File metadata

File hashes

Hashes for django-namespaced-1.0.1.tar.gz
Algorithm Hash digest
SHA256 c9dc3e035fead5bd97fb251f4a6f7c812abeff14d58b31cc202db8772848d611
MD5 1434bf7af398eac892405bf0c19e561a
BLAKE2b-256 c27b899544cd8aea99791a60bcaeaa00159b9a04185454d3a09a22de2577dd50

See more details on using hashes here.

File details

Details for the file django_namespaced-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_namespaced-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6505100b1ed62d55d140d811b7f7545b5c4dc7061525d60832d6404a6a41db81
MD5 7fecd1a73b5dfceac5209f5f997057d1
BLAKE2b-256 02d3e6765d643911137626f83d0e1bbc62b94b94295cea04f544871ce7509acc

See more details on using hashes here.

File details

Details for the file django_namespaced-1.0.1-py2-none-any.whl.

File metadata

File hashes

Hashes for django_namespaced-1.0.1-py2-none-any.whl
Algorithm Hash digest
SHA256 f89850286d911fff5f1edf9076451d873a77eca893173368fe0ccbd87dc1662b
MD5 dda0cd718966d615c527b9d23970073e
BLAKE2b-256 fdf71b691e883025441f10881771b27a7d4dd4d5037399e2d5bb1f79627b2d09

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page