source: products/quintagroup.portletmanager.footer/trunk/docs/INSTALL.txt @ 1334

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

[releaser] bumped revision

File size: 1.4 KB
Line 
1Installation
2============
3
4To install quintagroup.portletmanager.footer into the global Python environment (or a workingenv),
5using a traditional Zope 2 instance, you can do this:
6
7* Copy ``quintagroup`` folder to the ``/path/to/instance/lib/python`` directory.
8
9* Create a file called ``quintagroup.portletmanager.footer-configure.zcml`` in the ``/path/to/instance/etc/package-includes`` directory. The file should only contain this::
10
11   <include package="quintagroup.portletmanager.footer" />
12
13* Restart the Zope server, for example, with the following command in the terminal::
14
15   $ ./bin/zopectl restart
16   
17* Install this products with QuickInstaller in Plone
18   
19Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
20recipe to manage your project, you can do this:   
21   
22* Add ``quintagroup.portletmanager.footer`` to the list of eggs to install, e.g.::
23
24    [buildout]
25    ...
26    eggs =
27        ...
28        quintagroup.portletmanager.footer
29
30* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
31
32    [instance]
33    recipe = plone.recipe.zope2instance
34    ...
35    zcml =
36        quintagroup.portletmanager.footer
37
38* Re-run buildout, e.g. with::
39
40    $ ./bin/buildout
41   
42* Restart the Zope server, for example, with the following command in the terminal::
43
44    $ ./bin/instance restart   
45
46* Install this products with QuickInstaller in Plone
47 
48 
Note: See TracBrowser for help on using the repository browser.