Metadata-Version: 1.1
Name: django-x-robots-tag-middleware
Version: 1.2
Summary: Enables returning the X-Robots-Tag header based on Django settings.
Home-page: http://timlwhite.com
Author: Tim White
Author-email: tim@cyface.com
License: BSD
Description: ===============================
        Django X-Robots-Tag Middleware
        ===============================
        
        .. image:: https://badge.fury.io/py/django-x-robots-tag-middleware.svg
          :target: http://badge.fury.io/py/django-x-robots-tag-middleware
          :alt: PyPi Package Version
        
        .. image:: https://travis-ci.org/cyface/django-x-robots-tag-middleware.svg?branch=master
          :target: https://travis-ci.org/cyface/django-x-robots-tag-middleware
          :alt: Travis Build Status
        
        .. image:: https://coveralls.io/repos/cyface/django-x-robots-tag-middleware/badge.svg?branch=master&service=github
          :target: https://coveralls.io/github/cyface/django-x-robots-tag-middleware?branch=master
          :alt: Coveralls Code Coverage
        
        .. image:: https://scrutinizer-ci.com/g/cyface/django-x-robots-tag-middleware/badges/quality-score.png?b=master
          :target: https://scrutinizer-ci.com/g/cyface/django-x-robots-tag-middleware/?branch=master)
          :alt: Scrutinizer Code Quality
        
        .. image:: https://readthedocs.org/projects/django-x-robots-tag-middleware/badge/?version=latest
            :target: http://django-x-robots-tag-middleware.readthedocs.org/en/latest/?badge=latest
            :alt: Documentation Status
        
        Simple Django middleware to use the ``X-Robots-Tag`` header based on a config param.
        
        Installation
        ------------
        
        From `pypi <https://pypi.python.org>`_::
        
            $ pip install django-x-robots-tag-middleware
        
        or::
        
            $ easy_install django-x-robots-tag-middleware
        
        or clone from `github <http://github.com>`_::
        
            $ git clone git://github.com/cyface/django-x-robots-tag-middleware.git
        
        
        Usage
        -----
        
        1. Add ``'x_robots_middleware.XRobotsMiddleware',`` to your middleware list in settings.py.
        
        2. Add ``X_ROBOTS_TAG = ['noindex','nofollow']`` to your settings.py with the settings you want for the X_ROBOTS_TAG.
        
        Details about the values for the tag and what they do can be found `in the Google Documentation <https://developers.google.com/webmasters/control-crawl-index/docs/robots_meta_tag?hl=en#using-the-x-robots-tag-http-header>`_.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
