django-revcanonical

An implementation of rev=canonical url shortening for Django
Download

django-revcanonical Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • Alexander Solovyov
  • Publisher web site:
  • http://hg.piranha.org.ua/

django-revcanonical Tags


django-revcanonical Description

An implementation of rev=canonical url shortening for Django django-revcanonical 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.ConfigurationInstallation 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.UsageInclude such code in your template between and 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 > Requirements: · Python


django-revcanonical Related Software