source: products/quintagroup.formlib.captcha/trunk/docs/INSTALL.txt @ 1959

Last change on this file since 1959 was 1959, checked in by liebster, 14 years ago

#173: Copy quintagroup.formlib.captcha (from http://svn.quintagroup.com/elaw/packages/quintagroup.formlib.captcha/) to products repository

File size: 1.1 KB
Line 
1quintagroup.formlib.captcha Installation
2=======================
3
4 * When you're reading this you have probably already run
5   ``easy_install quintagroup.formlib.captcha``. Find out how to install setuptools
6   (and EasyInstall) here:
7   http://peak.telecommunity.com/DevCenter/EasyInstall
8
9 * Create a file called ``quintagroup.formlib.captcha-configure.zcml`` in the
10   ``/path/to/instance/etc/package-includes`` directory.  The file
11   should only contain this::
12
13       <include package="quintagroup.formlib.captcha" />
14
15
16Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
17recipe to manage your project, you can do this:
18
19 * Add ``quintagroup.formlib.captcha`` to the list of eggs to install, e.g.:
20
21    [buildout]
22    ...
23    eggs =
24        ...
25        quintagroup.formlib.captcha
26
27  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
28
29    [instance]
30    recipe = plone.recipe.zope2instance
31    ...
32    zcml =
33        quintagroup.formlib.captcha
34
35  * Re-run buildout, e.g. with:
36
37    $ ./bin/buildout
38
39You can skip the ZCML slug if you are going to explicitly include the package
40from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.