rer.solrpush


Namerer.solrpush JSON
Version 1.4.0 PyPI version JSON
download
home_pagehttps://github.com/collective/rer.solrpush
SummaryProdotto per Regione Emilia-Romagna relativo all'indicizzazione dei contenuti con solr
upload_time2024-05-05 06:25:47
maintainerNone
docs_urlNone
authorRedTurtle
requires_python>=3.7
licenseGPL version 2
keywords python plone
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ============
rer.solrpush
============

.. image:: https://github.com/RegioneER/rer.solrpush/workflows/Tests/badge.svg

Product that allows SOLR indexing/searching of a Plone website.

SOLR schema configuration
=========================

This product works with some assumptions and SOLR schema need to have some particular configuration.

You can see an example in config folder of this product.

By default we mapped all base Plone indexes/metadata into SOLR, plus some additional fields::

    <field name="searchwords" type="string" indexed="true" stored="true" required="false" multiValued="true" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="showinsearch" type="boolean" indexed="true" stored="false" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="url" type="string" indexed="false" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="site_name" type="string" indexed="true" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="path_depth" type="pint" indexed="false" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="path_parents" type="string" indexed="true" stored="true" multiValued="true"/>
    <field name="view_name" type="string" indexed="true" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="@id" type="string" indexed="false" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="@type" type="string" indexed="false" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>
    <field name="title" type="text_it" indexed="false" stored="true" required="false" multiValued="false" termVectors="false" termPositions="false" termOffsets="false"/>

- `searchwords`, `view_name`, `path_parents`, `path_depth`, `site_name` are needed for query filter and boost (see below)
- `showinsearch` is needed to allow/disallow single content indexing
- `url` is an index where we store frontend url
- `@id`, `@type` and `title` are needed for plone.restapi-like responses

plone.restapi related metadata are not indexed from Plone, but they are copied in SOLR::

    <copyField source="Title" dest="title"/>
    <copyField source="portal_type" dest="@type"/>
    <copyField source="url" dest="@id"/>


Control Panel
=============

- Active: flag to enable/disable SOLR integration
- Solr URL: SOLR core url
- Portal types to index in SOLR
- Public frontend url


Hidden registry fields
----------------------

There are some "service" registry fields hidden to disallow users to edit them.

- ready: a flag that specifies if the product is ready/initialized.
  It basically indicates that schema.xml has been loaded.
- index_fields: is the list of SOLR fields loaded from schema.xml file.


schema.xml load
---------------

SOLR fields are directly read from `schema.xml` file exposed by SOLR.

This schema is stored in Plone registry for performance reasons
and is always synced when you save `solr-controlpanel` form
or click on `Reload schema.xml` button.

File indexing
-------------

If Tika is configured on SOLR, you can send attachments to it and they will be indexed as SearchableText in the content.

To allow attachments indexing, you need to register an adapter for each content-type that you need to index.

`File` content-type is already registered, so you can copy from that::

    <adapter
      for="plone.app.contenttypes.interfaces.IFile"
      provides="rer.solrpush.interfaces.adapter.IExtractFileFromTika"
      factory=".file.FileExtractor"
      />

::

    from rer.solrpush.interfaces.adapter import IExtractFileFromTika
    from zope.interface import implementer


    @implementer(IExtractFileFromTika)
    class FileExtractor(object):
        def __init__(self, context):
            self.context = context

        def get_file_to_index(self):
            """
            """
            here you need to return the file that need to be indexed

N.B.: `SearchableText` index should be **multivalued**.


Search configuration
--------------------

In solr controlpanel (*/@@solrpush-settings*) there are some field that allows admins to setup some query parameters.

'qf' specifies a list of fields, each of which is assigned a boost factor to increase
or decrease that particular field’s relevance in the query.

For example if you want to give more relevance to results that contains searched
text into their title than in the text, you could set something like this::

    title^1000.0 SearchableText^1.0 description^500.0

You can also elevate by *searchwords*.

`bq` specifies an additional, optional, query clause that will be added to the user’s main query to influence the score.
For example if we want to boost results that have a specific `searchwords` term::

    searchwords:something^1000
  
Solr will improve ranking for results that have "*something*" in their searchwords field.

`bf` specifies functions (with optional boosts) that will be used to construct FunctionQueries
which will be added to the user’s main query as optional clauses that will influence the score.
Any `function supported natively <https://lucene.apache.org/solr/guide/6_6/function-queries.html>`_ by Solr can be used, along with a boost value.
For example if we want to give less relevance to items deeper in the tree we can set something like this::

    recip(path_depth,10,100,1)

