Changeset 1642 in products for quintagroup.plonegooglesitemaps/trunk


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

doc files updated.

Location:
quintagroup.plonegooglesitemaps/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.plonegooglesitemaps/trunk/README.txt

    r1634 r1642  
    22============ 
    33 
    4 package version of plone's product qPloneGoogleSitemap since qPloneGoogleSitemap v.0.8.6 
     4This is a package version of qPloneGoogleSitemap Plone product since qPloneGoogleSitemap v.0.8.6 
    55 
    66Quintagroup Plone Google Sitemaps quintagroup.plonegooglesitemaps (qPloneGoogleSitemaps) 
    77======================================================================================== 
    88 
    9 Plone Google Sitemaps product allows Plone websites to get better visibility for Google search engine by providing it with complete listing of URLs to website content. 
     9Plone Google Sitemaps product allows Plone websites to get better visibility for Google search engine 
     10by providing it with complete listing of URLs to website content. 
    1011   
    11 Plone Google Sitemaps allows you to enable different kinds of Google Sitemaps on your Plone website. Such Sitemaps help Google to identify site URLs and the data under each site section. With Google Sitemaps enabled, search engines could track your Plone site URLs faster and more efficiently, optimizing their search by placing all the information on one page. 
     12Plone Google Sitemaps allows you to enable different kinds of Google Sitemaps on your Plone website.  
     13Such Sitemaps help Google identify site URLs and the data under each site section. With Google Sitemaps 
     14enabled, search engines could track your Plone site URLs faster and more efficiently, optimizing their  
     15search by placing all the information on one page. 
    1216 
    1317With Plone Google Sitemaps product you can enable following Sitemap types on your Plone website: 
    1418 
    15   * Content Sitemap - is a regular list of pages on your website. Creating and submitting such a Sitemap lets Google know about all the pages on your Plone web site, including URLs that may not be discoverable by Google's normal crawling process. 
    16   * Mobile Sitemap - is a specific type of Sitemap, that indexes all site URLs that serve content for mobile devices. 
     19  * Content Sitemap - is a regular list of pages on your website. Creating and submitting such a Sitemap  
     20    lets Google know about all the pages on your Plone web site, including URLs that may not be discoverable 
     21    by Google's normal crawling process. 
     22  * Mobile Sitemap - is a specific type of Sitemap, that indexes all site URLs that serve content for  
     23    mobile devices. 
    1724  * News Sitemap - is different from regular Sitemaps, since it is specific to Google News only.  
    1825 
     
    2431To enable Google Sitemaps on your site: 
    2532 
    26   * Add Sitemap(s) at Google Sitemap "Settings" tab (Add-on Products Configuarion -> Google Sitemaps). You can add any of the Sitemap types: content, mobile or news.  
     33  * Add Sitemap(s) at Google Sitemap "Settings" tab (Add-on Products Configuarion -> Google Sitemaps).  
     34    You can add any of the Sitemap types: content, mobile or news.  
    2735  * Let Google know about your Sitemap(s) by adding your Sitemap to Google Sitemaps. 
    2836 
     
    3240---------- 
    3341 
    34 Watch Plone Google Sitemaps Screencasts at http://quintagroup.com/cms/screencasts/qplonegooglesitemaps to see how to use this products on your Plone instance. Learn about how to install and configure Sitemaps on your Plone instance, how to create new Google Sitemaps, and how to let Google know about them. 
     42Watch Plone Google Sitemaps Screencasts at http://quintagroup.com/cms/screencasts/qplonegooglesitemaps to see how to use this products 
     43on your Plone instance. Learn about how to install and configure Sitemaps on your Plone instance, how to create new Google Sitemaps,  
     44and how to let Google know about them. 
    3545   
    3646Installation 
     
    4252------------ 
    4353 
    44   * Plone 2.5 
    4554  * Plone 3.x  
    4655 
  • quintagroup.plonegooglesitemaps/trunk/docs/HISTORY.txt

    r1637 r1642  
    22========= 
    33 
    4 1.1 (unreleased) 
    5 ---------------- 
    6  
    7 - Nothing changed yet. 
    8  
    9  
    10 1.0 (2010-02-03) 
     41.0 (2010-02-04) 
    115---------------- 
    126 
  • quintagroup.plonegooglesitemaps/trunk/docs/INSTALL.txt

    r1634 r1642  
    11quintagroup.plonegooglesitemaps Installation 
    2 -------------------------------------------- 
     2============================================ 
    33 
    4 To install quintagroup.plonegooglesitemaps 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.plonegooglesitemaps``. Find out how to install setuptools 
    9   (and EasyInstall) here: 
    10   http://peak.telecommunity.com/DevCenter/EasyInstall 
     7To install quintagroup.plonegooglesitemaps to your buildout-based project: 
    118 
    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.plonegooglesitemaps-configure.zcml`` in the 
    20   ``/path/to/instance/etc/package-includes`` directory.  The file 
    21   should only contain this:: 
    22  
    23     <include package="quintagroup.plonegooglesitemaps" /> 
    24  
    25 .. _pythonproducts: http://plone.org/products/pythonproducts 
    26  
    27  
    28 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 
    29 recipe to manage your project, you can do this: 
    30  
    31 * Add ``quintagroup.plonegooglesitemaps`` to the list of eggs to install, e.g.: 
     9* Add ``quintagroup.plonegooglesitemaps`` to the list of eggs to install:: 
    3210 
    3311    [buildout] 
     
    3715        quintagroup.plonegooglesitemaps 
    3816        
    39 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     17* Tell the plone.recipe.zope2instance recipe to install a ZCML slug:: 
    4018 
    4119    [instance] 
     
    4523        quintagroup.plonegooglesitemaps 
    4624       
    47 * Re-run buildout, e.g. with: 
     25* Re-run buildout, e.g. with:: 
    4826 
    4927    $ ./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 ``Plone Google Sitemaps`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
    5034         
    51 You can skip the ZCML slug if you are going to explicitly include the package 
    52 from another package's configure.zcml file. 
     35         
     36Traditional Zope 2 instance 
     37--------------------------- 
    5338 
     39To install quintagroup.plonegooglesitemaps into the global Python environment (or a workingenv), 
     40using a traditional Zope 2 instance, you can do this: 
    5441 
    55 Plone Google Sitemaps Installation in Plone instance 
    56 ==================================================== 
     42* Copy ``quintagroup`` folder to your instance's ``/lib/python`` directory. 
    5743 
    58 Plone Google Sitemaps can be installed as an old-type Plone product. 
     44* Create a file called ``quintagroup.plonegooglesitemaps-configure.zcml`` in your instance's ``/etc/package-includes`` directory. The file 
     45should only contain this:: 
    5946 
    60   1. Go to your Plone Site "Site Setup" area  
    61    
    62   2. Choose "Add/Remove Products" item in the Plone Configuration list 
    63    
    64   3. Select "Plone Google Sitemaps" product among products available for installation 
    65    
    66   4. Press the Install button below the table 
    67    
    68   5. Make sure the product appeared in the right column of installed products and "Google Sitemaps"  
    69      appeared under Add-on Products Configuration. 
     47    <include package="quintagroup.plonegooglesitemaps" /> 
    7048 
     49* Restart the Zope server, for example with the following command in the terminal:: 
     50 
     51   $ ./bin/zopectl restart 
     52 
     53* Install ``Plone Google Sitemaps`` with Quickinstaller in Plone (Site Setup -> Add/Remove Products)  
Note: See TracChangeset for help on using the changeset viewer.