source: products/quintagroup.dropdownmenu/trunk/docs/INSTALL.txt @ 2539

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

README.txt and INSTALL.txt updated

  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1quintagroup.dropdownmenu installation
2-------------------------------------
3
4To install quintagroup.dropdownmenu 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.dropdownmenu-configure.zcml`` in the
10  ``/path/to/instance/etc/package-includes`` directory.  The file
11  should only contain this::
12
13    <include package="quintagroup.dropdownmenu" />
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.dropdownmenu`` to the list of eggs to install, e.g.::
19
20    [buildout]
21    ...
22    eggs =
23        ...
24        quintagroup.dropdownmenu
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.dropdownmenu
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.dropdownmenu with Quickinstaller in Plone. 
Note: See TracBrowser for help on using the repository browser.