source: products/quintagroup.doublecolumndocument/trunk/docs/INSTALL.txt @ 1175

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

INSTALL.txt updated

  • Property svn:eol-style set to native
File size: 1.3 KB
Line 
1quintagroup.doublecolumndocument Installation
2=============================================
3
4To install quintagroup.doublecolumndocument 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.doublecolumndocument-configure.zcml`` in the
10   ``/path/to/instance/etc/package-includes`` directory.  The file should only
11   contain this::
12
13       <include package="quintagroup.doublecolumndocument" />
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.doublecolumndocument`` to the list of eggs to install, e.g.::
19 
20    [buildout]
21    ...
22    eggs =
23        ...
24        quintagroup.doublecolumndocument
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.doublecolumndocument
33   
34After that:
35
36* Re-run buildout, e.g. with::
37 
38    $ ./bin/buildout
39       
40* Restart the Zope server, for example with the following command in the terminal::
41
42   $ ./bin/zopectl restart
43
44* Install quintagroup.doublecolumndocument with Quickinstaller in Plone.
Note: See TracBrowser for help on using the repository browser.