Changes between Version 52 and Version 53 of qPloneGoogleSitemaps


Ignore:
Timestamp:
Feb 4, 2010 2:26:12 PM (14 years ago)
Author:
olha
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • qPloneGoogleSitemaps

    v52 v53  
    1 = Plone Google Sitemaps (qPloneGoogleSitemaps)  = 
     1= Plone Google Sitemaps (quintagroup.plonegooglesitemaps, qPloneGoogleSitemaps)  = 
    22 
    33[[PageOutline]] 
     
    2727 
    2828== Installation == 
     29 
     30=== Installing qPloneGoogleSitemaps product up to 0.8.5 version ===  
    2931 
    3032qPloneGoogleSitemaps can be installed as old-type Plone product. 
     
    4749 1. press the '''install''' button below the table and make sure the product appeared in the right column of installed products 
    4850  
     51=== Installing quintagroup.plonegooglesitemaps package starting from 1.0 version === 
     52 
     53'''Buildout''' 
     54 
     55To install quintagroup.plonegooglesitemaps to your buildout-based project: 
     56 
     57 * Add '''quintagroup.plonegooglesitemaps''' to the list of eggs to install: 
     58{{{ 
     59    [buildout] 
     60    ... 
     61    eggs = 
     62        ... 
     63        quintagroup.plonegooglesitemaps 
     64}}} 
     65        
     66 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     67{{{ 
     68    [instance] 
     69    recipe = plone.recipe.zope2instance 
     70    ... 
     71    zcml = 
     72        quintagroup.plonegooglesitemaps 
     73}}} 
     74       
     75 * Re-run buildout, e.g. with: 
     76 
     77{{{ 
     78    $ ./bin/buildout 
     79}}}    
     80  
     81 * Restart the Zope server, e.g with the following command in the terminal:: 
     82 
     83{{{ 
     84   $ ./bin/instance restart 
     85}}}    
     86 
     87 * Install ``Plone Google Sitemaps`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
     88         
     89         
     90'''Traditional Zope 2 instance''' 
     91 
     92To install quintagroup.plonegooglesitemaps into the global Python environment (or a workingenv), using a traditional Zope 2 instance, you can do this: 
     93 
     94 * Copy '''quintagroup''' folder to your instance's '''/lib/python''' directory. 
     95 
     96 * Create a file called '''quintagroup.plonegooglesitemaps-configure.zcml''' in your instance's '''/etc/package-includes''' directory. The file should only contain this: 
     97 
     98{{{ 
     99    <include package="quintagroup.plonegooglesitemaps" /> 
     100}}} 
     101 
     102 * Restart the Zope server, for example with the following command in the terminal: 
     103 
     104{{{ 
     105   $ ./bin/zopectl restart 
     106}}} 
     107 
     108 * Install '''Plone Google Sitemaps''' with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
     109 
    49110== Configuration == 
    50111