source: products/quintagroup.portlet.cumulus/trunk/docs/INSTALL.txt @ 2866

Last change on this file since 2866 was 2866, checked in by olha, 14 years ago

doc files updated

File size: 1.1 KB
Line 
1Installation
2============
3
4 * When you're reading this you have probably already run
5   ``easy_install quintagroup.portlet.cumulus``. Find out how to install setuptools
6   (and EasyInstall) here:
7   http://peak.telecommunity.com/DevCenter/EasyInstall
8
9 * Create a file called ``quintagroup.portlet.cumulus-configure.zcml`` in the
10   ``/path/to/instance/etc/package-includes`` directory.  The file
11   should only contain this::
12
13       <include package="quintagroup.portlet.cumulus" />
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.portlet.cumulus`` to the list of eggs to install, e.g.:
19
20    [buildout]
21    ...
22    eggs =
23        ...
24        quintagroup.portlet.cumulus
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.portlet.cumulus
33
34  * Re-run buildout, e.g. with:
35
36    $ ./bin/buildout
37
38  * Restart instance, e.g. with:
39
40    $ ./bin/instance restart
41
42  * Install Tag cloud (cumulus) portlet with Quickinstaller in Plone.
43
Note: See TracBrowser for help on using the repository browser.