Metadata-Version: 1.0
Name: repoze.who.plugins.recaptcha
Version: 0.2
Summary: recaptcha repoze.who plugin implementation
Home-page: UNKNOWN
Author: Domen "iElectric" Kozar
Author-email: domen@dev.si
License: BSD-derived (http://www.repoze.org/LICENSE.txt)
Description: **repoze.who.recaptcha** implements server side of the recaptcha API. This ``IAuthenticator`` plugin examines environment for recaptcha form values and requests verification.
        
        **repoze.who.recaptcha** works based on form_handler condition:
        
        * if form_handler parameter is not given, always perform authentication.
        * if form_handler parameter is given, perform authentication only when one of the form_handler values (separated by space) matches the absolute URL where the form is processed.
        
        If the validation succeeds, no action is taken. Otherwise error is passed to ``environ['repoze.who.error']`` and ``HTTPUnauthorzied(401)`` is triggered.
        
        .. _bitbucket.org: http://www.bitbucket.org/iElectric/repozewhorecaptcha/
        
        Public Mercurial repo is avaliable at bitbucket.org_ ::
        
        # sample .ini configuration
        
        [plugin:recaptcha]
        use = repoze.who.plugins.captcha:make_authentication_plugin
        private_key = si3di5ndlam3x44d
        #optional
        form_handler = /process /login /admin
        
        [authenticators]
        plugins =
        recaptcha
        
        
        CHANGELOG:
        ===========
        
        0.1 - 21.09.2008
        ------------------
        * Inital release
        
        
Keywords: repoze.who captcha
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Development Status :: 3 - Alpha
