source: products/quintagroup.transmogrifier/branches/plone-3.1/collective.transmogrifier/docs/INSTALL.txt

Last change on this file was 466, checked in by myroslav, 18 years ago

Tagging intial release

File size: 1.1 KB
Line 
1collective.transmogrifier Installation
2======================================
3
4 * When you're reading this you have probably already run
5   ``easy_install collective.transmogrifier``. Find out how to install setuptools
6   (and EasyInstall) here:
7   http://peak.telecommunity.com/DevCenter/EasyInstall
8
9 * Create a file called ``collective.transmogrifier-configure.zcml`` in the
10   ``/path/to/instance/etc/package-includes`` directory.  The file
11   should only contain this::
12
13       <include package="collective.transmogrifier" />
14
15
16Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance
17recipe to manage your project, you can do this:
18
19 * Add ``collective.transmogrifier`` to the list of eggs to install, e.g.:
20
21    [buildout]
22    ...
23    eggs =
24        ...
25        collective.transmogrifier
26
27  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
28
29    [instance]
30    recipe = plone.recipe.zope2instance
31    ...
32    zcml =
33        collective.transmogrifier
34
35  * Re-run buildout, e.g. with:
36
37    $ ./bin/buildout
38
39You can skip the ZCML slug if you are going to explicitly include the package
40from another package's configure.zcml file.
Note: See TracBrowser for help on using the repository browser.