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

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

[releaser] bumped revision

File size: 1.4 KB
RevLine 
[1334]1Installation
2============
[1321]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
[1325]7* Copy ``quintagroup`` folder to the ``/path/to/instance/lib/python`` directory.
[1321]8
[1334]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::
[1321]10
[1329]11   <include package="quintagroup.portletmanager.footer" />
[1321]12
[1325]13* Restart the Zope server, for example, with the following command in the terminal::
[1321]14
15   $ ./bin/zopectl restart
16   
[1329]17* Install this products with QuickInstaller in Plone
[1321]18   
19Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
20recipe to manage your project, you can do this:   
21   
[1325]22* Add ``quintagroup.portletmanager.footer`` to the list of eggs to install, e.g.::
[1321]23
24    [buildout]
25    ...
26    eggs =
27        ...
28        quintagroup.portletmanager.footer
29
[1325]30* Tell the plone.recipe.zope2instance recipe to install a ZCML slug::
[1321]31
32    [instance]
33    recipe = plone.recipe.zope2instance
34    ...
35    zcml =
36        quintagroup.portletmanager.footer
37
[1325]38* Re-run buildout, e.g. with::
[1321]39
40    $ ./bin/buildout
41   
[1325]42* Restart the Zope server, for example, with the following command in the terminal::
[1321]43
44    $ ./bin/instance restart   
45
[1329]46* Install this products with QuickInstaller in Plone
[1334]47 
[1321]48 
Note: See TracBrowser for help on using the repository browser.