Changes between Version 16 and Version 17 of RecaptchaRegisterPlugin


Ignore:
Timestamp:
Nov 26, 2015, 11:40:52 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • RecaptchaRegisterPlugin

    v16 v17  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Recaptcha Register Plugin
     3= Registration using Recaptcha
    44
    55== Description
    66
    7 This hack adds a [http://recaptcha.net/ reCAPTCHA] that the user must pass before registering. You must have the AccountManagerPlugin installed.
     7This hack adds a [http://recaptcha.net/ reCaptcha] that the user must pass before registering. You must have the AccountManagerPlugin installed.
    88
    9 This plugin is being developed for [http://trac.usla.org.ar USLA tracs], a service by and for the Free Software Users of Argentina.
     9This plugin is being developed for [http://trac.usla.org.ar USLA Tracs], a service by and for the Free Software Users of Argentina.
    1010
    1111It is loosely based on the work of TracRecaptchaPlugin, so it's GPL licensed as well.
    1212
    13 '''Fork:''' I have made a small [https://github.com/trac-hacks/trac-recaptcharegister fork on GitHub] with some improvements/fixes. Feel free to [https://github.com/trac-hacks/trac-recaptcharegister/issues suggest new].
     13'''Fork:''' There is a [https://github.com/trac-hacks/trac-recaptcharegister fork on GitHub] with some improvements/fixes. Feel free to [https://github.com/trac-hacks/trac-recaptcharegister/issues suggest new] improvements/fixes.
    1414
    1515== Bugs/Feature Requests
     
    1919
    2020If you have any issues, create a
    21 [http://trac-hacks.org/newticket?component=RecaptchaRegisterPlugin&owner=alecu new ticket].
     21[/newticket?component=RecaptchaRegisterPlugin new ticket].
    2222
    2323[[TicketQuery(component=RecaptchaRegisterPlugin&group=type,format=progress)]]
     
    2525== Download
    2626
    27 Download the zipped source from [download:recaptcharegisterplugin here].
     27Download the zipped source from [export:recaptcharegisterplugin here].
    2828
    2929== Source
    3030
    31 You can check out RecaptchaRegisterPlugin from [http://trac-hacks.org/svn/recaptcharegisterplugin here] using Subversion, or [source:recaptcharegisterplugin browse the source] with Trac.
     31You can check out RecaptchaRegisterPlugin from [/svn/recaptcharegisterplugin here] using Subversion, or [source:recaptcharegisterplugin browse the source] with Trac.
    3232
    33 == Usage
    34 === Install the Account Manager plugin
     33== Installation
    3534
    36 Please see AccountManagerPlugin page. Make sure you have '''disabled''' the [wiki:AccountManagerPlugin#RegistrationModule RegistrationModule], since you'll be using this registration instead.
    37 
    38 === Install the recaptcha python module
    39 
    40 RecaptchaRegisterPlugin '''depends''' on this module. If it is not installed, then Trac will not show the RecaptchaRegisterPlugin, and will only show an error if you setup Trac's logging.
    41 
    42 {{{#!sh
     35 1. Install the AccountManagerPlugin. Make sure you have '''disabled''' the [wiki:AccountManagerPlugin#RegistrationModule RegistrationModule], since you'll be using this registration instead.
     36 1. Install the recaptcha python module: RecaptchaRegisterPlugin depends on this module. If it is not installed, then Trac will not show the RecaptchaRegisterPlugin, and will only show an error if you setup Trac's logging:
     37 {{{#!sh
    4338easy_install recaptcha_client
    4439}}}
    45 
    46 === Install this plugin
    47 
    48 {{{#!sh
    49 easy_install http://trac-hacks.org/svn/recaptcharegisterplugin/0.11
     40 1. Install this plugin:
     41 {{{#!sh
     42easy_install https://trac-hacks.org/svn/recaptcharegisterplugin/0.11
    5043}}}
    51 
    52 === Setup reCAPTCHA
    53 
    54 You need to make an account at http://recaptcha.net/ to receive your public and private keys.
    55 
    56 Edit your `conf/trac.ini` file and add these lines, including your public and private reCAPTCHA keys:
    57 
    58 {{{#!ini
     44 1. Setup reCaptcha: you need to make an account at http://recaptcha.net/ to receive your public and private keys. Edit your `conf/trac.ini` file and add these lines, including your public and private reCaptcha keys:
     45 {{{#!ini
    5946[components]
    6047recaptcharegister.* = enabled