Changeset 3323 in products


Ignore:
Timestamp:
Oct 31, 2011 12:14:12 PM (12 years ago)
Author:
olha
Message:

minor docs update

Location:
quintagroup.portlet.cumulus/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.portlet.cumulus/trunk/README.txt

    r3060 r3323  
    1 Introduction 
    2 ============ 
    3  
    41quintagroup.portlet.cumulus is a Plone product that allows you to add tag cloud 
    52portlets to your Plone site. Your site's tags (content categories are used as  
     
    2522 
    2623Cumulus Portlet options 
    27 ----------------------- 
     24======================= 
    2825 
    2926It is possible to set cumulus portlet options so that it fits your site design, color 
     
    3835 
    3936Supported Plone versions 
    40 ------------------------ 
     37======================== 
    4138 
     39* Plone 4.1 
    4240* Plone 4.0 
    4341* Plone 3.x 
  • quintagroup.portlet.cumulus/trunk/docs/INSTALL.txt

    r2866 r3323  
    22============ 
    33 
    4  * When you're reading this you have probably already run 
    5    ``easy_install quintagroup.portlet.cumulus``. Find out how to install setuptools 
    6    (and EasyInstall) here: 
    7    http://peak.telecommunity.com/DevCenter/EasyInstall 
     4* Add ``quintagroup.portlet.cumulus`` to the list of eggs to install, e.g.:: 
    85 
    9  * Create a file called ``quintagroup.portlet.cumulus-configure.zcml`` in the 
    10    ``/path/to/instance/etc/package-includes`` directory.  The file 
    11    should only contain this:: 
     6   [buildout] 
     7   ... 
     8   eggs = 
     9       ... 
     10       quintagroup.portlet.cumulus 
    1211 
    13        <include package="quintagroup.portlet.cumulus" /> 
     12* Tell the plone.recipe.zope2instance recipe to install a ZCML slug:: 
    1413 
    15 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 
    16 recipe to manage your project, you can do this: 
     14   [instance] 
     15   recipe = plone.recipe.zope2instance 
     16   ... 
     17   zcml = 
     18       quintagroup.portlet.cumulus 
    1719 
    18  * Add ``quintagroup.portlet.cumulus`` to the list of eggs to install, e.g.: 
     20* Re-run buildout, e.g. with:: 
    1921 
    20     [buildout] 
    21     ... 
    22     eggs = 
    23         ... 
    24         quintagroup.portlet.cumulus 
     22   $ ./bin/buildout 
    2523 
    26  * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     24* Restart instance, e.g. with:: 
    2725 
    28     [instance] 
    29     recipe = plone.recipe.zope2instance 
    30     ... 
    31     zcml = 
    32         quintagroup.portlet.cumulus 
     26   $ ./bin/instance restart 
    3327 
    34   * Re-run buildout, e.g. with: 
    35  
    36     $ ./bin/buildout 
    37  
    38   * Restart instance, e.g. with: 
    39  
    40     $ ./bin/instance restart 
    41  
    42   * Install Tag cloud (cumulus) portlet with Quickinstaller in Plone.  
    43  
     28* Install Tag cloud (cumulus) portlet with Quickinstaller in Plone.  
  • quintagroup.portlet.cumulus/trunk/setup.py

    r3308 r3323  
    88      description="A tag cloud portlet that rotates tags in 3D using a Flash movie", 
    99      long_description=open("README.txt").read() + "\n" + 
    10                        open(os.path.join("docs", "HISTORY.txt")).read(), 
     10          open(os.path.join("docs", "INSTALL.txt")).read() + "\n" + 
     11          open(os.path.join("docs", "HISTORY.txt")).read(),                                             
    1112      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 
    1213      classifiers=[ 
     
    1617        ], 
    1718      keywords='plone portlet flash tag cloud', 
    18       author='Bohdan Koval', 
    19       author_email='koval@quintagroup.com', 
     19      author='Quintagroup', 
     20      author_email='support@quintagroup.com', 
    2021      url='http://svn.quintagroup.com/products/quintagroup.portlet.cumulus', 
    2122      license='GPL', 
Note: See TracChangeset for help on using the changeset viewer.