Changeset 2054 in products for quintagroup.plonecaptchas/trunk


Ignore:
Timestamp:
Apr 1, 2010 1:51:07 PM (14 years ago)
Author:
olha
Message:

INSTALL and README files updated.

Location:
quintagroup.plonecaptchas/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.plonecaptchas/trunk/README.txt

    r1453 r2054  
    77services. 
    88 
    9 quintagroup.plonecaptchas has dynamic captchas option implemented. You can 
    10 switch captchas into dynamic mode in the correspondent configlet. In this 
    11 case, captcha images will be generated on the fly. 
     9quintagroup.plonecaptchas adds captcha support to Plone, it works together with  
     10quintagroup.captcha.core package. With these products installed captchas will be  
     11added to Plone's 'Send this', 'Contact Us' (/contact-info) forms, and Plone's default 
     12discussion mechanism: 'Add Comment' and 'Reply forms'. 
     13 
     14quintagroup.plonecaptchas does not automatically plug to Plone's default registration 
     15(/join_form). You can make captcha plug to Plone's Join form via Zope Management Interface. 
     16Instructions here: http://projects.quintagroup.com/products/wiki/quintagroup.captcha#JoinForm  
    1217 
    1318Requirements 
     
    1924created with PloneFormMailer product. 
    2025 
    21 Dependency 
    22 ---------- 
     26Dependencies 
     27------------ 
    2328 
    24 PIL with Jpeg and FreeType support 
    25  
    26 Plone Captchas plugs to 
    27 ----------------------- 
    28  
    29 * default Plone discussion mechanism 
    30  
    31 * join form 
    32  
    33 * send_to form 
    34  
    35 * forms created with PloneFormGen 
     29* quintagroup.captcha.core 
     30* PIL with Jpeg and FreeType support 
    3631 
    3732Plone Captchas on PloneFormGen forms  
    3833------------------------------------ 
    3934 
    40 To make captchas work on forms created with PloneFormGen, please use qPloneCaptchaField product: 
     35To make captchas work on forms created with PloneFormGen, please use 'quintagroup.pfg.captcha' product: 
    4136 
    4237* Plone Captcha Field home page - http://quintagroup.com/services/plone-development/products/plone-captcha-field 
    4338 
    44 * Instruction on use - http://projects.quintagroup.com/products/wiki/qPloneCaptchaField 
    45    
    46 * Plone Captcha Field Screencast - http://quintagroup.com/cms/screencasts/qplonecaptchafield 
     39* Instruction on use - http://projects.quintagroup.com/products/wiki/quintagroup.captcha#quintagroup.pfg.captcha 
    4740 
    4841Installation 
     
    5952The product was developed by Quintagroup team: 
    6053 
     54* Andriy Mylenkyi  
     55 
    6156* Volodymyr Cherepanyak 
    6257 
     
    7267* Dorneles Tremea 
    7368 
    74 Future features 
    75 --------------- 
    76  
    77 * Configuration of captchas images generation (shade, background, colors etc.) 
    78  
    7969Links 
    8070----- 
  • quintagroup.plonecaptchas/trunk/docs/INSTALL.txt

    r1085 r2054  
    1 quintagroup.plonecaptchas Installation 
    2 -------------------------------------- 
     1Installation 
     2============ 
    33 
    4 To install quintagroup.plonecaptchas into the global Python environment (or a workingenv), 
    5 using a traditional Zope 2 instance, you can do this: 
     4Buildout 
     5-------- 
    66 
    7 * Copy ``quintagroup`` folder to the /path/to/instance/lib/python directory. 
     7To install quintagroup.plonecaptchas to your buildout-based project: 
    88 
    9 * Create a file called ``quintagroup.plonecaptchas-overrides.zcml`` in  
    10 the /path/to/instance/etc/package-includes directory. The file should only contain this:: 
    11  
    12   <include package="quintagroup.plonecaptchas" file="overrides.zcml" /> 
    13  
    14 * Restart the Zope server, for example with the following command in the terminal:: 
    15  
    16    $ ./bin/zopectl restart 
    17  
    18 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 
    19 recipe to manage your project, you can do this: 
    20  
    21 * Add ``quintagroup.plonecaptchas`` to the list of eggs to install, e.g.: 
     9* Add ``quintagroup.plonecaptchas`` to the list of eggs to install:: 
    2210 
    2311    [buildout] 
     
    2715        quintagroup.plonecaptchas 
    2816        
    29 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug:: 
    3018 
    3119    [instance] 
     
    3523        quintagroup.plonecaptchas 
    3624       
    37 * Re-run buildout, e.g. with: 
     25* Re-run buildout, e.g. with:: 
    3826 
    3927    $ ./bin/buildout 
     28     
     29* Restart the Zope server, e.g with the following command in the terminal:: 
     30 
     31   $ ./bin/instance restart 
     32    
     33* Install ``Plone Captchas`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products).  
     34``Quintagroup Captcha Core`` will automatically be installed as dependency. 
    4035         
    41 Install quintagroup.plonecaptchas with Quickinstaller in Plone. 
     36         
     37Traditional Zope 2 instance 
     38--------------------------- 
     39 
     40To install quintagroup.plonecaptchas into the global Python environment (or a workingenv), 
     41using a traditional Zope 2 instance, you can do this: 
     42 
     43* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory. 
     44 
     45* Create a file called ``quintagroup.plonecaptchas-configure.zcml`` in your instance's ``/etc/package-includes`` directory. The file 
     46should only contain this:: 
     47 
     48    <include package="quintagroup.plonecaptchas" /> 
     49 
     50* Restart the Zope server, for example with the following command in the terminal:: 
     51 
     52   $ ./bin/zopectl restart 
     53 
     54* Install ``Plone Captchas`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products).  
     55``Quintagroup Captcha Core`` will automatically be installed as dependency. 
Note: See TracChangeset for help on using the changeset viewer.