Changes between Version 4 and Version 5 of qPloneGoogleSitemaps/install


Ignore:
Timestamp:
Jun 1, 2010 11:44:49 AM (15 years ago)
Author:
olha
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • qPloneGoogleSitemaps/install

    v4 v5  
    33[[PageOutline]] 
    44 
    5 == Install quintagroup.plonegooglesitemaps package from 1.0 to 1.1.2 versions == 
     5== Install 1.1.3 version of quintagroup.plonegooglesitemaps package == 
     6 
     7=== Buildout ===  
     8 
     9To install quintagroup.plonegooglesitemaps to your buildout-based project: 
     10 
     11 * Add '''quintagroup.plonegooglesitemaps''' to the list of eggs to install: 
     12{{{ 
     13    [buildout] 
     14    ... 
     15    eggs = 
     16        ... 
     17        quintagroup.plonegooglesitemaps 
     18}}} 
     19        
     20 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     21{{{ 
     22    [instance] 
     23    recipe = plone.recipe.zope2instance 
     24    ... 
     25    zcml = 
     26        quintagroup.plonegooglesitemaps 
     27}}} 
     28       
     29 * Re-run buildout, e.g. with: 
     30 
     31{{{ 
     32    $ ./bin/buildout 
     33}}}    
     34  
     35 * Restart the Zope server, e.g with the following command in the terminal:: 
     36 
     37{{{ 
     38   $ ./bin/instance restart 
     39}}}    
     40 
     41 * Install ``Plone Google Sitemaps`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
     42 
     43 
     44 
     45== Install  1.0 - 1.1.2 versions of quintagroup.plonegooglesitemaps package == 
    646 
    747=== Buildout ===