Changes between Version 2 and Version 3 of CaptchaPlugin

Show
Ignore:
Author:
athomas (IP: 150.101.113.169)
Timestamp:
11/07/06 06:23:02 (1 year ago)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CaptchaPlugin

    v2 v3  
    1 = A number of captcha implementations for Trac = 
    2  
    3 == Description == 
    4  
    5 This plugin exposes a mechanism for creating Captcha plugins, as well as three implementations: 
    6  
    7   * A simple english mathematical expression based capture (eg. `three plus four multiplied by two`) 
    8   * An image captcha, based on a Python Cookbook [http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/440588 recipe]. 
    9   * An adapter for [http://captchas.net]. 
    10  
    11 == Bugs/Feature Requests ==  
    12  
    13 Existing bugs and feature requests for CaptchaPlugin are  
    14 [report:9?COMPONENT=CaptchaPlugin here]. 
    15  
    16 If you have any issues, create a  
    17 [http://trac-hacks.org/newticket?component=CaptchaPlugin&owner=athomas new ticket]. 
    18  
    19 == Download == 
    20  
    21 Download the zipped source from [download:captchaplugin here]. 
    22  
    23 == Source == 
    24  
    25 You can check out CaptchaPlugin from [http://trac-hacks.org/svn/captchaplugin here] using Subversion, or [source:captchaplugin browse the source] with Trac. 
    26  
    27 == Example == 
    28  
    29 The simple English mathematical expression is the default captcha, as it has no external dependencies. This be changed by modifying `trac.ini`: 
    30  
    31 {{{ 
    32 [captcha] 
    33 captcha = ImageCaptcha 
    34 }}} 
    35  
    36 Valid values are: `ExpressionCaptcha` (the default), `ImageCaptcha`, and `CaptchasDotNetCaptcha`. 
    37  
    38 Each captcha is individually configurable in `trac.ini`. I suggest using IniAdminPlugin for configuring them, or reading the source. 
    39  
    40 == Recent Changes == 
    41  
    42 [[ChangeLog(captchaplugin, 3)]] 
    43  
    44 == Author/Contributors == 
    45  
    46 '''Author:''' [wiki:athomas] [[BR]] 
    47 '''Contributors:''' 
     1This will probably be integrated into SpamFilterPlugin. Do not use.