{
"info": {
"author": "Radim Novotny",
"author_email": "novotny.radim@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Framework :: Plone",
"Framework :: Zope2",
"Framework :: Zope3",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": "collective.contentleadimage\n============================\n\n.. contents :: :local:\n\nOverview\n--------\n\n.. image:: https://travis-ci.org/collective/collective.contentleadimage.svg?branch=master\n :target: https://travis-ci.org/collective/collective.contentleadimage\n\nThis products adds complete support for adding descriptive image to any\nArchetypes based content in Plone site. Each object has new tab \"Edit lead\nimage\", which allows to upload new or remove current image. It is similar\nbehaviour as Plone News Item (you can add image to news item and this image is\ndisplayed in news item overview listing.\n\nThere is folder_leadimage_view page template, which can be used to list all\nitems in the folder together with images attached.\n\nThere is configuration control panel, where you can set maximum width and height\nof the uploaded images. The width and height is applied on each image upload\n(image is automatically resized). You can specify smaller width and height\nwhich is used as image preview in the below content title viewlet (next to\ncontent Description). Large image is used in the above content body viewlet\n(floated left at the top of content body).\n\nBelow content title viewlet is preffered, but Manager can easily switch\nthe viewlets on/off in the control panel.\n\nThere is FieldIndex and metadata in portal_catalog: hasContentLeadImage\n(True/False). This may help developers to create own templates optimized\nfor displaying lead image.\n\n**Note**: For Plone 4.4+ and plone.app.contenttypes based content\nthere is support for lead image behavior out of the box. This addon\nis only compatible with legacy Archetypes based content.\n\nInstallation\n------------\n\nIf you are using zc.buildout and the plone.recipe.zope2instance recipe to manage\nyour project, you can do this:\n\nAdd ``collective.contentleadimage`` to the list of eggs to install, e.g.::\n\n [buildout]\n ...\n eggs =\n ...\n collective.contentleadimage\n\nTell the plone.recipe.zope2instance recipe to install a ZCML slug::\n\n [instance]\n recipe = plone.recipe.zope2instance\n ...\n zcml =\n collective.contentleadimage\n\nRe-run buildout, e.g. with::\n\n $ ./bin/buildout\n\nMore detailed installation instructions may be found in docs/INSTALL.txt.\n\nUsing collective.contentleadimage with plone.app.scaling\n----------------------------------------------------------\n\n`plone.app.imaging