collective.portletmetadata


Namecollective.portletmetadata JSON
Version 2.0.0 PyPI version JSON
download
home_pagehttp://github.com/collective/collective.portletmetadata
SummaryAdds metadata functionality to portlets
upload_time2023-12-14 10:19:49
maintainer
docs_urlNone
authorBo Simonsen
requires_python>=3.8
licenseGPL
keywords portlets metadata class
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            collective.portletmetadata
==========================

About
-----

collective.portletmetadata is a collection of patches that makes it possible edit
settings for each portlet assignment. We denote these settings for metadata thereby
the name of the product.

Out of the box the product provides the following features:

* Possibility for creating local portlets, i.e. portlets that will not be inherited
  even though child settings imply so.
* Possibility for adding a CSS class for a portlet assignment. These are defined
  in the controlpanel (stored in registry).
  Since version 1.6 you can add any CSS classes (for example from Bootstrap) in a portlet, without first defining it in the control panel.
  This is restricted by a permission, so if you do not like this, you can take this permission away from some roles.
  The field for choosing a pre-defined class is always available.
* Possibility for excluding a portlet from being indexed by Google.


Plone version compatibility
---------------------------

* Version 2.0: Plone 6 only.
* Version 1.5: Plone 5 and 6
* Version 1.3: Plone 5
* Version 1.2: Plone 4.3


Usage
-----

Whenever the product is installed a "*" will be visible in the ``@@manage-portlets``
view for each assignment. Whenever the user selects this option, he/she can edit
the metadata as described above.

See a short guide `here <http://bo.geekworld.dk/introducing-collective-portletmetadata/>`_.


Related work
------------

Ideally, these features should be built into ``plone.app.portlets``.
See `issue 13 <https://github.com/collective/collective.portletmetadata/issues/13>`_.


Author
------

* Bo Simonsen <bo@headnet.dk>


Maintainer
----------

* Maurits van Rees <m.van.rees@zestsoftware.nl>



Changes
=======

2.0.0 (2023-12-14)
------------------

- Drop support for Plone 5.


1.6.0 (2023-12-14)
------------------

- Add field "Custom CSS classes".
  You can use this to freely add any (Bootstrap) classes, on top of the CSS classes made available in the control panel.
  The new field and the existing control panel are now only available when you have the new "Portlets: Manage metadata" permission.
  By default Manager and Site Administrator have this.
  Previously only a Manager could access the control panel and make CSS classes available.
  [maurits]



1.5.0 (2022-09-08)
------------------

- Make our patches have no effect when the product is not activated.
  Until now, when a portlet was marked as local, it was still invisible elsewhere when the product was deactivated,
  and you could no longer change the setting.
  [maurits]

- Fix uninstall to remove our registry settings.  [maurits]

- Have a different template override for edit manager macros on Plone 6.
  This uses Bootstrap 5 classes.
  [maurits]

- Fix ImportError on Plone 6, for isDefaultPage.
  [maurits]


1.4.1 (2022-03-14)
------------------

- Fix Plone 5.0 support by downgrading the minimum ``plone.app.portlets`` version to be 3.0.0.
  The 3.x series of plone.app.portlets is the version used by Plone 5.0.
  [JeffersonBledsoe]


1.4 (2022-01-05)
----------------

- Fix for Plone 5.2 and Python 3 compatibility.
  Should still work on Plone 5.0 and between as well.
  [maurits]


1.3 (2018-01-17)
----------------

- Fix case in managing groups-and contenttype-portlets when the query-string
  is no longer in the request.
  [kroman0, pbauer]

- Plone 5 compatibility - this release requires plone 5 (p.a.portlets >= 4.0.0)
  [sunew]

- uninstall profile
  [sunew]


1.2 (2014-04-22)
----------------

- Allow ``class|descriptive title`` as format in the control panel.
  When this format is used, we show the title in de portlet metadata
  edit form.  A simple ``class`` is of course still supported.
  [maurits]

- Support the local portlet checkbox for ContentWellPortlets.
  [mauritsvanrees]


1.1 (2014-03-13)
----------------

- Backported local portlets functionality
  [bosim]

- Override Products/ContentWellPortlets/browser/templates/renderer.pt
  [mauritsvanrees]


1.0 (2013-12-29)
----------------

