Metadata-Version: 2.0
Name: django-webmention
Version: 0.0.2
Summary: A pluggable implementation of webmention for Django projects.
Home-page: https://github.com/daneah/django-webmention
Author: Dane Hillard
Author-email: github@danehillard.com
License: MIT
Keywords: webmention pingback linkback blogging
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: Django (>=1.8.2)
Requires-Dist: requests (>=2.7.0)
Requires-Dist: pytz (==2015.4)

django-webmention
=================

webmention for Django projects.

Installation
------------

``$ pip install django-webmention``

-  Add ``webmention`` to ``INSTALLED_APPS``
-  Run ``manage.py migrate webmention``
-  Add
   ``(r'^webmention', include('webmention.urls'), namespace='webmention')``
   to top-level ``urls.py``
-  Run ``manage.py test webmention`` to ensure unit tests all pass

Usage
-----

-  Include webmention information by either:

   -  Adding ``webmention.middleware.WebMentionMiddleware`` to
      ``MIDDLEWARE_CLASSES`` (affects all views)
   -  Decorating a specific view with
      ``webmention.middleware.include_webmention_information``

-  View webmention responses in the Django admin tool and mark them as
   reviewed as needed


