├── .gitignore ├── .travis.yml ├── LICENCE ├── MANIFEST.in ├── README.md ├── README.rst ├── example ├── __init__.py ├── app │ ├── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── manage.py ├── settings.py └── urls.py ├── follow ├── __init__.py ├── admin.py ├── models.py ├── registry.py ├── signals.py ├── templates │ └── follow │ │ └── form.html ├── templatetags │ ├── __init__.py │ └── follow_tags.py ├── tests.py ├── urls.py ├── utils.py └── views.py ├── setup.py └── travis.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/README.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/example/app/models.py -------------------------------------------------------------------------------- /example/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/example/app/tests.py -------------------------------------------------------------------------------- /example/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/example/app/views.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/example/urls.py -------------------------------------------------------------------------------- /follow/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6.1' 2 | -------------------------------------------------------------------------------- /follow/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/admin.py -------------------------------------------------------------------------------- /follow/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/models.py -------------------------------------------------------------------------------- /follow/registry.py: -------------------------------------------------------------------------------- 1 | 2 | registry = [] 3 | model_map = {} 4 | -------------------------------------------------------------------------------- /follow/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/signals.py -------------------------------------------------------------------------------- /follow/templates/follow/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/templates/follow/form.html -------------------------------------------------------------------------------- /follow/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /follow/templatetags/follow_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/templatetags/follow_tags.py -------------------------------------------------------------------------------- /follow/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/tests.py -------------------------------------------------------------------------------- /follow/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/urls.py -------------------------------------------------------------------------------- /follow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/utils.py -------------------------------------------------------------------------------- /follow/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/follow/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caffeinehit/django-follow/HEAD/setup.py -------------------------------------------------------------------------------- /travis.txt: -------------------------------------------------------------------------------- 1 | # Test requirements for travis 2 | 3 | django >= 1.1 --------------------------------------------------------------------------------