Changeset 1157 in products


Ignore:
Timestamp:
Jul 24, 2009 12:54:49 PM (15 years ago)
Author:
piv
Message:

add basic README.txt, menu.txt for further doc tests to demostrate how to use product, remove revision number from package version

Location:
quintagroup.dropdownmenu/trunk
Files:
1 added
3 edited

Legend:

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

    r1154 r1157  
    22============ 
    33 
     4This package allows Plone websites display multilevel portal dropdown menu based 
     5on portal actions settings and site structure. 
    46 
     7 
     8Requires 
     9-------- 
     10 
     11  Plone 3.0+ 
     12 
     13 
     14Install 
     15------- 
     16 
     17  * first follow instructions inside docs/INSTALL.txt document 
     18 
     19  * then install product with Quick Installer 
     20 
     21 
     22Migration from qPloneDropDownMenu 
     23--------------------------------- 
     24 
     25In case qPloneDropDownMenu product was previously installed in a site 
     26installation procedure will automatically detect legacy settings and migrate 
     27it to a newly created tool along with removing old portal_dropdownmenu one. 
     28 
     29Also installation procedure will uninstall qPloneDropDownMenu product itself 
     30(in case it's still installed) and clean up everything after it. 
     31 
     32Note: to successfully migrate old tabs it's required to have a valid html 
     33markup, otherwise migration procedure won't be able to move tabs correctly. 
     34 
  • quintagroup.dropdownmenu/trunk/setup.cfg

    r1154 r1157  
    44[egg_info] 
    55tag_build = dev 
    6 tag_svn_revision = true 
    7  
  • quintagroup.dropdownmenu/trunk/setup.py

    r1156 r1157  
    66setup(name='quintagroup.dropdownmenu', 
    77      version=version, 
    8       description="This package allows Plone websites display multilevel portal dropdown menu based on portal actions settings and site structure.", 
     8      description="Multilevel portal dropdown menu for Plone sites.", 
    99      long_description=open("README.txt").read() + "\n" + 
    10                        open(os.path.join("docs", "HISTORY.txt")).read(), 
     10                       open(os.path.join("docs", "HISTORY.txt")).read() + 
     11                       open(os.path.join("quintagroup", "dropdownmenu", "menu.txt")).read(), 
    1112      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 
    1213      classifiers=[ 
     
    1516        "Topic :: Software Development :: Libraries :: Python Modules", 
    1617        ], 
    17       keywords='web plone dropdown menu', 
     18      keywords='web plone menu', 
    1819      author='Vitaliy Podoba', 
    1920      author_email='piv@quintagroup.com', 
Note: See TracChangeset for help on using the changeset viewer.