Initial release

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/collective/collective.portletmetadata",
    "name": "collective.portletmetadata",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "portlets metadata class",
    "author": "Bo Simonsen",
    "author_email": "bo@headnet.dk",
    "download_url": "https://files.pythonhosted.org/packages/5a/51/1fbcf03637905dec3421009a33d2890184ac39f8f1de20ec156ff8022e2b/collective.portletmetadata-2.0.0.tar.gz",
    "platform": null,
    "description": "collective.portletmetadata\n==========================\n\nAbout\n-----\n\ncollective.portletmetadata is a collection of patches that makes it possible edit\nsettings for each portlet assignment. We denote these settings for metadata thereby\nthe name of the product.\n\nOut of the box the product provides the following features:\n\n* Possibility for creating local portlets, i.e. portlets that will not be inherited\n  even though child settings imply so.\n* Possibility for adding a CSS class for a portlet assignment. These are defined\n  in the controlpanel (stored in registry).\n  Since version 1.6 you can add any CSS classes (for example from Bootstrap) in a portlet, without first defining it in the control panel.\n  This is restricted by a permission, so if you do not like this, you can take this permission away from some roles.\n  The field for choosing a pre-defined class is always available.\n* Possibility for excluding a portlet from being indexed by Google.\n\n\nPlone version compatibility\n---------------------------\n\n* Version 2.0: Plone 6 only.\n* Version 1.5: Plone 5 and 6\n* Version 1.3: Plone 5\n* Version 1.2: Plone 4.3\n\n\nUsage\n-----\n\nWhenever the product is installed a \"*\" will be visible in the ``@@manage-portlets``\nview for each assignment. Whenever the user selects this option, he/she can edit\nthe metadata as described above.\n\nSee a short guide `here <http://bo.geekworld.dk/introducing-collective-portletmetadata/>`_.\n\n\nRelated work\n------------\n\nIdeally, these features should be built into ``plone.app.portlets``.\nSee `issue 13 <https://github.com/collective/collective.portletmetadata/issues/13>`_.\n\n\nAuthor\n------\n\n* Bo Simonsen <bo@headnet.dk>\n\n\nMaintainer\n----------\n\n* Maurits van Rees <m.van.rees@zestsoftware.nl>\n\n\n\nChanges\n=======\n\n2.0.0 (2023-12-14)\n------------------\n\n- Drop support for Plone 5.\n\n\n1.6.0 (2023-12-14)\n------------------\n\n- Add field \"Custom CSS classes\".\n  You can use this to freely add any (Bootstrap) classes, on top of the CSS classes made available in the control panel.\n  The new field and the existing control panel are now only available when you have the new \"Portlets: Manage metadata\" permission.\n  By default Manager and Site Administrator have this.\n  Previously only a Manager could access the control panel and make CSS classes available.\n  [maurits]\n\n\n\n1.5.0 (2022-09-08)\n------------------\n\n- Make our patches have no effect when the product is not activated.\n  Until now, when a portlet was marked as local, it was still invisible elsewhere when the product was deactivated,\n  and you could no longer change the setting.\n  [maurits]\n\n- Fix uninstall to remove our registry settings.  [maurits]\n\n- Have a different template override for edit manager macros on Plone 6.\n  This uses Bootstrap 5 classes.\n  [maurits]\n\n- Fix ImportError on Plone 6, for isDefaultPage.\n  [maurits]\n\n\n1.4.1 (2022-03-14)\n------------------\n\n- Fix Plone 5.0 support by downgrading the minimum ``plone.app.portlets`` version to be 3.0.0.\n  The 3.x series of plone.app.portlets is the version used by Plone 5.0.\n  [JeffersonBledsoe]\n\n\n1.4 (2022-01-05)\n----------------\n\n- Fix for Plone 5.2 and Python 3 compatibility.\n  Should still work on Plone 5.0 and between as well.\n  [maurits]\n\n\n1.3 (2018-01-17)\n----------------\n\n- Fix case in managing groups-and contenttype-portlets when the query-string\n  is no longer in the request.\n  [kroman0, pbauer]\n\n- Plone 5 compatibility - this release requires plone 5 (p.a.portlets >= 4.0.0)\n  [sunew]\n\n- uninstall profile\n  [sunew]\n\n\n1.2 (2014-04-22)\n----------------\n\n- Allow ``class|descriptive title`` as format in the control panel.\n  When this format is used, we show the title in de portlet metadata\n  edit form.  A simple ``class`` is of course still supported.\n  [maurits]\n\n- Support the local portlet checkbox for ContentWellPortlets.\n  [mauritsvanrees]\n\n\n1.1 (2014-03-13)\n----------------\n\n- Backported local portlets functionality\n  [bosim]\n\n- Override Products/ContentWellPortlets/browser/templates/renderer.pt\n  [mauritsvanrees]\n\n\n1.0 (2013-12-29)\n----------------\n\nInitial release\n",
    "bugtrack_url": null,
    "license": "GPL",
    "summary": "Adds metadata functionality to portlets",
    "version": "2.0.0",
    "project_urls": {
        "Homepage": "http://github.com/collective/collective.portletmetadata"
    },
    "split_keywords": [
        "portlets",
        "metadata",
        "class"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "decd9b9f05488c08b282e9031c35f63b967696761db7ace10c0f0b6c2cc772d9",
                "md5": "7aa88b420663dfb644fb9006a3646fd8",
                "sha256": "3bae62147937f4ce4bd35baf93bab501c74a7e602c5a3647f4fe62ed036dc9da"
            },
            "downloads": -1,
            "filename": "collective.portletmetadata-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7aa88b420663dfb644fb9006a3646fd8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 22506,
            "upload_time": "2023-12-14T10:19:47",
            "upload_time_iso_8601": "2023-12-14T10:19:47.844282Z",
            "url": "https://files.pythonhosted.org/packages/de/cd/9b9f05488c08b282e9031c35f63b967696761db7ace10c0f0b6c2cc772d9/collective.portletmetadata-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a511fbcf03637905dec3421009a33d2890184ac39f8f1de20ec156ff8022e2b",
                "md5": "e28194b1894e6c9f43d82d566237ddb3",
                "sha256": "e39fc84847997cf87cebc3ae852a673951405fcf4cd6bf01a9125933cd8fa17c"
            },
            "downloads": -1,
            "filename": "collective.portletmetadata-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e28194b1894e6c9f43d82d566237ddb3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 17283,
            "upload_time": "2023-12-14T10:19:49",
            "upload_time_iso_8601": "2023-12-14T10:19:49.627661Z",
            "url": "https://files.pythonhosted.org/packages/5a/51/1fbcf03637905dec3421009a33d2890184ac39f8f1de20ec156ff8022e2b/collective.portletmetadata-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-14 10:19:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "collective",
    "github_project": "collective.portletmetadata",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "collective.portletmetadata"
}
        
Elapsed time: 0.16511s