Skip to main content

An implementation of rev=canonical url shortening for Django.

Project description

This is an implementation of rev=canonical url shortening in the form of Django application. Basically rev=canonical is nice idea about that site should give you two links to actual page: one is human-readable, and another is short version, intented to use in limited conditions.

This implementation is modelled after Simon Willison’s post and returns 301 permanent redirect for your short urls.

Configuration

Installation is simple - use it like any another Django application, basically: put it where other application of your project are residing and add 'revcanonical' to INSTALLED_APPS in settings.py. Then edit your urls.py and add inclusion of revcanonical’s urls to urlpatterns:

url(r'', include('revcanonical.urls')),

Use r'^someprefix/' instead of first argument if you’d like to see prefixed urls.

By default revcanonical uses internal Django’s Site model to determine your site domain, but you can set it manually in settings.py as REVCANONICAL_SITE variable.

Usage

Include such code in your template between <head> and </head> tags:

{% load revcanontags %}
{% revcanonical object %}

Of course, you should replace object with your own object variable. And, naturally, it should have get_absolute_url() method.

Additionally you can set your <a href> links to short urls:

{% load revcanontags %}
<a href="{% shorturl object %}">...</a>

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

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

Source Distribution

django-revcanonical-1.0.tar.gz (3.6 kB view hashes)

Uploaded Source

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