django-badbrowser

Browser detection (including browser upgrade notices) for Django
Download

django-badbrowser Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • Adam Charnock
  • Publisher web site:
  • https://github.com/continuous

django-badbrowser Tags


django-badbrowser Description

django-badbrowser is a Django app that provides web browser detection (including browser upgrade notices) for Django.InstallationTo install django-badbrowser:1. Install with easy_install/pip/whatever2. Add django_badbrowser.middleware.BrowserSupportDetection to the MIDDLEWARE_CLASSES setting3. Add django_badbrowser to your INSTALLED_APPS setting4. Specify the BADBROWSER_REQUIREMENTS setting (see below for details and additional settings)5. Copy/sym-link the django_badbrowser/media/django-badbrowser/ directory into your media directoryConfig optionsBADBROWSER_REQUIREMENTSA list of any specific browser restrictions. Browsers listed here with versions lower than the specified version numbers will be shown the “Unsupported web browser” message. Any browsers not listed here will be free to access the site as normal, as will any clients which do not specify a user agent.Example:BADBROWSER_REQUIREMENTS = ( ("firefox", "3.0"), ("chrome", "3.0"), ("microsoft internet explorer", "8"), ("opera", None), # None indicates no support for the given browser, whatever the version)BADBROWSER_SUGGESTA list of browsers to suggest to the user on the “Unsupported web browser” page.Example:BADBROWSER_SUGGEST = ("firefox", "chrome", "safari", "opera", "microsoft internet explorer")BADBROWSER_BASE_TEMPLATEThe base template which should be extended in the rendering of the “Unsupported web browser” page. This page will probably need to have blocks for “extra_head” (within the head tag) and “content” (within the body tag)Example:BADBROWSER_BASE_TEMPLATE = "myapp/base.html"Product's homepage


django-badbrowser Related Software