Multilingual Catalog Indexes for Plone
Project description
.. This README is meant for consumption by humans and pypi. Pypi can render rst files so please do not use Sphinx features.
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
This text does not appear on pypi or github. It is a comment.
==============================================================================
plone.app.multilingualindexes
==============================================================================
.. image:: https://travis-ci.org/plone/plone.app.multilingualindexes.svg?branch=master
:target: https://travis-ci.org/plone/plone.app.multilingualindexes
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/python/black
.. image:: https://coveralls.io/repos/github/plone/plone.app.multilingualindexes/badge.svg?branch=master
:target: https://coveralls.io/github/plone/plone.app.multilingualindexes?branch=master
Indexes optimized to query multilingual content made with plone.app.multilingual.
Features
--------
``tgpath`` Index (Translation Group Path)
Utility and index to get the path of an item as UUIDs of its translationgroup.
``language_or_fallback`` Index
Index to query items and get one fallback if not available in the current language.
Fallbacks can be configured in control-panel and are stored in the registry.
Integration with ``Collections``
Both indexes are available in Collections and other places using ``plone.app.querystring`` under the hood.
Both indexes do only need activation.
``tgpath`` is available as a switch ``Language independent location``.
If this is selected, the normal path will be converted to a tgpath!
If no path is selected this switch has no effect.
.. figure:: https://raw.githubusercontent.com/plone/plone.app.multilingualindexes/master/docs/querystring_tgpath.png
:scale: 100 %
:alt: Querystring selection with Translationgroup path
``language_or_fallback`` is available as ``Fallback languages``.
If a path is selected together with this option, the path will be converted to a ``tgpath``.
If the ``tgpath`` or ``language_or_fallback`` is used in a Collection, the ``path`` will be set to the portal.
Thus the usal automatically added fixation to the current ``INavigationRoot`` wont be set,
because language root folders are navigation roots.
.. figure:: https://raw.githubusercontent.com/plone/plone.app.multilingualindexes/master/docs/querystring_fallback.png
:scale: 100 %
:alt: Querystring selection with Language fallback and (optional) location.
Behind the scenes
-----------------
Fallback Index
It is in fact a simple FieldIndex.
Fallback detection happens on index time.
On query time it has the same functionality and performance as the normal Language index.
.. figure:: https://raw.githubusercontent.com/plone/plone.app.multilingualindexes/master/docs/querystring_fallback.png
:scale: 100 %
:alt: Browse the index to get a feeling what fallbacks are in there.
Translation Group Index
It is in fact a normal ExtendendPathIndex.
Just the path it indexes consists out of the translation group uids.
If an item is not translatable and thus is not part of an translationgroup,
then its normal id is taken as patyh element.
Path example: ``/Plone/f5843e426b5d47cdb44af587b322f7ea/320b1ffbf0f64603803043d48bd57516``.
In order to query the index, you need to use the translationgroup path instead of the id path::
from plone.app.multilingualindexes.tgpath import tg_path
import plone.api
plone.api.content.find(
tgpath='/'.join(tg_path(context)),
language_or_fallback=plone.api.portal.get_current_language()
)
Installation
------------
Install plone.app.multilingualindexes by adding it to your buildout::
[buildout]
...
eggs =
plone.app.multilingualindexes
and then running ``bin/buildout``
Contribute
----------
- Issue Tracker: https://github.com/plone/plone.app.multilingualindexes/issues
- Source Code: https://github.com/plone/plone.app.multilingualindexes
License
-------
The project is licensed under the GPLv2.
Contributors
============
- Jens W. Klein, jk@kleinundpartner.at
- Peter Holzer, peter.holzer@agitator.com
- Patrick Gerken, gerken@patrick-gerken.de
- Georg "Gogo" Bernhard
Changelog
=========
2.1 (2020-08-04)
----------------
- Patch that allows for using multiple paths, fixing issue https://github.com/plone/plone.app.multilingualindexes/issues/9
[gogobd]
- User PATH_INDICES as suggested by jensens
[gogobd]
2.0 (2019-07-12)
----------------
- Patch CMFCore because of https://github.com/zopefoundation/Products.CMFCore/issues/79
[jensens]
- Fix bugs on rename/move/delete (wrong fallbacks)
[jensens]
- Drop support of Plone 5.1
[jensens]
- Python 3 compatibility
[jensens]
- Refactor index to be less complex on indexing.
[jensens]
- Bugfix: Use latest plone.app.multilingual and add subscribers to ensure in-/rein-/unindexing.
[jensens]
- Fixing "RuntimeError: the bucket being iterated changed size" (issue #3)
[gogobd]
- Depend on ``Products.CMFPlone`` instead of ``Plone`` to not fetch unnecessary dependencies.
[thet]
1.0 (2016-10-15)
----------------
- Initial release.
[jensens]
If you want to learn more about writing documentation, please check out: http://docs.plone.org/about/documentation_styleguide.html
This text does not appear on pypi or github. It is a comment.
==============================================================================
plone.app.multilingualindexes
==============================================================================
.. image:: https://travis-ci.org/plone/plone.app.multilingualindexes.svg?branch=master
:target: https://travis-ci.org/plone/plone.app.multilingualindexes
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/python/black
.. image:: https://coveralls.io/repos/github/plone/plone.app.multilingualindexes/badge.svg?branch=master
:target: https://coveralls.io/github/plone/plone.app.multilingualindexes?branch=master
Indexes optimized to query multilingual content made with plone.app.multilingual.
Features
--------
``tgpath`` Index (Translation Group Path)
Utility and index to get the path of an item as UUIDs of its translationgroup.
``language_or_fallback`` Index
Index to query items and get one fallback if not available in the current language.
Fallbacks can be configured in control-panel and are stored in the registry.
Integration with ``Collections``
Both indexes are available in Collections and other places using ``plone.app.querystring`` under the hood.
Both indexes do only need activation.
``tgpath`` is available as a switch ``Language independent location``.
If this is selected, the normal path will be converted to a tgpath!
If no path is selected this switch has no effect.
.. figure:: https://raw.githubusercontent.com/plone/plone.app.multilingualindexes/master/docs/querystring_tgpath.png
:scale: 100 %
:alt: Querystring selection with Translationgroup path
``language_or_fallback`` is available as ``Fallback languages``.
If a path is selected together with this option, the path will be converted to a ``tgpath``.
If the ``tgpath`` or ``language_or_fallback`` is used in a Collection, the ``path`` will be set to the portal.
Thus the usal automatically added fixation to the current ``INavigationRoot`` wont be set,
because language root folders are navigation roots.
.. figure:: https://raw.githubusercontent.com/plone/plone.app.multilingualindexes/master/docs/querystring_fallback.png
:scale: 100 %
:alt: Querystring selection with Language fallback and (optional) location.
Behind the scenes
-----------------
Fallback Index
It is in fact a simple FieldIndex.
Fallback detection happens on index time.
On query time it has the same functionality and performance as the normal Language index.
.. figure:: https://raw.githubusercontent.com/plone/plone.app.multilingualindexes/master/docs/querystring_fallback.png
:scale: 100 %
:alt: Browse the index to get a feeling what fallbacks are in there.
Translation Group Index
It is in fact a normal ExtendendPathIndex.
Just the path it indexes consists out of the translation group uids.
If an item is not translatable and thus is not part of an translationgroup,
then its normal id is taken as patyh element.
Path example: ``/Plone/f5843e426b5d47cdb44af587b322f7ea/320b1ffbf0f64603803043d48bd57516``.
In order to query the index, you need to use the translationgroup path instead of the id path::
from plone.app.multilingualindexes.tgpath import tg_path
import plone.api
plone.api.content.find(
tgpath='/'.join(tg_path(context)),
language_or_fallback=plone.api.portal.get_current_language()
)
Installation
------------
Install plone.app.multilingualindexes by adding it to your buildout::
[buildout]
...
eggs =
plone.app.multilingualindexes
and then running ``bin/buildout``
Contribute
----------
- Issue Tracker: https://github.com/plone/plone.app.multilingualindexes/issues
- Source Code: https://github.com/plone/plone.app.multilingualindexes
License
-------
The project is licensed under the GPLv2.
Contributors
============
- Jens W. Klein, jk@kleinundpartner.at
- Peter Holzer, peter.holzer@agitator.com
- Patrick Gerken, gerken@patrick-gerken.de
- Georg "Gogo" Bernhard
Changelog
=========
2.1 (2020-08-04)
----------------
- Patch that allows for using multiple paths, fixing issue https://github.com/plone/plone.app.multilingualindexes/issues/9
[gogobd]
- User PATH_INDICES as suggested by jensens
[gogobd]
2.0 (2019-07-12)
----------------
- Patch CMFCore because of https://github.com/zopefoundation/Products.CMFCore/issues/79
[jensens]
- Fix bugs on rename/move/delete (wrong fallbacks)
[jensens]
- Drop support of Plone 5.1
[jensens]
- Python 3 compatibility
[jensens]
- Refactor index to be less complex on indexing.
[jensens]
- Bugfix: Use latest plone.app.multilingual and add subscribers to ensure in-/rein-/unindexing.
[jensens]
- Fixing "RuntimeError: the bucket being iterated changed size" (issue #3)
[gogobd]
- Depend on ``Products.CMFPlone`` instead of ``Plone`` to not fetch unnecessary dependencies.
[thet]
1.0 (2016-10-15)
----------------
- Initial release.
[jensens]
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for plone.app.multilingualindexes-2.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bda51498fbc94edc3193d11f13157d25e73606a70213b223b09686771054ea33 |
|
MD5 | 99d97d4f73fcb245ddc8e47f47163350 |
|
BLAKE2b-256 | 39914765593ed3dca98ba299a9e83de96a960a4ced81495b0c5de45ff6190358 |
Close
Hashes for plone.app.multilingualindexes-2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6f6ebc063f30953f53a405d730fa0dea7f4389e931f0d7461f34f17b70f60b7 |
|
MD5 | 2369c6a1e5fb0e725172ca96d5cb772f |
|
BLAKE2b-256 | db882e28070cb9bed4ed92f3f08bcdf25d22a84ef3b17dff9b8f58695b0db0e0 |