Skip to main content

Captcha support for Silva

Project description

Copyright (c) 2008, Infrae. All rights reserved. See also LICENSE.txt

Captcha Support for Silva

This is a captcha support for Silva. It works with the help of collective.captcha, and plone.keyring.

After installing the extension, you can either use a formlib widget, or ask the captcha directly.

You can get the captcha image in your template the following way:

<tal:captcha tal:define="captcha nocall:here/@@captcha"
             tal:content="structure captcha/image_tag">
</tal:captcha>

You can get the captcha as a sound file like this:

<div class="captchaAudio"
     tal:define="captcha nocall:here/@@captcha">
   <a href="#" target="_blank"
      tal:attributes="href captcha/audio_url">Audio version</a>
</div>

You can validate an captcha entry like this:

from zope.component import getMultiAdapter


captcha = getMultiAdapter((self.context, self.request), name='captcha')
if not captcha.verify(input):
    # Bad value
else:
    # Good value

This extension require at least Silva 2.0.7 or higher. You can have more information about collective.captcha.

Use in Python Script

In your Python Script/Code Sources, you can use for example:

from silva.captcha import validate

request = context.REQUEST
input = request.form.get('captcha_field', None)
if not validate(context, context.REQUEST, input):
    # Bad value
else:
    # Good value

This will validate (or not) the input of the captcha.

Installation

If you installed Silva using buildout, by getting one from the Infrae SVN repository, or creating one using Paster, you should edit your buildout configuration file buildout.cfg to add or edit the following section:

[instance]

eggs = ...
      silva.captcha

zcml = ...
      silva.captcha

If the section instance wasn’t already in the configuration file, pay attention to re-copy values for eggs and zcml from the profile you use.

After you can restart buildout:

$ ./bin/buildout

If you don’t use buildout, you can install this extension using easy_install, and after create a file called silva.captcha-configure.zcml in the /path/to/instance/etc/package-includes directory. This file will responsible to load the extension and should only contain this:

<include package="silva.captcha" />

Latest version

The latest version is available in a Subversion repository.

Changelog

1.1 (2008-11-12)

  • Add a validate method for Python Scripts and Code sources.

  • Don’t make Silva Root become a local site if it’s already the case (i.e. Silva 2.2).

1.0.1 (2008-06-04)

  • Fix broken extension uninstall,

  • Add simple test to test extension install/uninstall.

1.0 (2008-05-27)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

silva.captcha-1.1.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

silva.captcha-1.1-py2.4.egg (11.0 kB view details)

Uploaded Source

File details

Details for the file silva.captcha-1.1.tar.gz.

File metadata

  • Download URL: silva.captcha-1.1.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for silva.captcha-1.1.tar.gz
Algorithm Hash digest
SHA256 ab10344106ef7780d615915ed9007e19c50129c7671ed06822154deb2d389a68
MD5 6859c0b18bed1e23ad678dc8c2bd8f97
BLAKE2b-256 9f8bc711cbef10c0df899d390152b440dde32a0028b4a21b3c0224d18e88eba5

See more details on using hashes here.

File details

Details for the file silva.captcha-1.1-py2.4.egg.

File metadata

File hashes

Hashes for silva.captcha-1.1-py2.4.egg
Algorithm Hash digest
SHA256 b03a24825b2f3c752be4b5371a15753c848f50674f1a0c922b64bfd7668075d5
MD5 94c1853999dafbeced27286d732b9477
BLAKE2b-256 883883b0948d1182352922a4d307529fc3304580fa8a285ff0cf9d0f1d67bfb3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page