*path_depth* is an index that counts tree level of an object.

Collections
===========

There are two new Collection's criteria that allows to search on SOLR also in Collections:

- *Search with SOLR*: if checked, searches will be redirected to SOLR (the default is always on local Plone Site).
- *Sites*: a list of indexes plone sites on SOLR. The user can select on which sites perform the query.
  If no sites are set (or this criteria not selected), the default search will be made only in the current site.

There is also a customized querybuilder that perform queries to SOLR or to Plone catalog.

Results from SOLR are wrapped into some brain-like objects to be fully compatible with Collection views.


Development buildout
====================

In the buildout there is a solr configuration (in `conf` folder) and a recipe that builds a solr instance locally.

To use it, simply run::

    > ./bin/solr-foreground


Installation
============

Add rer.solrpush to buildout::

    [buildout]

    ...

    eggs =
        rer.solrpush


and run ``bin/buildout`` command.


Contribute
==========

- Issue Tracker: https://github.com/RegioneER/rer.solrpush/issues
- Source Code: https://github.com/RegioneER/rer.solrpush

Compatibility
=============

This product has been tested on Plone 5.1 and 5.2


Credits
=======

Developed with the support of `Regione Emilia Romagna`__;

Regione Emilia Romagna supports the `PloneGov initiative`__.

__ http://www.regione.emilia-romagna.it/
__ http://www.plonegov.it/

Authors
=======

This product was developed by RedTurtle Technology team.

.. image:: http://www.redturtle.net/redturtle_banner.png
   :alt: RedTurtle Technology Site
   :target: http://www.redturtle.net/


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

- RedTurtle, sviluppoplone@redturtle.it


Changelog
=========


1.4.0 (2024-05-05)
------------------

- Plone6 compatibility.
  [cekk]


1.3.3 (2023-11-08)
------------------

- Fix RSS Feed.
  [cekk]

1.3.2 (2023-11-08)
------------------

- Update translation for content_remove_error.
  [cekk]

1.3.1 (2023-08-01)
------------------

- Update translation.
  [cekk]


1.3.0 (2022-09-29)
------------------

- Add ``search_enabled`` flag to temporary disable search on SOLR.
  [cekk]


1.2.0 (2022-01-20)
------------------

- Custom scales view to get images from remote contents (to handle also direction).
  [cekk]


1.1.0 (2021-12-22)
------------------

- Add indexers for path infos.
  [cekk]


1.0.0 (2021-12-20)
------------------

- Fix elevate logic.
  [cekk]
- Add invariant validation for elevate.
  [cekk]


0.8.0 (2021-11-18)
------------------

- SolrBrains now can return img tags if the original content has an image.
  [cekk]


0.7.1 (2021-10-14)
------------------

- Removed unused view.
  [cekk]

0.7.0 (2021-10-14)
------------------

- Add new criteria: solr_portal_types to select a list of portal_types indexed on SOLR.
  [cekk]
- Add link to Elevate control panel also in user actions.
  [cekk]
- Fix remote elevate conditions.
  [cekk]

0.6.4 (2021-09-27)
------------------

- Fix how querybuilder create queries.
  [cekk]


0.6.3 (2021-09-21)
------------------

- Add new feature: if "Query debug" flag is enabled in settings, the SOLR query will be shown to managers.
  [cekk]
- In example schema.xml files (dev and test), set "searchwords" as **lowercase** type, to be case insensitive.
  [cekk]
- Disable facet.limit default value (100) to get all facets.
  [cekk]
- Use swallow_duplicates in Keywords vocabulary to avoid duplicated tokens by truncated strings by SimpleTerm init.
  [cekk]

0.6.2 (2021-07-15)
------------------

- Do not escape queries in querybuilder because solr_search already manage them.
  [cekk]


0.6.1 (2021-06-10)
------------------

- [fix] now sort_on is not ignored on querybuilder customization.
  [cekk]
- [fix] remove / from frontend_url when not needed in indexing.
  [cekk]


0.6.0 (2021-05-20)
------------------

- Add criteria for search by Subject stored in SOLR.
  [cekk]
- Now solr brains also return right content-type icon.
  [cekk]  

0.5.1 (2021-04-29)
------------------

- Fix release.
  [cekk]


0.5.0 (2021-04-20)
------------------

- Handle all possible exceptions on search call.
  [cekk]
