source: products/quintagroup.pfg.captcha/trunk/docs/INSTALL.txt @ 1969

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

Initial release (paster created)

File size: 1.1 KB
Line 
1quintagroup.pfg.captcha Installation
2=======================
3
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
8
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::
12
13       <include package="quintagroup.pfg.captcha" />
14
15Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
16recipe to manage your project, you can do this:
17
18 * Add ``quintagroup.pfg.captcha`` to the list of eggs to install, e.g.:
19
20    [buildout]
21    ...
22    eggs =
23        ...
24        quintagroup.pfg.captcha
25
26  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
27
28    [instance]
29    recipe = plone.recipe.zope2instance
30    ...
31    zcml =
32        quintagroup.pfg.captcha
33
34  * Re-run buildout, e.g. with:
35
36    $ ./bin/buildout
37
38You can skip the ZCML slug if you are going to explicitly include the package
39from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.