django-urlalternatives

Alternative Django views under same URL pattern
Download

django-urlalternatives Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL v3
  • Publisher Name:
  • GW
  • Publisher web site:
  • http://gw.tnode.com/

django-urlalternatives Tags


django-urlalternatives Description

Alternative Django views under same URL pattern django-urlalternatives is a Django app that provides a way for dispatching one URL pattern to the first alternative view (callback function) in a list that returns success.In case you want to assing in an URLconf the same URL pattern to more than one view (or callback function), such that the next ones are fallbacks in case of errors (ie. HTTP response codes >= 400). This is often the case when combining different apps with dynamic URLs (such as CMSs) and you want to respond with the one that has that content.UsageAs you can see from the following example the URL alternatives dispatcher is simply used as part of the urlpatterns variable in urls.py and supports passing of positional and keyword arguments, eg.: urlpatterns += pattern('', (r'^', 'urlalternatives.views.dispatcher', {'callbacks':, {'url':'/'}), ]}), ) Requirements: · Python


django-urlalternatives Related Software