- Fix encodings (again) for attachement in POST calls.
  [cekk]
- Handle multilanguage paths in querybuilder for collections (use navigation root path instead portal path).
  [cekk]

0.4.1 (2021-03-26)
------------------

- Fix encodings for attachement in POST calls.
  [cekk]


0.4.0 (2021-03-25)
------------------

- Handle encodings for attachement POST calls.
  [cekk]


0.3.4 (2021-03-18)
------------------

- Fix logs.
  [cekk]


0.3.3 (2021-03-15)
------------------

- Make immediate commits optional from control panel.
  [cekk]


0.3.2 (2021-02-15)
------------------

- Handle simple datetmie dates.
  [cekk]


0.3.1 (2021-02-11)
------------------

- Fix tika indexing parameters: now modified and created dates are correctly indexed.
  [cekk]


0.3.0 (2021-02-09)
------------------

- Refactor elevate control panel and use collective.z3cform.jsonwidget.
  [cekk]
- Some improvements in indexing.
  [cekk]


0.2.4 (2021-01-28)
------------------

- Fix logic in maintenance view.
  [cekk]


0.2.3 (2021-01-27)
------------------

- Fix maintenance sync view.
  [cekk]

0.2.2 (2020-12-14)
------------------

- Fix encoding problems in `escape_special_characters` method for python2.
  [cekk]
- Remove collective.z3cform.datagrifield dependency and temporary disable elevate control panel.
  [cekk]

0.2.1 (2020-12-03)
------------------

- Fix date indexes in query when they already are in "solr syntax".
  [cekk]


0.2.0 (2020-12-03)
------------------

- Add styles for elevate widget
  [nzambello]
- Refactor indexer logic.
  [mamico]
- Add support for *bq* and *qf* in search.
  [mamico]
- Index files with tika.
  [cekk]
- Add support for collections.
  [cekk]
- Mute noisy solr logs in maintenance.
  [cekk]

0.1.2 (2019-12-12)
------------------

- Remove noisy logger for queries.
  [cekk]


0.1.1 (2019-12-12)
------------------

- Add new index: path_depth
  [cekk]
- Fix unicode errors when there is a site name with accents.
  [cekk]

0.1.0 (2019-12-05)
------------------

