Ignore:
Timestamp:
Feb 22, 2010 2:22:12 PM (14 years ago)
Author:
olha
Message:

dic files updated.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.catalogupdater/trunk/docs/INSTALL.txt

    r1739 r1800  
    1 quintagroup.catalogupdater Installation 
    2 --------------------------------------- 
     1Installation 
     2============ 
    33 
    4 To install quintagroup.catalogupdater into the global Python environment (or a workingenv), 
    5 using a traditional Zope 2 instance, you can do this: 
     4Buildout 
     5-------- 
    66 
    7 * When you're reading this you have probably already run  
    8   ``easy_install quintagroup.catalogupdater``. Find out how to install setuptools 
    9   (and EasyInstall) here: 
    10   http://peak.telecommunity.com/DevCenter/EasyInstall 
     7To install quintagroup.catalogupdater to your buildout-based project: 
    118 
    12 * Create a file called ``quintagroup.catalogupdater-configure.zcml`` in the 
    13   ``/path/to/instance/etc/package-includes`` directory.  The file 
    14   should only contain this:: 
    15  
    16     <include package="quintagroup.catalogupdater" /> 
    17  
    18  
    19 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 
    20 recipe to manage your project, you can do this: 
    21  
    22 * Add ``quintagroup.catalogupdater`` to the list of eggs to install, e.g.: 
     9* Add ``quintagroup.catalogupdater`` to the list of eggs to install:: 
    2310 
    2411    [buildout] 
     
    2815        quintagroup.catalogupdater 
    2916        
    30 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug:: 
    3118 
    3219    [instance] 
     
    3623        quintagroup.catalogupdater 
    3724       
    38 * Re-run buildout, e.g. with: 
     25* Re-run buildout, e.g. with:: 
    3926 
    4027    $ ./bin/buildout 
     28     
     29* Restart the Zope server, e.g with the following command in the terminal:: 
     30 
     31   $ ./bin/instance restart 
     32    
     33* Install ``quintagroup.catalogupdater`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
    4134         
    42 You can skip the ZCML slug if you are going to explicitly include the package 
    43 from another package's configure.zcml file. 
     35Traditional Zope 2 instance 
     36--------------------------- 
     37      
     38To install quintagroup.catalogupdater into the global Python environment (or a workingenv), 
     39using a traditional Zope 2 instance, you can do this: 
     40 
     41* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory. 
     42 
     43* Create a file called ``quintagroup.catalogupdater-configure.zcml`` in the 
     44  ``/path/to/instance/etc/package-includes`` directory.  The file 
     45  should only contain this:: 
     46 
     47    <include package="quintagroup.catalogupdater" /> 
     48     
     49* Restart the Zope server, for example with the following command in the terminal:: 
     50 
     51   $ ./bin/zopectl restart 
     52 
     53* Install ``quintagroup.catalogupdater`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
     54 
     55     
     56     
     57 
Note: See TracChangeset for help on using the changeset viewer.