Changeset 2053 in products for quintagroup.pfg.captcha/trunk


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

INSTALL and README files updated.

Location:
quintagroup.pfg.captcha/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.pfg.captcha/trunk/README.txt

    r1969 r2053  
    33 
    44quintagroup.pfg.captcha is a package that allows to add captcha field to the form, created with PloneFormGen product. 
     5 
     6Supported Plone version 
     7----------------------- 
     8 
     9* 3.x 
     10 
     11Dependencies 
     12------------ 
     13 
     14* PloneFormGen 
     15* quintagroup.plonecaptchas 
     16* quintagroup.captcha.core 
     17 
     18Installation 
     19------------ 
     20 
     21Please make sure that the following products are intalled in the following order: 
     22 
     23* PloneFormGen 
     24* quintagroup.plonecaptchas + quintagroup.captcha.core 
     25* quintagroup.pfg.captcha 
     26 
     27Links 
     28----- 
     29     
     30* Documentation - http://projects.quintagroup.com/products/wiki/quintagroup.captcha#quintagroup.pfg.captcha 
     31 
     32Authors 
     33------- 
     34 
     35The product is developed by Quintagroup.com team: 
     36 
     37* Vitaliy Stepanov 
     38* Volodymyr Cherepanyak 
     39* Taras Melnychuk 
     40 
     41Copyright (c) "Quintagroup": http://quintagroup.com, 2004-2010 
     42 
  • quintagroup.pfg.captcha/trunk/docs/INSTALL.txt

    r1969 r2053  
    1 quintagroup.pfg.captcha Installation 
    2 ======================= 
     1Installation 
     2============ 
    33 
    4  * When you're reading this you have probably already run 
    5    ``easy_install quintagroup.pfg.captcha``. Find out how to install setuptools 
    6    (and EasyInstall) here: 
    7    http://peak.telecommunity.com/DevCenter/EasyInstall 
     4Buildout 
     5-------- 
    86 
    9  * Create a file called ``quintagroup.pfg.captcha-configure.zcml`` in the 
    10    ``/path/to/instance/etc/package-includes`` directory.  The file 
    11    should only contain this:: 
     7To install quintagroup.pfg.captcha to your buildout-based project: 
    128 
    13        <include package="quintagroup.pfg.captcha" /> 
    14  
    15 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 
    16 recipe to manage your project, you can do this: 
    17  
    18  * Add ``quintagroup.pfg.captcha`` to the list of eggs to install, e.g.: 
     9* Add ``quintagroup.pfg.captcha`` to the list of eggs to install:: 
    1910 
    2011    [buildout] 
     
    2314        ... 
    2415        quintagroup.pfg.captcha 
    25  
    26   * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     16        
     17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug:: 
    2718 
    2819    [instance] 
     
    3122    zcml = 
    3223        quintagroup.pfg.captcha 
    33  
    34   * Re-run buildout, e.g. with: 
     24       
     25* Re-run buildout, e.g. with:: 
    3526 
    3627    $ ./bin/buildout 
     28     
     29* Restart the Zope server, e.g with the following command in the terminal:: 
    3730 
    38 You can skip the ZCML slug if you are going to explicitly include the package 
    39 from another package's configure.zcml file. 
     31   $ ./bin/instance restart 
     32    
     33* Install ``quintagroup.pfg.captcha`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
     34         
     35         
     36Traditional Zope 2 instance 
     37--------------------------- 
     38 
     39To install quintagroup.pfg.captcha into the global Python environment (or a workingenv), 
     40using a traditional Zope 2 instance, you can do this: 
     41 
     42* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory. 
     43 
     44* Create a file called ``quintagroup.pfg.captcha-configure.zcml`` in your instance's ``/etc/package-includes`` directory. The file 
     45should only contain this:: 
     46 
     47    <include package="quintagroup.pfg.captcha" /> 
     48 
     49* Restart the Zope server, for example with the following command in the terminal:: 
     50 
     51   $ ./bin/zopectl restart 
     52 
     53* Install ``quintagroup.pfg.captcha`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
     54 
Note: See TracChangeset for help on using the changeset viewer.