Metadata-Version: 1.1
Name: django-insight
Version: 0.2
Summary: Records and displays registration origin stats.
Home-page: http://github.com/praekelt/django-insight
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Description: Django Insight User Guide
        =========================
        
        Insight keeps track of how users get to your site. It allows you to create an origin with an associated URL. If a user browses to this URL, 
        they are redirected to the main site and their origin is stored when they register. You can browse to Insight on Django's admin interface to
        see stats like registration growth per origin and the percentage of users coming from a specific origin.
        
        How to use
        ----------
        
        1. Add `insight` to INSTALLED_APPS.
        2. Run `manage.py migrate insight` (requires South).
        3. Create as many origins as you need via the Django admin interface (URLs are automatically generated).
        4. Use the URLs on other websites to direct people to your site.
        
        Requirements
        ------------
        
        - Django 1.4 and above
        - The following Django modules:
            - `django.contrib.auth`
            - `django.contrib.contenttypes`
            - `django.contrib.sessions`
        - The following Django middlewares:
            - `django.contrib.auth.middleware.AuthenticationMiddleware`
            - `django.contrib.sessions.middleware.SessionMiddleware`
        - South
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        
        * Rizmari Versfeld
        
        Changelog
        =========
        
        0.2 (22-10-2013)
        ----------------
        #. Support for custom user models in Django 1.5 and up.
        
        0.1 (02-04-2013)
        ----------------
        #. Send `origin_hit` signal on url hit. Other apps can use it for custom tracking.
        #. Can enable/disable registration tracking per origin.
        #. Add ability to record querystring parameters in tracking urls.
        
        0.0.1 (28-06-2012)
        ------------------
        #. First release
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
