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

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

MANIFEST.in added

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