- Initial release.
  [cekk]

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/collective/rer.solrpush",
    "name": "rer.solrpush",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "Python Plone",
    "author": "RedTurtle",
    "author_email": "sviluppoplone@redturtle.it",
    "download_url": "https://files.pythonhosted.org/packages/2c/39/9f38b970c70bed03ea6d8a2f3673a050143715b3447afa8729b724e6a55b/rer.solrpush-1.4.0.tar.gz",
    "platform": null,
    "description": "============\nrer.solrpush\n============\n\n.. image:: https://github.com/RegioneER/rer.solrpush/workflows/Tests/badge.svg\n\nProduct that allows SOLR indexing/searching of a Plone website.\n\nSOLR schema configuration\n=========================\n\nThis product works with some assumptions and SOLR schema need to have some particular configuration.\n\nYou can see an example in config folder of this product.\n\nBy default we mapped all base Plone indexes/metadata into SOLR, plus some additional fields::\n\n    <field name=\"searchwords\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"false\" multiValued=\"true\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"showinsearch\" type=\"boolean\" indexed=\"true\" stored=\"false\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"url\" type=\"string\" indexed=\"false\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"site_name\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"path_depth\" type=\"pint\" indexed=\"false\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"path_parents\" type=\"string\" indexed=\"true\" stored=\"true\" multiValued=\"true\"/>\n    <field name=\"view_name\" type=\"string\" indexed=\"true\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"@id\" type=\"string\" indexed=\"false\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"@type\" type=\"string\" indexed=\"false\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n    <field name=\"title\" type=\"text_it\" indexed=\"false\" stored=\"true\" required=\"false\" multiValued=\"false\" termVectors=\"false\" termPositions=\"false\" termOffsets=\"false\"/>\n\n- `searchwords`, `view_name`, `path_parents`, `path_depth`, `site_name` are needed for query filter and boost (see below)\n- `showinsearch` is needed to allow/disallow single content indexing\n- `url` is an index where we store frontend url\n- `@id`, `@type` and `title` are needed for plone.restapi-like responses\n\nplone.restapi related metadata are not indexed from Plone, but they are copied in SOLR::\n\n    <copyField source=\"Title\" dest=\"title\"/>\n    <copyField source=\"portal_type\" dest=\"@type\"/>\n    <copyField source=\"url\" dest=\"@id\"/>\n\n\nControl Panel\n=============\n\n- Active: flag to enable/disable SOLR integration\n- Solr URL: SOLR core url\n- Portal types to index in SOLR\n- Public frontend url\n\n\nHidden registry fields\n----------------------\n\nThere are some \"service\" registry fields hidden to disallow users to edit them.\n\n- ready: a flag that specifies if the product is ready/initialized.\n  It basically indicates that schema.xml has been loaded.\n- index_fields: is the list of SOLR fields loaded from schema.xml file.\n\n\nschema.xml load\n---------------\n\nSOLR fields are directly read from `schema.xml` file exposed by SOLR.\n\nThis schema is stored in Plone registry for performance reasons\nand is always synced when you save `solr-controlpanel` form\nor click on `Reload schema.xml` button.\n\nFile indexing\n-------------\n\nIf Tika is configured on SOLR, you can send attachments to it and they will be indexed as SearchableText in the content.\n\nTo allow attachments indexing, you need to register an adapter for each content-type that you need to index.\n\n`File` content-type is already registered, so you can copy from that::\n\n    <adapter\n      for=\"plone.app.contenttypes.interfaces.IFile\"\n      provides=\"rer.solrpush.interfaces.adapter.IExtractFileFromTika\"\n      factory=\".file.FileExtractor\"\n      />\n\n::\n\n    from rer.solrpush.interfaces.adapter import IExtractFileFromTika\n    from zope.interface import implementer\n\n\n    @implementer(IExtractFileFromTika)\n    class FileExtractor(object):\n        def __init__(self, context):\n            self.context = context\n\n        def get_file_to_index(self):\n            \"\"\"\n            \"\"\"\n            here you need to return the file that need to be indexed\n\nN.B.: `SearchableText` index should be **multivalued**.\n\n\nSearch configuration\n--------------------\n\nIn solr controlpanel (*/@@solrpush-settings*) there are some field that allows admins to setup some query parameters.\n\n'qf' specifies a list of fields, each of which is assigned a boost factor to increase\nor decrease that particular field\u2019s relevance in the query.\n\nFor example if you want to give more relevance to results that contains searched\ntext into their title than in the text, you could set something like this::\n\n    title^1000.0 SearchableText^1.0 description^500.0\n\nYou can also elevate by *searchwords*.\n\n`bq` specifies an additional, optional, query clause that will be added to the user\u2019s main query to influence the score.\nFor example if we want to boost results that have a specific `searchwords` term::\n\n    searchwords:something^1000\n  \nSolr will improve ranking for results that have \"*something*\" in their searchwords field.\n\n`bf` specifies functions (with optional boosts) that will be used to construct FunctionQueries\nwhich will be added to the user\u2019s main query as optional clauses that will influence the score.\nAny `function supported natively <https://lucene.apache.org/solr/guide/6_6/function-queries.html>`_ by Solr can be used, along with a boost value.\nFor example if we want to give less relevance to items deeper in the tree we can set something like this::\n\n    recip(path_depth,10,100,1)\n\n*path_depth* is an index that counts tree level of an object.\n\nCollections\n===========\n\nThere are two new Collection's criteria that allows to search on SOLR also in Collections:\n\n- *Search with SOLR*: if checked, searches will be redirected to SOLR (the default is always on local Plone Site).\n- *Sites*: a list of indexes plone sites on SOLR. The user can select on which sites perform the query.\n  If no sites are set (or this criteria not selected), the default search will be made only in the current site.\n\nThere is also a customized querybuilder that perform queries to SOLR or to Plone catalog.\n\nResults from SOLR are wrapped into some brain-like objects to be fully compatible with Collection views.\n\n\nDevelopment buildout\n====================\n\nIn the buildout there is a solr configuration (in `conf` folder) and a recipe that builds a solr instance locally.\n\nTo use it, simply run::\n\n    > ./bin/solr-foreground\n\n\nInstallation\n============\n\nAdd rer.solrpush to buildout::\n\n    [buildout]\n\n    ...\n\n    eggs =\n        rer.solrpush\n\n\nand run ``bin/buildout`` command.\n\n\nContribute\n==========\n\n- Issue Tracker: https://github.com/RegioneER/rer.solrpush/issues\n- Source Code: https://github.com/RegioneER/rer.solrpush\n\nCompatibility\n=============\n\nThis product has been tested on Plone 5.1 and 5.2\n\n\nCredits\n=======\n\nDeveloped with the support of `Regione Emilia Romagna`__;\n\nRegione Emilia Romagna supports the `PloneGov initiative`__.\n\n__ http://www.regione.emilia-romagna.it/\n__ http://www.plonegov.it/\n\nAuthors\n=======\n\nThis product was developed by RedTurtle Technology team.\n\n.. image:: http://www.redturtle.net/redturtle_banner.png\n   :alt: RedTurtle Technology Site\n   :target: http://www.redturtle.net/\n\n\nContributors\n============\n\n- RedTurtle, sviluppoplone@redturtle.it\n\n\nChangelog\n=========\n\n\n1.4.0 (2024-05-05)\n------------------\n\n- Plone6 compatibility.\n  [cekk]\n\n\n1.3.3 (2023-11-08)\n------------------\n\n- Fix RSS Feed.\n  [cekk]\n\n1.3.2 (2023-11-08)\n------------------\n\n- Update translation for content_remove_error.\n  [cekk]\n\n1.3.1 (2023-08-01)\n------------------\n\n- Update translation.\n  [cekk]\n\n\n1.3.0 (2022-09-29)\n------------------\n\n- Add ``search_enabled`` flag to temporary disable search on SOLR.\n  [cekk]\n\n\n1.2.0 (2022-01-20)\n------------------\n\n- Custom scales view to get images from remote contents (to handle also direction).\n  [cekk]\n\n\n1.1.0 (2021-12-22)\n------------------\n\n- Add indexers for path infos.\n  [cekk]\n\n\n1.0.0 (2021-12-20)\n------------------\n\n- Fix elevate logic.\n  [cekk]\n- Add invariant validation for elevate.\n  [cekk]\n\n\n0.8.0 (2021-11-18)\n------------------\n\n- SolrBrains now can return img tags if the original content has an image.\n  [cekk]\n\n\n0.7.1 (2021-10-14)\n------------------\n\n- Removed unused view.\n  [cekk]\n\n0.7.0 (2021-10-14)\n------------------\n\n- Add new criteria: solr_portal_types to select a list of portal_types indexed on SOLR.\n  [cekk]\n- Add link to Elevate control panel also in user actions.\n  [cekk]\n- Fix remote elevate conditions.\n  [cekk]\n\n0.6.4 (2021-09-27)\n------------------\n\n- Fix how querybuilder create queries.\n  [cekk]\n\n\n0.6.3 (2021-09-21)\n------------------\n\n- Add new feature: if \"Query debug\" flag is enabled in settings, the SOLR query will be shown to managers.\n  [cekk]\n- In example schema.xml files (dev and test), set \"searchwords\" as **lowercase** type, to be case insensitive.\n  [cekk]\n- Disable facet.limit default value (100) to get all facets.\n  [cekk]\n- Use swallow_duplicates in Keywords vocabulary to avoid duplicated tokens by truncated strings by SimpleTerm init.\n  [cekk]\n\n0.6.2 (2021-07-15)\n------------------\n\n- Do not escape queries in querybuilder because solr_search already manage them.\n  [cekk]\n\n\n0.6.1 (2021-06-10)\n------------------\n\n- [fix] now sort_on is not ignored on querybuilder customization.\n  [cekk]\n- [fix] remove / from frontend_url when not needed in indexing.\n  [cekk]\n\n\n0.6.0 (2021-05-20)\n------------------\n\n- Add criteria for search by Subject stored in SOLR.\n  [cekk]\n- Now solr brains also return right content-type icon.\n  [cekk]  \n\n0.5.1 (2021-04-29)\n------------------\n\n- Fix release.\n  [cekk]\n\n\n0.5.0 (2021-04-20)\n------------------\n\n- Handle all possible exceptions on search call.\n  [cekk]\n- Fix encodings (again) for attachement in POST calls.\n  [cekk]\n- Handle multilanguage paths in querybuilder for collections (use navigation root path instead portal path).\n  [cekk]\n\n0.4.1 (2021-03-26)\n------------------\n\n- Fix encodings for attachement in POST calls.\n  [cekk]\n\n\n0.4.0 (2021-03-25)\n------------------\n\n- Handle encodings for attachement POST calls.\n  [cekk]\n\n\n0.3.4 (2021-03-18)\n------------------\n\n- Fix logs.\n  [cekk]\n\n\n0.3.3 (2021-03-15)\n------------------\n\n- Make immediate commits optional from control panel.\n  [cekk]\n\n\n0.3.2 (2021-02-15)\n------------------\n\n- Handle simple datetmie dates.\n  [cekk]\n\n\n0.3.1 (2021-02-11)\n------------------\n\n- Fix tika indexing parameters: now modified and created dates are correctly indexed.\n  [cekk]\n\n\n0.3.0 (2021-02-09)\n------------------\n\n- Refactor elevate control panel and use collective.z3cform.jsonwidget.\n  [cekk]\n- Some improvements in indexing.\n  [cekk]\n\n\n0.2.4 (2021-01-28)\n------------------\n\n- Fix logic in maintenance view.\n  [cekk]\n\n\n0.2.3 (2021-01-27)\n------------------\n\n- Fix maintenance sync view.\n  [cekk]\n\n0.2.2 (2020-12-14)\n------------------\n\n- Fix encoding problems in `escape_special_characters` method for python2.\n  [cekk]\n- Remove collective.z3cform.datagrifield dependency and temporary disable elevate control panel.\n  [cekk]\n\n0.2.1 (2020-12-03)\n------------------\n\n- Fix date indexes in query when they already are in \"solr syntax\".\n  [cekk]\n\n\n0.2.0 (2020-12-03)\n------------------\n\n- Add styles for elevate widget\n  [nzambello]\n- Refactor indexer logic.\n  [mamico]\n- Add support for *bq* and *qf* in search.\n  [mamico]\n- Index files with tika.\n  [cekk]\n- Add support for collections.\n  [cekk]\n- Mute noisy solr logs in maintenance.\n  [cekk]\n\n0.1.2 (2019-12-12)\n------------------\n\n- Remove noisy logger for queries.\n  [cekk]\n\n\n0.1.1 (2019-12-12)\n------------------\n\n- Add new index: path_depth\n  [cekk]\n- Fix unicode errors when there is a site name with accents.\n  [cekk]\n\n0.1.0 (2019-12-05)\n------------------\n\n- Initial release.\n  [cekk]\n",
    "bugtrack_url": null,
    "license": "GPL version 2",
    "summary": "Prodotto per Regione Emilia-Romagna relativo all'indicizzazione dei contenuti con solr",
    "version": "1.4.0",
    "project_urls": {
        "Homepage": "https://github.com/collective/rer.solrpush",
        "PyPI": "https://pypi.python.org/pypi/rer.solrpush",
        "Source": "https://github.com/collective/rer.solrpush",
        "Tracker": "https://github.com/collective/rer.solrpush/issues"
    },
    "split_keywords": [
        "python",
        "plone"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffdf01ac7adf5e6ea3d696f29d2b57d754f03f5e7f8057aa75dc84a0fd403842",
                "md5": "0d5b85aec4526e199951b1db171f0c82",
                "sha256": "4882144e8543d1d21ff989e401eb02b8c38364ce813db57b2ca620a62f53e0e2"
            },
            "downloads": -1,
            "filename": "rer.solrpush-1.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0d5b85aec4526e199951b1db171f0c82",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 1002680,
            "upload_time": "2024-05-05T06:25:44",
            "upload_time_iso_8601": "2024-05-05T06:25:44.503968Z",
            "url": "https://files.pythonhosted.org/packages/ff/df/01ac7adf5e6ea3d696f29d2b57d754f03f5e7f8057aa75dc84a0fd403842/rer.solrpush-1.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c399f38b970c70bed03ea6d8a2f3673a050143715b3447afa8729b724e6a55b",
                "md5": "7b4b3630991bf3cf356740bc27d2c3f2",
                "sha256": "271b8d64f0d17267970add0e3b85a0e79793b0a4e24e60bc02d92eb41cdf2978"
            },
            "downloads": -1,
            "filename": "rer.solrpush-1.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7b4b3630991bf3cf356740bc27d2c3f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 1187494,
            "upload_time": "2024-05-05T06:25:47",
            "upload_time_iso_8601": "2024-05-05T06:25:47.431335Z",
            "url": "https://files.pythonhosted.org/packages/2c/39/9f38b970c70bed03ea6d8a2f3673a050143715b3447afa8729b724e6a55b/rer.solrpush-1.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-05 06:25:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "collective",
    "github_project": "rer.solrpush",
    "github_not_found": true,
    "lcname": "rer.solrpush"
}
        
Elapsed time: 0.34047s