Metadata-Version: 1.1
Name: djangospam
Version: 0.1.6
Summary: Django antispam module
Home-page: https://github.com/leandroarndt/djangospam
Author: Leandro Arndt
Author-email: contato@correioprogressista.com.br
License: UNKNOWN
Download-URL: https://github.com/leandroarndt/djangospam/archive/master.zip
Description: 
        djangospam
        ==========
        
        Django antispam module with an invisible fake comment/contact form and Akismet
        verification.
        
        See <https://github.com/leandroarndt/djangospam> for up to date help.
        
        Fake form use
        -------------
        
        Include `djangospam` in your installed modules (at `settings.py`) and
        insert the following code in your template (*todo*)::
        
            {% load djangospam %}
            
            ...
            
            {% djangospam 'optional destination uri' }
        
        or (*working*)::
        
            {% include 'djangospam/form.html' %}
        
        In this last case, you may also define a `spam_uri` context variable with the
        fake formulary destination URI. If no URI is defined, the form will be posted
        at the same address of the page being attacked
        (It will be used a `<form method="post" action="">...</form>` code).
        
        Akismet
        -------
        
        *TODO*
        
        Results
        -------
        
        The fake form alone is getting 100% efficiency at
        <http://www.correioprogressista.com.br/>, which used to have more than 200
        spam comments each day. Even so, I recommend using Akismet or another
        spam analysis tool.
Keywords: django,spam,akismet
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
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
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: django
