Metadata-Version: 1.0
Name: django-dfp
Version: 0.1.1
Summary: DFP implementation for Django
Home-page: http://github.com/praekelt/django-dfp
Author: Praekelt Foundation
Author-email: dev@praekelt.com
License: BSD
Description: Django Simple Autocomplete
        ==========================
        **App that provides tags to fetch Google DFP ads asynchronously in a single request.**
        
        .. contents:: Contents
            :depth: 5
        
        Overview
        --------
        
        Google provides server side adds via its DFP service. This product is inspired
        by the code at
        http://support.google.com/dfp_sb/bin/answer.py?hl=en&answer=1651549. To keep
        the Django implementation as simple as possible this product changes the order
        of the Javascript from that page.
        
        Installation
        ------------
        
        #. Install or add ``django-dfp`` to your Python path.
        
        #. Add ``dfp`` to your ``INSTALLED_APPS`` setting.
        
        Usage
        -----
        
        Load `dfp_tags` in your template, eg. `{% load dfp_tags %}`. Call `{%
        dfp_header %}` once in the HEAD of your template.
        
        An example tag is
        
            {% dfp_tag "/1234/travel" 300 250 "interests" "sports" "music" %}
        
        You may call as many tags as you want. See http://support.google.com/dfp_sb/bin/answer.py?hl=en&answer=1651549 for more examples.    
        
        Authors
        =======
        
        Praekelt Foundation
        -------------------
        
        * Hedley Roos
        
        Changelog
        =========
        
        0.1.1
        -----
        #. Allow variables to be passed as arguments to the template tag.
        
        0.1
        ---
        #. 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
