quintagroup.formlib.captcha

by Quintagroup last modified Nov 03, 2011 02:43 PM

Captcha field for formlib based on quintagroup.captcha.core package

Project Description

Introduction

quintagroup.formlib.captcha is a package that allows to add captcha to zope.formlib. As a result such forms are prevented from automatic submit.

Captchas in a formlib form

Using quintagroup.formlib.captcha in a formlib form is simple. Just add a Captcha field to your schema, and away you go:

>>> from zope.interface import Interface
>>> from quintagroup.formlib.captcha import Captcha
>>> class CaptchaSchema(Interface):
...     captcha = Captcha(
...         title=_(u'Type the code'),
...         description=_(u'Type the code from the picture shown below.'))

and formlib will take care of the rest. The widget associated with this field will render the captcha and verify the use input automatically.

Supported Plone versions

quintagroup.formlib.captcha was tested with Plone 3 and Plone 4.

Authors

  • Vitaliy Podoba
  • Andriy Mylenkyi
  • Vitaliy Stepanov

Copyright (c) "Quintagroup": http://quintagroup.com, 2004-2011

Changelog

1.4 (2011-08-25)

  • widget import fixed
  • pyflakes, pep8 clean up

1.3 (2010-09-14)

  • Added plone-4 support [mylan]
  • Fixed getting context in the widget [mylan]
  • Added docttests [mylan]

1.2 (2010-04-29)

  • Clean-up code
  • Added tests
  • Add quintagroup.captcha.core, zope.formlib as requirements

1.0 (2009-04-22)

  • Initial release

Current Release
quintagroup.formlib.captcha 1.4

Released Aug 25, 2011 — tested with Plone 4.1, Plone 4, Plone 3

Bugfix release: import widget fixed, pyflakes, pep8 clean up.
More about this release…

Download file Get quintagroup.formlib.captcha for all platforms
quintagroup.formlib.captcha-1.4.zip
If you are using Plone 3.2 or higher, you probably want to install this product with buildout. See our tutorial on installing add-on products with buildout for more information.

All Releases

Version Released Description Compatibility Licenses Status
1.4 Aug 25, 2011 Bugfix release: import widget fixed, pyflakes, pep8 clean up. More about this release…
Plone 4.1
Plone 4
Plone 3
GPL final
1.3 Sep 14, 2010 Plone 4 support release. More about this release…
Plone 4
Plone 3
GPL final
1.2 Apr 29, 2010 First public release. More about this release…
Plone 3
GPL final

Comments (1)

Horacio Duran Sep 14, 2011 09:00 PM
I think the documentation in this page is outdated, the import now is "from quintagroup.formlib.captcha import Captcha" iirc