Changeset 1175 in products for quintagroup.doublecolumndocument
- Timestamp:
- Jul 27, 2009 1:42:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
quintagroup.doublecolumndocument/trunk/docs/INSTALL.txt
r290 r1175 1 1 quintagroup.doublecolumndocument Installation 2 ========================== 2 ============================================= 3 3 4 4 To install quintagroup.doublecolumndocument into the global Python environment (or a workingenv), 5 5 using a traditional Zope 2 instance, you can do this: 6 6 7 * When you're reading this you have probably already run 8 ``easy_install quintagroup.doublecolumndocument``. Find out how to install setuptools 9 (and EasyInstall) here: 10 http://peak.telecommunity.com/DevCenter/EasyInstall 7 * Copy ``quintagroup`` folder to the ``/path/to/instance/lib/python`` directory. 11 8 12 * If you are using Zope 2.9 (not 2.10), get `pythonproducts`_ and install it 13 via:: 14 15 python setup.py install --home /path/to/instance 16 17 into your Zope instance. 18 19 * Create a file called ``quintagroup.doublecolumndocument-configure.zcml`` in the 20 ``/path/to/instance/etc/package-includes`` directory. The file 21 should only contain this:: 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:: 22 12 23 13 <include package="quintagroup.doublecolumndocument" /> 24 25 .. _pythonproducts: http://plone.org/products/pythonproducts26 27 14 28 15 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 29 16 recipe to manage your project, you can do this: 30 17 31 * Add ``quintagroup.doublecolumndocument`` to the list of eggs to install, e.g.:18 * Add ``quintagroup.doublecolumndocument`` to the list of eggs to install, e.g.:: 32 19 33 20 [buildout] … … 37 24 quintagroup.doublecolumndocument 38 25 39 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:26 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:: 40 27 41 28 [instance] … … 44 31 zcml = 45 32 quintagroup.doublecolumndocument 46 47 * Re-run buildout, e.g. with: 33 34 After that: 35 36 * Re-run buildout, e.g. with:: 48 37 49 38 $ ./bin/buildout 50 39 51 You can skip the ZCML slug if you are going to explicitly include the package 52 from another package's configure.zcml file. 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 TracChangeset
for help on using the changeset viewer.