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