collective.taxonomy


Namecollective.taxonomy JSON
Version 3.1 PyPI version JSON
download
home_pagehttps://pypi.org/project/collective.taxonomy/
SummaryCreate, edit and use hierarchical taxonomies in Plone!
upload_time2023-05-26 12:19:37
maintainer
docs_urlNone
authorBo Simonsen and Malthe Borch
requires_python>=3.8
licenseGPLv2+
keywords plone taxonomy dexterity
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Taxonomy Vocabularies
=====================

|CI|

.. |CI| image:: https://github.com/collective/collective.taxonomy/actions/workflows/main.yml/badge.svg
   :target: https://github.com/collective/collective.taxonomy/actions


Create, edit and use hierarchical taxonomies in `Plone`_.

This add-on provides support for hierarchical taxonomies in multiple
languages, letting users easily associate existing content with terms
from one or more taxonomies.

    `Taxonomy <https://en.wikipedia.org/wiki/Taxonomy>`_ is the
    "discipline of defining groups [...] on the basis of shared
    characteristics and giving names to those groups. Each group is
    given a rank and groups of a given rank can be aggregated to form
    a super group of higher rank and thus create a hierarchical
    classification".

Here's an example of the "taxonomic kingdoms of life"::

    Living Organisms
    Living Organisms -> Eukaryotic
    Living Organisms -> Eukaryotic -> Simple multicells or unicells
    Living Organisms -> Eukaryotic -> Multicellular
    Living Organisms -> Eukaryotic -> Multicellular -> Autotrophic
    Living Organisms -> Eukaryotic -> Multicellular -> ...
    Living Organisms -> Prokaryotic
    Living Organisms -> Prokaryotic -> Archaebacteria
    Living Organisms -> Prokaryotic -> Eubacteria
    Living Organisms -> Prokaryotic -> Eubacteria -> ...

Taxonomies can be quite large, sometimes in the tens of thousands
(10,000+). And in sites with multiple languages, each title – or
*caption* – must appear in translation.

Note that the selection of a term in the hierarchy implies the
selection of all its parents. In the example above this means that if
"Eubacteria" is selected, then also "Prokaryotic" and "Living
Organisms" will be.


Overview
========

The implementation tries to meet the following requirements:

#. Support many (10,000+) terms.

#. Terms can be organized in a hierarchical classification.

#. Easily import and export in a common format (VDEX).

#. Taxonomies will provide vocabularies that are translatable.

#. Use behaviors to provide a choice field for each taxonomy.

#. Manage taxonomies and assign to content types "through-the-web".

In the description below, we touch on each of these requirements.


Data structure
--------------

In order to limit both the memory and computation requirements, the
term data is contained in exactly one persistent index per language, a
mapping from the *materialized term path* to its *term identifier*.

The term::

    Living Organisms -> Eukaryotic -> Simple multicells or unicells

will be indexed under this path::

    "Living Organisms/Eukaryotic/Simple multicells or unicells"

The index allows us to provide an iterator over the sorted vocabulary
terms, virtually without cost (as well as containment queries).

At the same time, while the hierarchy is encoded, we can quickly look
up terms in a subtree.

Note: As ``collective.taxonomy`` uses slash as separator, you have to
monkey patch the ``PATH_SEPARATOR`` constant if you want to use '/' in
your terms.


Data exchange
-------------

While ``collective.taxonomy`` (this package) does make it possible to
create, manage and edit taxonomies from a browser-based interface, the
primary focus is to support the exchange of terms in the VDEX format:

    The `IMS Vocabulary Definition Exchange
    <http://www.imsglobal.org/vdex/>`_ (VDEX) specification defines a
    grammar for the exchange of value lists of various classes:
    collections often denoted "vocabulary".

This exchange is integrated with `GenericSetup
<https://pypi.org/project/Products.GenericSetup/>`_ which manages
imports and exports using setup profiles. It is also possible to
use the control panel for importing and exporting VDEX files.

The package comes with integration for the `Dexterity
<https://pypi.org/project/plone.app.dexterity/>`_ content type framework:
for each taxonomy, a *behavior* is available that adds a choice field
which pulls its vocabulary from the taxonomy. The behavior is
configurable in terms of field name, title and whether it allows the
selection of one or more multiple terms.  You should *first* install
dexterity and then ``collective.taxonomy``, otherwise the behaviors
for the existing taxonomies will be missing.


How does it work?
-----------------

The main objective during this project has been to get a high rate
of through-the-Web administration. Therefore the use of the product
will not require any Python programming nor ``configure.zcml`` directives.

In the control panel (``/@@taxonomy-settings``), the user can:

#. Import taxonomies from VDEX files.

#. Export taxonomies existing to VDEX files.

#. Delete taxonomies

#. Add and delete behaviors for taxonomies

When a new behavior is created for a taxonomy, it can easily be added
to the desired content types using the content type control panel, provided
by Dexterity. After this is done, the taxonomy is available on add and edit
forms, and it is also available for collections, if ``plone.app.collection``
is used on the site. An index is also created, so the taxonomies can easily
be used for catalog queries.

Please read the detailed `Getting Started Tutorial <https://github.com/collective/collective.taxonomy/blob/master/docs/tutorial.md>`_


React/Redux app to edit taxonomies
----------------------------------

