source: products/quintagroup.portlet.collection/trunk/docs/INSTALL.txt @ 2758

Last change on this file since 2758 was 2758, checked in by fenix, 14 years ago

added some documentation.

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1quintagroup.portlet.collection installation
2-------------------------------------------
3
4To install quintagroup.portlet.collection into the global Python environment
5(or a workingenv), using 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.portlet.collection-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.collection" />
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.collection`` to the list of eggs to install, e.g.::
19
20    [buildout]
21    ...
22    eggs =
23        ...
24        quintagroup.portlet.collection
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.collection
33
34After that:
35
36* Re-run buildout, e.g. with::
37
38    $ ./bin/buildout
39
40* Restart Zope server process, for example, with the following command in the terminal::
41
42   $ ./bin/zopectl restart
43
44Then install quintagroup.portlet.collection with Quickinstaller in Plone.
Note: See TracBrowser for help on using the repository browser.