source: products/quintagroup.portlet.static/trunk/docs/INSTALL.txt @ 285

Last change on this file since 285 was 285, checked in by chervol, 18 years ago

RSS2 for Topics fixed

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
1quintagroup.portlet.static Installation
2=======================
3
4 * When you're reading this you have probably already run
5   ``easy_install quintagroup.portlet.static``. Find out how to install setuptools
6   (and EasyInstall) here:
7   http://peak.telecommunity.com/DevCenter/EasyInstall
8
9 * Create a file called ``quintagroup.portlet.static-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.static" />
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.static`` to the list of eggs to install, e.g.:
19
20    [buildout]
21    ...
22    eggs =
23        ...
24        quintagroup.portlet.static
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.static
33
34  * Re-run buildout, e.g. with:
35
36    $ ./bin/buildout
37
38You can skip the ZCML slug if you are going to explicitly include the package
39from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.