Changeset 3218 in products


Ignore:
Timestamp:
May 17, 2011 8:08:34 AM (13 years ago)
Author:
olha
Message:

doc files updated

Location:
quintagroup.portlet.static/trunk
Files:
1 added
6 edited

Legend:

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

    r2478 r3218  
    1 quintagroup.portlet.static 
    2 ========================== 
     1See quintagroup/portlet/static/README.txt 
    32 
    4 quintagroup.portlet.static is a Plone product that allows you to add stylished 
    5 static text portlets to your Plone site. Static Stylish Text portlets are  
    6 usual Plone Static Text portlets with certain HTML classes assigned.  
    7  
    8 Static Stylish Text portlets can be used in those cases when you need to have 
    9 several static text portlets be displayed in different ways. For this,  
    10 go to Site Setup -> Add-on Products Configuration -> Static Stylish portlet 
    11 (www.yoursite/@@staticstylishportlet-controlpanel). In Static Stylish portlet 
    12 settings area create HTML classes and specify CSS styles for those HTML  
    13 classes in the corresponding CSS file. These classes will be available for  
    14 you in a Portlet style drop down menu on static stylish text portlet add/edit form.  
    15  
    16 Usage 
    17 ----- 
    18  
    19 * Select Static Stylish text portlet from Add portlet drop-down menu 
    20  
    21 * Provide content to be displayed on the portlet [as you would do for 
    22   usual Plone static text portlets 
    23  
    24 * Choose a portlet style for the portlet from the list of available HTML 
    25   classes. 
    26  
    27 * Save changes. 
    28  
    29 Supported Plone version 
    30 ----------------------- 
    31  
    32 * 3.x 
    33  
    34 Authors 
    35 ------- 
    36  
    37 * Vitaliy Podoba 
    38  
    39 * Roman Kozlovskyi 
    40  
    41 Copyright (c) "Quintagroup": http://quintagroup.com/, 2010 
    42  
  • quintagroup.portlet.static/trunk/docs/HISTORY.txt

    r2777 r3218  
    11Changelog 
    22========= 
     3 
     40.4 - May 20, 2011 
     5------------------ 
     6 
     7* Plone 4 compatibility added 
     8 
    39 
    4100.3 - September 03, 2010 
  • quintagroup.portlet.static/trunk/docs/INSTALL.txt

    r285 r3218  
    1 quintagroup.portlet.static Installation 
    2 ======================= 
     1Installation 
     2============ 
    33 
    4  * When you're reading this you have probably already run 
    5    ``easy_install quintagroup.portlet.static``. Find out how to install setuptools 
    6    (and EasyInstall) here: 
    7    http://peak.telecommunity.com/DevCenter/EasyInstall 
    8  
    9  * Create a file called ``quintagroup.portlet.static-configure.zcml`` in the 
    10    ``/path/to/instance/etc/package-includes`` directory.  The file 
    11    should only contain this:: 
    12  
    13        <include package="quintagroup.portlet.static" /> 
    14  
    15 Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance 
    16 recipe to manage your project, you can do this: 
     4In buildout.cfg file of your instance:  
    175 
    186 * Add ``quintagroup.portlet.static`` to the list of eggs to install, e.g.: 
     
    2412        quintagroup.portlet.static 
    2513 
    26   * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
     14 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: 
    2715 
    2816    [instance] 
    29     recipe = plone.recipe.zope2instance 
    3017    ... 
    3118    zcml = 
    3219        quintagroup.portlet.static 
    3320 
    34   * Re-run buildout, e.g. with: 
     21 * Re-run buildout, e.g. with: 
    3522 
    3623    $ ./bin/buildout 
    3724 
    38 You can skip the ZCML slug if you are going to explicitly include the package 
    39 from another package's configure.zcml file. 
     25 * Restart the Zope server, for example, with the following command in the terminal:: 
     26 
     27    $ ./bin/instance restart 
     28 
     29 * Install 'Static Stylish Portlet' via Site Setup -> Add-ons 
  • quintagroup.portlet.static/trunk/docs/LICENSE.txt

    r285 r3218  
    1   quintagroup.portlet.static is copyright Vitaliy Podoba 
     1  quintagroup.portlet.static is copyright Quintagroup 
    22 
    33  This program is free software; you can redistribute it and/or modify 
  • quintagroup.portlet.static/trunk/quintagroup/portlet/static/profiles/default/metadata.xml

    r671 r3218  
    11<?xml version="1.0"?> 
    22<metadata> 
    3   <version>0.2</version> 
     3  <version>0.4</version> 
    44</metadata> 
  • quintagroup.portlet.static/trunk/setup.py

    r2777 r3218  
    22import os 
    33 
    4 version = '0.3' 
     4version = '0.4' 
    55 
    66setup(name='quintagroup.portlet.static', 
    77      version=version, 
    88      description="Static portlet with one extra styling field", 
    9       long_description=open("README.txt").read() + "\n" + 
     9      long_description=open(os.path.join("quintagroup", "portlet", "static", "README.txt")).read() + "\n\n" + 
     10                       open(os.path.join("docs", "INSTALL.txt")).read() + "\n\n"+ 
    1011                       open(os.path.join("docs", "HISTORY.txt")).read(), 
    1112      # Get more strings from http://www.python.org/pypi?%3Aaction=list_classifiers 
Note: See TracChangeset for help on using the changeset viewer.