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

INSTALL and README files updated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.