Changes between Version 10 and Version 11 of quintagroup.z3cform.captcha


Ignore:
Timestamp:
May 4, 2010 12:15:42 PM (14 years ago)
Author:
olha
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • quintagroup.z3cform.captcha

    v10 v11  
    99== Introduction == 
    1010 
    11 quintagroup.z3cform.captcha allows adding captcha to [http://pypi.python.org/pypi/z3c.form z3c.form]. As a result such forms are prevented from automatic submit. 
     11quintagroup.z3cform.captcha allows adding captcha to [http://pypi.python.org/pypi/z3c.form z3c.form]. As a result such forms are prevented from automatic submit. Captcha field for z3cform is based on quintagroup.captcha.core package. 
     12 
     13== Installation == 
     14 
     15Add '''quintagroup.z3cform.captcha''' to your buildout eggs and zcml area: 
     16 
     17{{{ 
     18    [buildout] 
     19    ... 
     20    eggs = 
     21        ... 
     22        quintagroup.z3cform.captcha 
     23         
     24    [instance] 
     25    recipe = plone.recipe.zope2instance 
     26    ... 
     27    zcml = 
     28        quintagroup.z3cform.captcha 
     29}}} 
     30 
     31Re-run your buildout, e.g. with the following command: 
     32 
     33{{{      
     34    $ ./bin/buildout 
     35}}} 
     36 
     37This package does not require installation in Plone. 
    1238 
    1339== Captchas in a z3c form ==