The view ``@@taxonomy-edit-data`` that allow users to edit the taxonomy data
is a React/Redux app (the source code is in the ``javascripts`` directory.

Here's a preview of this view:

.. image:: https://raw.githubusercontent.com/collective/collective.taxonomy/master/images/edit_taxonomy_data.gif
    :alt: Edit taxonomy data preview

The languages allowed for the taxonomies are the languages defined in ``portal_languages``.


Development
===========

Run the app, run ``npm start`` in the ``javascripts`` directory.
To make Plone use the development code, you need the ``NODE_ENV`` environment
variable to be set to ``development``:

::

    NODE_ENV=development bin/instance fg


i18n
----

The app uses `react-intl <https://github.com/yahoo/react-intl>`_ to handle i18n.
To translate the app, add a new language in the translations directory. For example,
create a ``es`` file in the translations directory that contains:

::

    const es = {
        submitLabel: 'Enviar',
    }

    export default es

Then, edit ``translations/index.js`` to add the language to the translations object:

::

    import es from './es'

    const translations = {
        es,
        fr
    }

You'll have to rebuild the js bundle: ``npm run build``

That's it!

Restapi support
---------------

This package also supports endpoints for basic CRUD operations that can be consumend by any frontend service.

The API consumer can create, read, and delete taxonomies.

+----------+---------------------+----------------------------------------+
| Verb     | URL                 | Action                                 |
+==========+=====================+========================================+
| `POST`   | `/@taxonomy`        | Add taxonomy with specific data        |
+----------+---------------------+----------------------------------------+
| `GET`    | `/@taxonomy`        | List all taxonomies                    |
+----------+---------------------+----------------------------------------+
| `GET`    | `/@taxonomy/{name}` | Get taxonomy data                      |
+----------+---------------------+----------------------------------------+
| `DELETE` | `/@taxonomy/{name}` | Remove one or more taxonomies          |
+----------+---------------------+----------------------------------------+
| `PATCH`  | `/@taxonomy/{name}` | Update taxonomy data                   |
+----------+---------------------+----------------------------------------+
| `GET`    | `/@taxonomySchema`  | Get current taxonomy schema            |
+----------+---------------------+----------------------------------------+

Translations
------------

This product has been translated into

- Danish.

- German.

- French.

- Spanish.

You can contribute for any message missing or other new languages, join us at
`Plone Collective Team <https://www.transifex.com/plone/plone-collective/>`_
into *Transifex.net* service with all world Plone translators community.


Plone Version Compatibility
===========================

collective.taxonomy version `3.x`

* Plone 6.0 (py3)

collective.taxonomy version `2.x`

* Plone 5.2 (py2/py3)
* Plone 5.1
* Plone 5.0

collective.taxonomy version `1.x`

* Plone 4.3
* or an older version using a recent version of `plone.dexterity <https://pypi.org/project/plone.dexterity/>`_/`plone.app.dexterity <https://pypi.org/project/plone.app.dexterity/>`_


Frequently Asked Questions
==========================

How can I import an existing ``ATVocabularyManager`` vocabulary?

  Use the script provided in this `gist <https://gist.github.com/3826155>`_. Just
  remember to edit the vocabIdentifier and vocabName.


Contribute
==========

Have an idea? Found a bug? Let us know by `opening a ticket`_.

- Issue Tracker: https://github.com/collective/collective.taxonomy/issues
- Source Code: https://github.com/collective/collective.taxonomy


Contributors
============

Author
------

- Bo Simonsen <bo@headnet.dk>


Contributors
------------

- Malthe Borch <mborch@gmail.com>

- Thomas Clement Mogensen <thomas@headnet.dk>

- Thomas Desvenain <thomas.desvenain@gmail.com>

- Maurits van Rees <maurits@vanrees.org>

- Cédric Messiant <cedric.messiant@gmail.com>

- Leonardo J. Caballero G. <leonardocaballero@gmail.com>

- Peter Mathis <peter.mathis@kombinat.at>


Existing work
=============

In 2010, Rok Garbas <rok@garbas.si> reimplemented and extended prior
work by `Seantis <https://www.seantis.ch/>`_ and released
`collective.vdexvocabulary
<https://pypi.org/project/collective.vdexvocabulary>`_. This
package allows you to configure and populate vocabulary components
from a VDEX-specification. The package supports flat vocabularies
only, and support for multiple languages takes a different approach
(vocabularies are returned in an already translated form). Note that
vocabularies are loaded in a read-only mode, although it's been
proposed that vocabularies might be edited through-the-web.

In 2005, Jens Klein <jens.klein@bluedynamics.com> released
`ATVocabularyManager
<https://pypi.org/project/Products.ATVocabularyManager/>`_. This package makes
it possible to create taxonomies using Plone's content management
interface with terms existing as regular site content. It's integrated
with the `Archetypes <https://pypi.org/project/Products.Archetypes/>`_ content
type framework (now deprecated).


.. [#] Term relationships are currently not supported.


License
=======

The project is licensed under the GPL v2 or later (GPLv2+).

.. _Plone: https://plone.org/
.. _`opening a ticket`: https://github.com/collective/collective.taxonomy/issues

Changes
=======

3.1 (2023-05-26)
----------------

- Integrate taxonomies into Collection tabular view, display values are now resolved
  [MrTango]
- Restapi endpoints support [cekk, nileshgulia1]


3.0.1 (2023-02-02)
------------------

- export/import of field_prefix value.
  [eikichi18]


3.0.0 (2022-12-13)
------------------

- Fix deprecated `collections.Iterable` in `TaxonomyIndexerWrapper`. This got
  removed since python 3.10. Importing `collections.abc.Iterable` now.
  [petschki]

- Add mising `fetch_vocabulary` record for IQueryField
  This was introduced in plone.app.querystring 1.5.0
  [laulaz]

- more markup updates to Bootstrap 5.
  [petschki]

3.0.0a1 (2022-07-13)
--------------------

- Fix configlet icon for Plone 6 (#135)
  [laulaz]

- update markup in `edittaxonomydata.js` to Bootstrap 5
  [petschki]

2.2.2 (2022-07-12)
------------------

- Use new 'Manage taxonomies' permission for taxonomies configlet (#134)
  Permission is by default assigned to Manager and Site Administrator roles.
  [laulaz]

- Fixed 'Required' and 'Single select' option being compulsory [JeffersonBledsoe] (#131)


2.2.1 (2022-03-30)
------------------

- Fix taxonomy data edition when using Gunicorn WSGI (#123)
  [laulaz]
- Implemented possibility to change the IDs. [Petchesi-Iulian] (#113)
- Added contraints to not allow duplicate IDs. [Petchesi-Iulian] (#113)
- Improved the editing interface. [Petchesi-Iulian] (#113)
- Updated the documentation and tutorial. [Petchesi-Iulian] (#113)

2.2.0 (2021-12-13)
------------------

- Refactor import of synchronized decorator [1letter] (#120)


2.1.1 (2021-11-23)
------------------

- Wrap strings in list while indexing to correctly index single-select taxonomies. [adrianschulz] (#108)
- Plone 6 / pip install ready [avoinea] (#114)


2.1.0 (2021-05-27)
------------------

- Fix GenericSetup export in python2
  [gotcha]

- Integrate taxonomies into collective.collectionfilter
  [MrTango]


2.0.1 (2020-07-04)
------------------

- Add a tutorial
  [rodfersou]

- Add Cypress test
  [rodfersou]

- Fix translating msgid when portal language is not found in taxonomy
  [petschki, rodfersou]

- Fix JavaScript in ``input_widget.pt`` which had python comments
  [petschki]

- Add Transifex.net service integration to manage the translation process
  [macagua]

- Added Spanish translation
  [macagua]

- Updated the i18n support
  [macagua]

- Added license documentation of package
  [macagua]


2.0.0 (2019-11-25)
------------------

- add uninstall handler to cleanup persistent utilites and generated behaviors
  [petschki]

- Fix GenericSetup import/export in python3
  [erral]

- Use taxonomy default language for indexing if current language is not available
  [agitator]

- Make generated behaviors language independent
  [agitator]

- export selected taxonomies as ZIPed folder with XML files
  [petschki]

- Python 3 compatibility
  [petschki, agitator]


1.5.1 (2018-10-25)
------------------

- Fix bug in cachekey generator
  [petschki]


1.5.0 (2018-10-18)
------------------

- Fix controlpanel to show settings navigation
  [petschki]

- Memoize vocabulary lookup
  [tomgross, petschki]

- Fix #53 when editing taxonomy data the first time
  [petschki]

- Update german translations
  [petschki]

- Add uninstall profile
  [petschki]

- When using "delete" option on import, clear any previous ordering.
  [malthe]

- Add support for specifying behavior field prefix.
  [malthe]

- The `getTermByToken` method now accepts an optional argument
  `tail_only` which if set, returns a message object where the title
  translates to the last path segment (the "tail" node).
  [malthe]

- Added new method `makeTree` on taxonomy vocabulary class which
  returns a term tree.
  [malthe]

- Support "slash" character in term title (issue #34).
  [malthe]

- When uploading a taxonomy there is now an option to purge the
  existing entries prior to processing.
  [malthe]

- Taxonomies are now assigned a persistent order. Taxonomies imported
  from VDEX now preserve the ordering of the input document.
  [malthe]

- Add new method `iterEntries` on taxonomy vocabulary class that
  provides a safe way to iterate over the path to identifier mapping
  (in order).
  [malthe]

- Vocabulary is a IVocabularyTokenized implementer.
  [cedricmessiant]

- updateBehavior method can now modify other attributes (and not only `field_title`).
  [cedricmessiant]

- Add explicit dependency on plone.api >= 1.5 which
  the api.portal.get_current_language api was introduced.
  [vincentfretin]

- Add german translation
  [tomgross]

- Mention Plone 5.0 and 5.1 compatibility
  [tkimnguyen]

- Enable choosing what fieldset to use for the behavior fields. Fallback to categorization,
  keeping backwards compatibility.
  [sunew]

- Change to no longer register example *Test*-taxonomy on install
  [datakurre]

- Fix issue where taxonomy indexer adapter was not properly unregistered from
  the persistent local registry on taxonomy removal
  [datakurre]

- Fix issue where public ++taxonomy++short_name -traverser for returning
  generator of (key, label) tuples for given taxonomy was broken
  [datakurre]


1.4.4 (2016-11-29)
------------------

- Fix taxonomy export that was broken since 1.4.0.
  [vincentfretin]


1.4.3 (2016-11-29)
------------------

- Fix save action to work on Plone 5 (by reading portal url from
  body[data-portal-url] and adding X-CSRF-TOKEN for post requests
  [datakurre]

- Fix BehaviorRegistrationNotFound error with Plone 5.0.6
  [tomgross]

- Use lxml instead of elementtree
  [tomgross]

- Rename fontello font to taxonomy to avoid clash with Plone 5 theme
  [vincentfretin]


1.4.2 (2016-11-08)
------------------

- Fix save action in edit-taxonomy-data. This was a regression in 1.4.0, the
  get parameter should be taxonomy, not form.widgets.taxonomy.
  [cedricmessiant]


1.4.1 (2016-11-03)
------------------

- Remove Save and Cancel buttons in controlpanel introduced 1.4.0.
  [vincentfretin]

- Add missing upgrade step to create records in registry.
  [vincentfretin]


1.4.0 (2016-11-03)
------------------

- Getting language by acquisition, indeed some Dexterity content has no language or empty language.
  [bsuttor]

- Fix empty context.REQUEST.get('form.widgets.taxonomy'). It add it into POST form.
  [bsuttor]

- Plone 5 compatibility
  [tomgross]

- Use context language to find index.
  [bsuttor]


1.3.0 (2016-07-07)
------------------

- Fix index when taxonomy is added as field.
  [bsuttor]

- Now uses a React/Redux app to edit taxonomy data. It is now possible to edit
  the data in multiple languages and to compare between languages.
  [cedricmessiant]

- Fix index when taxonomy is added as field.
  [bsuttor]

- Now uses a React/Redux app to edit taxonomy data. It is now possible to edit
  the data in multiple languages and to compare between languages.
  [cedricmessiant]

- Add PATH_SEPARATOR constant to be able to use '/' character in terms.
  [cedricmessiant]

- Add ++taxonomy++[shortname] -traverser to be usable with PloneFormGen
  dynamic field vocabulary overrides
  [datakurre]

- prevent taxonomy reset on reinstall if you've defined a vdex xml file
  in your profile
  [petschki]

- Plone 5 compatibility
  [tomgross]

1.2.3 (2014-02-07)
------------------

- ConfigParser supports allow_no_value on Python 2.6, so we cannot allow empty values,
  only on 2.7 or newer.
  [bosim]

1.2.2 (2014-01-03)
------------------

Bugfix release

- Fixed problem with registration of search citeria in collections, the previous
  registration broke export feature of plone.app.registry. Upgrade step has been
  added so please upgrade.
  [bosim]

1.2.1 (2013-11-12)
------------------

Bugfix release, please upgrade

- Using Schema from plone.supermodel. Fixes issue #6
  [bosim]

- Rewrote behavior creation routine. Fixes issue #5
  [bosim]

1.2 (2013-11-12)
----------------

- Add collective.js.jqueryui as dependency.  Install it automatically.
  [maurits]

- i18n fixes,
  messages extraction script,
  french translation.
  [thomasdesvenain]

- Fixed error in vdex import.
  [thomasdesvenain]

- Avoid failure at export when no default language was selected.
  [thomasdesvenain]

- Remove dependency form plone.directives
  [thomasdesvenain]

- Added elementtree in dependencies
  [thomasdesvenain]

1.1 (2013-07-16)
----------------

- Taxonomies can now be added without uploading a VDEX file.
  [bosim]

- Taxonomies can be exported/imported via GenericSetup again.
  [bosim]

- Single select fields are now possible again.
  [bosim]

1.0 (2013-05-07)
----------------

- Initial release
  [bosim]

            

Raw data

            {
    "_id": null,
    "home_page": "https://pypi.org/project/collective.taxonomy/",
    "name": "collective.taxonomy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "plone taxonomy dexterity",
    "author": "Bo Simonsen and Malthe Borch",
    "author_email": "bo@headnet.dk",
    "download_url": "https://files.pythonhosted.org/packages/35/d3/d806613825a1afb28fd2a1286b27dd4226f5f32b7689c21b3f8e725e311e/collective.taxonomy-3.1.tar.gz",
    "platform": null,
    "description": "Taxonomy Vocabularies\n=====================\n\n|CI|\n\n.. |CI| image:: https://github.com/collective/collective.taxonomy/actions/workflows/main.yml/badge.svg\n   :target: https://github.com/collective/collective.taxonomy/actions\n\n\nCreate, edit and use hierarchical taxonomies in `Plone`_.\n\nThis add-on provides support for hierarchical taxonomies in multiple\nlanguages, letting users easily associate existing content with terms\nfrom one or more taxonomies.\n\n    `Taxonomy <https://en.wikipedia.org/wiki/Taxonomy>`_ is the\n    \"discipline of defining groups [...] on the basis of shared\n    characteristics and giving names to those groups. Each group is\n    given a rank and groups of a given rank can be aggregated to form\n    a super group of higher rank and thus create a hierarchical\n    classification\".\n\nHere's an example of the \"taxonomic kingdoms of life\"::\n\n    Living Organisms\n    Living Organisms -> Eukaryotic\n    Living Organisms -> Eukaryotic -> Simple multicells or unicells\n    Living Organisms -> Eukaryotic -> Multicellular\n    Living Organisms -> Eukaryotic -> Multicellular -> Autotrophic\n    Living Organisms -> Eukaryotic -> Multicellular -> ...\n    Living Organisms -> Prokaryotic\n    Living Organisms -> Prokaryotic -> Archaebacteria\n    Living Organisms -> Prokaryotic -> Eubacteria\n    Living Organisms -> Prokaryotic -> Eubacteria -> ...\n\nTaxonomies can be quite large, sometimes in the tens of thousands\n(10,000+). And in sites with multiple languages, each title \u2013 or\n*caption* \u2013 must appear in translation.\n\nNote that the selection of a term in the hierarchy implies the\nselection of all its parents. In the example above this means that if\n\"Eubacteria\" is selected, then also \"Prokaryotic\" and \"Living\nOrganisms\" will be.\n\n\nOverview\n========\n\nThe implementation tries to meet the following requirements:\n\n#. Support many (10,000+) terms.\n\n#. Terms can be organized in a hierarchical classification.\n\n#. Easily import and export in a common format (VDEX).\n\n#. Taxonomies will provide vocabularies that are translatable.\n\n#. Use behaviors to provide a choice field for each taxonomy.\n\n#. Manage taxonomies and assign to content types \"through-the-web\".\n\nIn the description below, we touch on each of these requirements.\n\n\nData structure\n--------------\n\nIn order to limit both the memory and computation requirements, the\nterm data is contained in exactly one persistent index per language, a\nmapping from the *materialized term path* to its *term identifier*.\n\nThe term::\n\n    Living Organisms -> Eukaryotic -> Simple multicells or unicells\n\nwill be indexed under this path::\n\n    \"Living Organisms/Eukaryotic/Simple multicells or unicells\"\n\nThe index allows us to provide an iterator over the sorted vocabulary\nterms, virtually without cost (as well as containment queries).\n\nAt the same time, while the hierarchy is encoded, we can quickly look\nup terms in a subtree.\n\nNote: As ``collective.taxonomy`` uses slash as separator, you have to\nmonkey patch the ``PATH_SEPARATOR`` constant if you want to use '/' in\nyour terms.\n\n\nData exchange\n-------------\n\nWhile ``collective.taxonomy`` (this package) does make it possible to\ncreate, manage and edit taxonomies from a browser-based interface, the\nprimary focus is to support the exchange of terms in the VDEX format:\n\n    The `IMS Vocabulary Definition Exchange\n    <http://www.imsglobal.org/vdex/>`_ (VDEX) specification defines a\n    grammar for the exchange of value lists of various classes:\n    collections often denoted \"vocabulary\".\n\nThis exchange is integrated with `GenericSetup\n<https://pypi.org/project/Products.GenericSetup/>`_ which manages\nimports and exports using setup profiles. It is also possible to\nuse the control panel for importing and exporting VDEX files.\n\nThe package comes with integration for the `Dexterity\n<https://pypi.org/project/plone.app.dexterity/>`_ content type framework:\nfor each taxonomy, a *behavior* is available that adds a choice field\nwhich pulls its vocabulary from the taxonomy. The behavior is\nconfigurable in terms of field name, title and whether it allows the\nselection of one or more multiple terms.  You should *first* install\ndexterity and then ``collective.taxonomy``, otherwise the behaviors\nfor the existing taxonomies will be missing.\n\n\nHow does it work?\n-----------------\n\nThe main objective during this project has been to get a high rate\nof through-the-Web administration. Therefore the use of the product\nwill not require any Python programming nor ``configure.zcml`` directives.\n\nIn the control panel (``/@@taxonomy-settings``), the user can:\n\n#. Import taxonomies from VDEX files.\n\n#. Export taxonomies existing to VDEX files.\n\n#. Delete taxonomies\n\n#. Add and delete behaviors for taxonomies\n\nWhen a new behavior is created for a taxonomy, it can easily be added\nto the desired content types using the content type control panel, provided\nby Dexterity. After this is done, the taxonomy is available on add and edit\nforms, and it is also available for collections, if ``plone.app.collection``\nis used on the site. An index is also created, so the taxonomies can easily\nbe used for catalog queries.\n\nPlease read the detailed `Getting Started Tutorial <https://github.com/collective/collective.taxonomy/blob/master/docs/tutorial.md>`_\n\n\nReact/Redux app to edit taxonomies\n----------------------------------\n\nThe view ``@@taxonomy-edit-data`` that allow users to edit the taxonomy data\nis a React/Redux app (the source code is in the ``javascripts`` directory.\n\nHere's a preview of this view:\n\n.. image:: https://raw.githubusercontent.com/collective/collective.taxonomy/master/images/edit_taxonomy_data.gif\n    :alt: Edit taxonomy data preview\n\nThe languages allowed for the taxonomies are the languages defined in ``portal_languages``.\n\n\nDevelopment\n===========\n\nRun the app, run ``npm start`` in the ``javascripts`` directory.\nTo make Plone use the development code, you need the ``NODE_ENV`` environment\nvariable to be set to ``development``:\n\n::\n\n    NODE_ENV=development bin/instance fg\n\n\ni18n\n----\n\nThe app uses `react-intl <https://github.com/yahoo/react-intl>`_ to handle i18n.\nTo translate the app, add a new language in the translations directory. For example,\ncreate a ``es`` file in the translations directory that contains:\n\n::\n\n    const es = {\n        submitLabel: 'Enviar',\n    }\n\n    export default es\n\nThen, edit ``translations/index.js`` to add the language to the translations object:\n\n::\n\n    import es from './es'\n\n    const translations = {\n        es,\n        fr\n    }\n\nYou'll have to rebuild the js bundle: ``npm run build``\n\nThat's it!\n\nRestapi support\n---------------\n\nThis package also supports endpoints for basic CRUD operations that can be consumend by any frontend service.\n\nThe API consumer can create, read, and delete taxonomies.\n\n+----------+---------------------+----------------------------------------+\n| Verb     | URL                 | Action                                 |\n+==========+=====================+========================================+\n| `POST`   | `/@taxonomy`        | Add taxonomy with specific data        |\n+----------+---------------------+----------------------------------------+\n| `GET`    | `/@taxonomy`        | List all taxonomies                    |\n+----------+---------------------+----------------------------------------+\n| `GET`    | `/@taxonomy/{name}` | Get taxonomy data                      |\n+----------+---------------------+----------------------------------------+\n| `DELETE` | `/@taxonomy/{name}` | Remove one or more taxonomies          |\n+----------+---------------------+----------------------------------------+\n| `PATCH`  | `/@taxonomy/{name}` | Update taxonomy data                   |\n+----------+---------------------+----------------------------------------+\n| `GET`    | `/@taxonomySchema`  | Get current taxonomy schema            |\n+----------+---------------------+----------------------------------------+\n\nTranslations\n------------\n\nThis product has been translated into\n\n- Danish.\n\n- German.\n\n- French.\n\n- Spanish.\n\nYou can contribute for any message missing or other new languages, join us at\n`Plone Collective Team <https://www.transifex.com/plone/plone-collective/>`_\ninto *Transifex.net* service with all world Plone translators community.\n\n\nPlone Version Compatibility\n===========================\n\ncollective.taxonomy version `3.x`\n\n* Plone 6.0 (py3)\n\ncollective.taxonomy version `2.x`\n\n* Plone 5.2 (py2/py3)\n* Plone 5.1\n* Plone 5.0\n\ncollective.taxonomy version `1.x`\n\n* Plone 4.3\n* or an older version using a recent version of `plone.dexterity <https://pypi.org/project/plone.dexterity/>`_/`plone.app.dexterity <https://pypi.org/project/plone.app.dexterity/>`_\n\n\nFrequently Asked Questions\n==========================\n\nHow can I import an existing ``ATVocabularyManager`` vocabulary?\n\n  Use the script provided in this `gist <https://gist.github.com/3826155>`_. Just\n  remember to edit the vocabIdentifier and vocabName.\n\n\nContribute\n==========\n\nHave an idea? Found a bug? Let us know by `opening a ticket`_.\n\n- Issue Tracker: https://github.com/collective/collective.taxonomy/issues\n- Source Code: https://github.com/collective/collective.taxonomy\n\n\nContributors\n============\n\nAuthor\n------\n\n- Bo Simonsen <bo@headnet.dk>\n\n\nContributors\n------------\n\n- Malthe Borch <mborch@gmail.com>\n\n- Thomas Clement Mogensen <thomas@headnet.dk>\n\n- Thomas Desvenain <thomas.desvenain@gmail.com>\n\n- Maurits van Rees <maurits@vanrees.org>\n\n- C\u00e9dric Messiant <cedric.messiant@gmail.com>\n\n- Leonardo J. Caballero G. <leonardocaballero@gmail.com>\n\n- Peter Mathis <peter.mathis@kombinat.at>\n\n\nExisting work\n=============\n\nIn 2010, Rok Garbas <rok@garbas.si> reimplemented and extended prior\nwork by `Seantis <https://www.seantis.ch/>`_ and released\n`collective.vdexvocabulary\n<https://pypi.org/project/collective.vdexvocabulary>`_. This\npackage allows you to configure and populate vocabulary components\nfrom a VDEX-specification. The package supports flat vocabularies\nonly, and support for multiple languages takes a different approach\n(vocabularies are returned in an already translated form). Note that\nvocabularies are loaded in a read-only mode, although it's been\nproposed that vocabularies might be edited through-the-web.\n\nIn 2005, Jens Klein <jens.klein@bluedynamics.com> released\n`ATVocabularyManager\n<https://pypi.org/project/Products.ATVocabularyManager/>`_. This package makes\nit possible to create taxonomies using Plone's content management\ninterface with terms existing as regular site content. It's integrated\nwith the `Archetypes <https://pypi.org/project/Products.Archetypes/>`_ content\ntype framework (now deprecated).\n\n\n.. [#] Term relationships are currently not supported.\n\n\nLicense\n=======\n\nThe project is licensed under the GPL v2 or later (GPLv2+).\n\n.. _Plone: https://plone.org/\n.. _`opening a ticket`: https://github.com/collective/collective.taxonomy/issues\n\nChanges\n=======\n\n3.1 (2023-05-26)\n----------------\n\n- Integrate taxonomies into Collection tabular view, display values are now resolved\n  [MrTango]\n- Restapi endpoints support [cekk, nileshgulia1]\n\n\n3.0.1 (2023-02-02)\n------------------\n\n- export/import of field_prefix value.\n  [eikichi18]\n\n\n3.0.0 (2022-12-13)\n------------------\n\n- Fix deprecated `collections.Iterable` in `TaxonomyIndexerWrapper`. This got\n  removed since python 3.10. Importing `collections.abc.Iterable` now.\n  [petschki]\n\n- Add mising `fetch_vocabulary` record for IQueryField\n  This was introduced in plone.app.querystring 1.5.0\n  [laulaz]\n\n- more markup updates to Bootstrap 5.\n  [petschki]\n\n3.0.0a1 (2022-07-13)\n--------------------\n\n- Fix configlet icon for Plone 6 (#135)\n  [laulaz]\n\n- update markup in `edittaxonomydata.js` to Bootstrap 5\n  [petschki]\n\n2.2.2 (2022-07-12)\n------------------\n\n- Use new 'Manage taxonomies' permission for taxonomies configlet (#134)\n  Permission is by default assigned to Manager and Site Administrator roles.\n  [laulaz]\n\n- Fixed 'Required' and 'Single select' option being compulsory [JeffersonBledsoe] (#131)\n\n\n2.2.1 (2022-03-30)\n------------------\n\n- Fix taxonomy data edition when using Gunicorn WSGI (#123)\n  [laulaz]\n- Implemented possibility to change the IDs. [Petchesi-Iulian] (#113)\n- Added contraints to not allow duplicate IDs. [Petchesi-Iulian] (#113)\n- Improved the editing interface. [Petchesi-Iulian] (#113)\n- Updated the documentation and tutorial. [Petchesi-Iulian] (#113)\n\n2.2.0 (2021-12-13)\n------------------\n\n- Refactor import of synchronized decorator [1letter] (#120)\n\n\n2.1.1 (2021-11-23)\n------------------\n\n- Wrap strings in list while indexing to correctly index single-select taxonomies. [adrianschulz] (#108)\n- Plone 6 / pip install ready [avoinea] (#114)\n\n\n2.1.0 (2021-05-27)\n------------------\n\n- Fix GenericSetup export in python2\n  [gotcha]\n\n- Integrate taxonomies into collective.collectionfilter\n  [MrTango]\n\n\n2.0.1 (2020-07-04)\n------------------\n\n- Add a tutorial\n  [rodfersou]\n\n- Add Cypress test\n  [rodfersou]\n\n- Fix translating msgid when portal language is not found in taxonomy\n  [petschki, rodfersou]\n\n- Fix JavaScript in ``input_widget.pt`` which had python comments\n  [petschki]\n\n- Add Transifex.net service integration to manage the translation process\n  [macagua]\n\n- Added Spanish translation\n  [macagua]\n\n- Updated the i18n support\n  [macagua]\n\n- Added license documentation of package\n  [macagua]\n\n\n2.0.0 (2019-11-25)\n------------------\n\n- add uninstall handler to cleanup persistent utilites and generated behaviors\n  [petschki]\n\n- Fix GenericSetup import/export in python3\n  [erral]\n\n- Use taxonomy default language for indexing if current language is not available\n  [agitator]\n\n- Make generated behaviors language independent\n  [agitator]\n\n- export selected taxonomies as ZIPed folder with XML files\n  [petschki]\n\n- Python 3 compatibility\n  [petschki, agitator]\n\n\n1.5.1 (2018-10-25)\n------------------\n\n- Fix bug in cachekey generator\n  [petschki]\n\n\n1.5.0 (2018-10-18)\n------------------\n\n- Fix controlpanel to show settings navigation\n  [petschki]\n\n- Memoize vocabulary lookup\n  [tomgross, petschki]\n\n- Fix #53 when editing taxonomy data the first time\n  [petschki]\n\n- Update german translations\n  [petschki]\n\n- Add uninstall profile\n  [petschki]\n\n- When using \"delete\" option on import, clear any previous ordering.\n  [malthe]\n\n- Add support for specifying behavior field prefix.\n  [malthe]\n\n- The `getTermByToken` method now accepts an optional argument\n  `tail_only` which if set, returns a message object where the title\n  translates to the last path segment (the \"tail\" node).\n  [malthe]\n\n- Added new method `makeTree` on taxonomy vocabulary class which\n  returns a term tree.\n  [malthe]\n\n- Support \"slash\" character in term title (issue #34).\n  [malthe]\n\n- When uploading a taxonomy there is now an option to purge the\n  existing entries prior to processing.\n  [malthe]\n\n- Taxonomies are now assigned a persistent order. Taxonomies imported\n  from VDEX now preserve the ordering of the input document.\n  [malthe]\n\n- Add new method `iterEntries` on taxonomy vocabulary class that\n  provides a safe way to iterate over the path to identifier mapping\n  (in order).\n  [malthe]\n\n- Vocabulary is a IVocabularyTokenized implementer.\n  [cedricmessiant]\n\n- updateBehavior method can now modify other attributes (and not only `field_title`).\n  [cedricmessiant]\n\n- Add explicit dependency on plone.api >= 1.5 which\n  the api.portal.get_current_language api was introduced.\n  [vincentfretin]\n\n- Add german translation\n  [tomgross]\n\n- Mention Plone 5.0 and 5.1 compatibility\n  [tkimnguyen]\n\n- Enable choosing what fieldset to use for the behavior fields. Fallback to categorization,\n  keeping backwards compatibility.\n  [sunew]\n\n- Change to no longer register example *Test*-taxonomy on install\n  [datakurre]\n\n- Fix issue where taxonomy indexer adapter was not properly unregistered from\n  the persistent local registry on taxonomy removal\n  [datakurre]\n\n- Fix issue where public ++taxonomy++short_name -traverser for returning\n  generator of (key, label) tuples for given taxonomy was broken\n  [datakurre]\n\n\n1.4.4 (2016-11-29)\n------------------\n\n- Fix taxonomy export that was broken since 1.4.0.\n  [vincentfretin]\n\n\n1.4.3 (2016-11-29)\n------------------\n\n- Fix save action to work on Plone 5 (by reading portal url from\n  body[data-portal-url] and adding X-CSRF-TOKEN for post requests\n  [datakurre]\n\n- Fix BehaviorRegistrationNotFound error with Plone 5.0.6\n  [tomgross]\n\n- Use lxml instead of elementtree\n  [tomgross]\n\n- Rename fontello font to taxonomy to avoid clash with Plone 5 theme\n  [vincentfretin]\n\n\n1.4.2 (2016-11-08)\n------------------\n\n- Fix save action in edit-taxonomy-data. This was a regression in 1.4.0, the\n  get parameter should be taxonomy, not form.widgets.taxonomy.\n  [cedricmessiant]\n\n\n1.4.1 (2016-11-03)\n------------------\n\n- Remove Save and Cancel buttons in controlpanel introduced 1.4.0.\n  [vincentfretin]\n\n- Add missing upgrade step to create records in registry.\n  [vincentfretin]\n\n\n1.4.0 (2016-11-03)\n------------------\n\n- Getting language by acquisition, indeed some Dexterity content has no language or empty language.\n  [bsuttor]\n\n- Fix empty context.REQUEST.get('form.widgets.taxonomy'). It add it into POST form.\n  [bsuttor]\n\n- Plone 5 compatibility\n  [tomgross]\n\n- Use context language to find index.\n  [bsuttor]\n\n\n1.3.0 (2016-07-07)\n------------------\n\n- Fix index when taxonomy is added as field.\n  [bsuttor]\n\n- Now uses a React/Redux app to edit taxonomy data. It is now possible to edit\n  the data in multiple languages and to compare between languages.\n  [cedricmessiant]\n\n- Fix index when taxonomy is added as field.\n  [bsuttor]\n\n- Now uses a React/Redux app to edit taxonomy data. It is now possible to edit\n  the data in multiple languages and to compare between languages.\n  [cedricmessiant]\n\n- Add PATH_SEPARATOR constant to be able to use '/' character in terms.\n  [cedricmessiant]\n\n- Add ++taxonomy++[shortname] -traverser to be usable with PloneFormGen\n  dynamic field vocabulary overrides\n  [datakurre]\n\n- prevent taxonomy reset on reinstall if you've defined a vdex xml file\n  in your profile\n  [petschki]\n\n- Plone 5 compatibility\n  [tomgross]\n\n1.2.3 (2014-02-07)\n------------------\n\n- ConfigParser supports allow_no_value on Python 2.6, so we cannot allow empty values,\n  only on 2.7 or newer.\n  [bosim]\n\n1.2.2 (2014-01-03)\n------------------\n\nBugfix release\n\n- Fixed problem with registration of search citeria in collections, the previous\n  registration broke export feature of plone.app.registry. Upgrade step has been\n  added so please upgrade.\n  [bosim]\n\n1.2.1 (2013-11-12)\n------------------\n\nBugfix release, please upgrade\n\n- Using Schema from plone.supermodel. Fixes issue #6\n  [bosim]\n\n- Rewrote behavior creation routine. Fixes issue #5\n  [bosim]\n\n1.2 (2013-11-12)\n----------------\n\n- Add collective.js.jqueryui as dependency.  Install it automatically.\n  [maurits]\n\n- i18n fixes,\n  messages extraction script,\n  french translation.\n  [thomasdesvenain]\n\n- Fixed error in vdex import.\n  [thomasdesvenain]\n\n- Avoid failure at export when no default language was selected.\n  [thomasdesvenain]\n\n- Remove dependency form plone.directives\n  [thomasdesvenain]\n\n- Added elementtree in dependencies\n  [thomasdesvenain]\n\n1.1 (2013-07-16)\n----------------\n\n- Taxonomies can now be added without uploading a VDEX file.\n  [bosim]\n\n- Taxonomies can be exported/imported via GenericSetup again.\n  [bosim]\n\n- Single select fields are now possible again.\n  [bosim]\n\n1.0 (2013-05-07)\n----------------\n\n- Initial release\n  [bosim]\n",
    "bugtrack_url": null,
    "license": "GPLv2+",
    "summary": "Create, edit and use hierarchical taxonomies in Plone!",
    "version": "3.1",
    "project_urls": {
        "Homepage": "https://pypi.org/project/collective.taxonomy/"
    },
    "split_keywords": [
        "plone",
        "taxonomy",
        "dexterity"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b38d68aa1701411bc4c566869a9c713615269a24f20f11a0820c2089e0f069d3",
                "md5": "7514320ba37ca2827cbe265092a2ddc0",
                "sha256": "88c2dff6fa5d5d56fa82ccf0bfaa08cc743c27e15bb268e1cdd47afec81cc1eb"
            },
            "downloads": -1,
            "filename": "collective.taxonomy-3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7514320ba37ca2827cbe265092a2ddc0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 397394,
            "upload_time": "2023-05-26T12:19:33",
            "upload_time_iso_8601": "2023-05-26T12:19:33.147211Z",
            "url": "https://files.pythonhosted.org/packages/b3/8d/68aa1701411bc4c566869a9c713615269a24f20f11a0820c2089e0f069d3/collective.taxonomy-3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35d3d806613825a1afb28fd2a1286b27dd4226f5f32b7689c21b3f8e725e311e",
                "md5": "249b9aaf44d551c0e2db7525c7b1a35c",
                "sha256": "23133bc2cd94257fb700cc7853fef7a8fef267801ca16f10dc8677312a6bb481"
            },
            "downloads": -1,
            "filename": "collective.taxonomy-3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "249b9aaf44d551c0e2db7525c7b1a35c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 3061123,
            "upload_time": "2023-05-26T12:19:37",
            "upload_time_iso_8601": "2023-05-26T12:19:37.656665Z",
            "url": "https://files.pythonhosted.org/packages/35/d3/d806613825a1afb28fd2a1286b27dd4226f5f32b7689c21b3f8e725e311e/collective.taxonomy-3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-26 12:19:37",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "collective.taxonomy"
}
        
Elapsed time: 0.06956s