{
"info": {
"author": "Kai Lautaportti",
"author_email": "kai.lautaportti@hexagonit.fi",
"bugtrack_url": null,
"classifiers": [
"Framework :: Buildout",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Topic :: Software Development :: Build Tools"
],
"description": "**************************************\nRecipe for configuring a Solr instance\n**************************************\n\n.. contents::\n\nThe recipe configures an instance of the Solr_ indexing server. Solr\nis an open source enterprise search server based on the Lucene_ Java\nsearch library, with XML/HTTP and JSON APIs, hit highlighting, faceted\nsearch, caching, replication, and a web administration interface\n\nGit Repository and issue tracker:\nhttps://github.com/collective/collective.recipe.solrinstance\n\n.. |travisci| image:: https://travis-ci.org/collective/collective.recipe.solrinstance.png\n.. _travisci: https://travis-ci.org/collective/collective.recipe.solrinstance\n\n|travisci|_\n\n.. _Solr : http://lucene.apache.org/solr/\n.. _Lucene : http://lucene.apache.org/java/docs/index.html\n\n\nNotes\n=====\n\n- This version of the recipe supports Solr 3.5, 4.x (including 4.0, 4.1, 4.2\n and 4.5). Please use a release from the 2.x series if you are using Solr 1.4.\n\n- This version supports Genshi_ templates **only**. Please use a release\n less than 5.x if you require Cheetah_ templating and do not require\n Python 3 support. If you require Python 3 support, you must convert\n any custom templates to use the `Genshi text templating language`_.\n\n.. _Genshi : http://genshi.edgewall.org/\n.. _Cheetah: http://www.cheetahtemplate.org/\n.. _`Genshi text templating language` : http://genshi.edgewall.org/wiki/Documentation/text-templates.html\n\nSupported options\n*****************\n\nThe recipe supports the following options.\n\nSolr Server\n===========\n\nsolr-location\n Path to the location of the Solr installation. This should be\n the top-level installation directory.\n\nhost\n Name or IP address of the Solr server, e.g. some.server.com.\n Defaults to ``localhost``.\n\nport\n Server port. Defaults to ``8983``.\n\nbasepath\n Base path to the Solr service on the server. The final URL to the\n Solr service will be made of::\n\n $host:$port/$basepath\n\n to which the actual commands will be appended. Defaults to ``/solr``.\n\nvardir\n Optional override for the location of the directory where Solr\n stores its indexes and log files. Defaults to\n ``${buildout:directory}/var/solr``. This option and the ``script``\n option make it possible to create multiple Solr instances in a\n single buildout and dedicate one or more of the instances to\n automated functional testing.\n\nlogdir\n Optional override for the location of the Solr logfiles.\n Defaults to ``${buildout:directory}/var/solr``.\n\npidpath\n Optional override for the location of the Solr pid file.\n Defaults to ``${buildout:directory}/var/solr``.\n\njetty-template\n Optional override for the ``jetty.xml`` template. Defaults to\n ``templates/jetty.xml.tmpl``.\n\nlog4j-template\n Optional override for the ``log4j.properties`` template. Defaults to\n ``templates/log4j.properties.tmpl``.\n\nlogging-template\n Optional override for the ``logging.properties`` template. Defaults to\n ``templates/logging.properties.tmpl``.\n\njetty-destination\n Optional override for the directory where the ``jetty.xml`` file\n will be generated. Defaults to the Solr default location.\n\nextralibs\n Optional includes of custom Java libraries. The option takes\n a path and a regular expression per line separated by a colon.\n The regular expression is optional and defaults to ``.*\\.jar``\n (all jar-files in a directory). Example::\n\n extralibs =\n /my/global/java/path\n some/special/libs:.*\\.jarx\n\nscript\n Optional override for the name of the generated Solr instance\n control script. Defaults to ``solr-instance``. This option and the\n ``vardir`` option make it possible to create multiple Solr\n instances in a single buildout and dedicate one or more of the\n instances to automated functional testing.\n\njava_opts\n Optional. Parameters to pass to the Java Virtual Machine (JVM) used to\n run Solr. Each option is specified on a separated line.\n For example::\n\n [solr-instance]\n ...\n java_opts =\n -Xms512M\n -Xmx1024M\n ...\n\nSolr Configuration\n==================\n\nconfig-destination\n Optional override for the directory where the ``solrconfig.xml``\n file will be generated. Defaults to the Solr default location.\n\nconfig-template\n Optional override for the template used to generate the ``solrconfig.xml``\n file. Defaults to the template contained in the recipe, i.e.\n ``templates/solrconfig.xml.tmpl``.\n\nmax-num-results\n The maximum number of results the Solr server returns. This sets the\n ``rows`` option for the request handlers. Defaults to 500.\n\nmaxWarmingSearchers\n Maximum number of searchers that may be warming in the background.\n Defaults to ``4``. For read-only slaves recommend to set to ``1`` or ``2``.\n\nuseColdSearcher\n If a request comes in without a warm searcher available, immediately use\n one of the warming searchers to handle the request. Defaults to ``false``.\n\nmergeFactor\n Specify the index defaults merge factor. This value determines how many\n segments of equal size exist before being merged to a larger segment. With\n the default of ``10``, nine segments of 1000 documents will be created before\n they are merged into one containing 10000 documents, which in turn will be\n merged into one containing 100000 documents once that size is reached.\n\nramBufferSizeMB\n Sets the amount of RAM that may be used by Lucene indexing for buffering\n added documents and deletions before they are flushed to the directory.\n Defaults to 16mb.\n\nunlockOnStartup\n If ``true`` (the recipes default), unlock any held write or commit locks on\n startup. This defeats the locking mechanism that allows multiple processes to\n safely access a Lucene index.\n\nabortOnConfigurationError\n If set to ``true``, the Solr instance will not start up if there are\n configuration errors. This is useful in development environments to debug\n potential issues with schema and solrconfig. Defaults to ``false``.\n\nspellcheckField\n Configures the field used as a source for the spellcheck search component.\n Defaults to ``default``.\n\nautoCommitMaxDocs\n Lets you enable auto commit handling and force a commit after at least\n the number of documents were added. This is disabled by default.\n\nautoCommitMaxTime\n Lets you enable auto commit handling after a specified time in\n milliseconds. This is disabled by default.\n\nupdateLog\n if updateLog is enabled an additional field ``_version_`` will be added\n to schema and updateLog will be enabled in updateHandler. This is required\n if you want to use Atomic Updates in Solr > 4.0. See:\n https://wiki.apache.org/solr/Atomic_Updates, defaults to ``false``.\n\nrequestParsers-enableRemoteStreaming\n Let's you enable remote streaming. Defalts to ``false`` as this is the Solr\n default.\n\nrequestParsers-multipartUploadLimitInKB\n Optional ```` parameter useful if you are submitting\n very large documents to Solr. May be the case if Solr is indexing binaries\n extracted from request.\n\ndirectoryFactory\n Solr4 allows for different directoryFactories:\n solr.StandardDirectoryFactory, solr.MMapDirectoryFactory,\n solr.NIOFSDirectoryFactory, solr.SimpleFSDirectoryFactory,\n solr.RAMDirectoryFactory or solr.NRTCachingDirectoryFactory.\n The default is: solr.NRTCachingDirectoryFactory\n If you are running a solr-instance for unit-testing of an\n application it could be useful to use solr.RAMDirectoryFactory.\n\nadditional-solrconfig\n Optional additional configuration to be included inside the\n ``solrconfig.xml``. For instance, ```` directives.\n\nadditional-solrconfig-query\n Optional additional configuration to be included inside the\n query section of ``solrconfig.xml``.\n For instance, ```` directives.\n\n\nCache Options\n=============\n\nFine grained control of query caching as described at\nhttp://wiki.apache.org/solr/SolrCaching.\n\nThe supported options are:\n\n- ``filterCacheSize``\n- ``filterCacheInitialSize``\n- ``filterCacheAutowarmCount``\n- ``queryResultCacheSize``\n- ``queryResultCacheInitialSize``\n- ``queryResultCacheAutowarmCount``\n- ``documentCacheSize``\n- ``documentCacheInitialSize``\n- ``documentCacheAutowarmCount`` (only for Solr 4)\n\n\nSchema\n======\n\nschema-destination\n Optional override for the directory where the ``schema.xml`` file\n will be generated. Defaults to the Solr default location.\n\nschema-template\n Optional override for the template used to generate the ``schema.xml``\n file. Defaults to the template contained in the recipe, i.e.\n ``templates/schema.xml.tmpl``.\n\nstopwords-template\n Optional override for the template used to generate the ``stopwords.txt``\n file. Defaults to the template contained in the recipe, i.e.\n ``templates/stopwords.txt.tmpl``.\n\nextra-field-types\n Configure the extra field types available to be used in the\n ``index`` option. You can create custom field types with special\n analyzers and tokenizers, check Solr's complete reference:\n http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters\n\nextra-conf-files\n Add extra files to conf folder like synonyms.txt or hunspell files\n https://wiki.apache.org/solr/Hunspell\n\nfilter\n Configure filters for analyzers for the default field types.\n These accept tokens produced by a given ``tokenizer`` and process them\n in series to either add, change or remove tokens. After all filters\n have been applied, the resulting token stream is indexed into the given\n field.\n\n This option applies to the default analyzer for a given field -- by\n default, Solr considers this to apply to both ``query`` and ``index``\n analyzers. If you want to configure separate analyzers, see the\n ``filter-query`` and ``filter-index`` options below.\n\n Each filter is configured on a separated line and each filter will be\n applied to tokens (during Solr operation) in the order specified.\n\n Each line should read like::\n\n text solr.EdgeNGramFilterFactory minGramSize=\"2\" maxGramSize=\"15\" side=\"front\"\n\n In the above example:\n\n * ``text`` is the ``type``, one of the built-in field types;\n * ``solr.EdgeNGramFilterFactory`` is the ``class`` for this filter; and\n * ``minGramSize=\"2\" maxGramSize=\"15\" side=\"front\"`` are the parameters\n for the filter's configuration. They should be formatted as XML\n attributes.\n\n By default, for the default analyzer (being both ``query`` and ``index``):\n\n * ``text`` fields are filtered using:\n\n * ``solr.ICUFoldingFilterFactory``\n * ``solr.WordDelimiterFilterFactory``\n * ``solr.TrimFilterFactory``\n * ``solr.StopFilterFactory``\n\n To suppress default behaviour, configure the ``filter`` option accordingly.\n If you want no filters, then set ``filter =`` (as an empty option) in your\n Buildout configuration. This is useful in the situation where you want no\n default filters and want full control over specifying filters on a\n per-analyzer basis.\n\n Check the available filters in Solr's documentation:\n http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#TokenFilterFactories\n\nfilter-query\n Configure filters for default field types for ``query`` analyzers only.\n This option is like ``filter`` but only applies to the ``query`` analyzer\n for a given field.\n\n Configuration syntax is the same as the ``filter`` option above. Options\n specified here will be added after any that apply from usage of the main\n ``filter`` option.\n\nfilter-index\n Configure filters for default field types for ``index`` analyzers only.\n This option is like ``filter`` but only applies to the ``index`` analyzer\n for a given field.\n\n Configuration syntax is the same as the ``filter`` option above. Options\n specified here will be added after any that apply from usage of the main\n ``filter`` option.\n\nchar-filter\n Configure character filters (``CharFilterFactories``) for analyzers for the\n default field types. These are pre-processors for input characters\n in Solr fields or queries (consuming and producing a character stream) that\n can add, change or remove characters while preserving character position\n information\n\n This option applies to the default analyzer for a given field -- by\n default, Solr considers this to apply to both ``query`` and ``index``\n analyzers. If you want to configure separate analyzers, see the\n ``char-filter-query`` and ``char-filter-index`` options below.\n\n Each char filter is configured on a separated line, following the same\n configuration syntax as the ``filter`` option above. Each char filter will\n be applied to tokens (during Solr operation) in the order specified.\n\n By default, no char filters are specified for any analyzers.\n\n Information about available character filters is available in\n Solr's documentation: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#CharFilterFactories\n\nchar-filter-query\n Configure character filters for default field types for ``query`` analyzers\n only. This option is like ``char-filter`` but only applies to the\n ``query`` analyzer for a given field type.\n\n Configuration syntax is the same as the ``filter`` option above. Options\n specified here will be added after any that apply from usage of the main\n ``char filter`` option.\n\nchar-filter-index\n Configure character filters for default field types for ``index`` analyzers\n only. This option is like ``char-filter`` but only applies to the\n ``index`` analyzer for a given field type.\n\n Configuration syntax is the same as the ``filter`` option above. Options\n specified here will be added after any that apply from usage of the main\n ``char filter`` option.\n\ntokenizer\n Configure tokenizers for analyzers for the default field types.\n\n This option applies to the default analyzer for a given field -- by\n default, Solr considers this to apply to both ``query`` and ``index``\n analyzers. If you want to configure separate analyzers, see the\n ``tokenizer-query`` and ``tokenizer-index`` options below.\n\n Each tokenizer is configured on a separated line, following the same\n configuration syntax as the ``filter`` option above. Only one tokenizer\n may be specified per analyzer type for a given field type. If you specify\n multiple tokenizers for the same field type, the last one specified will\n take precedence.\n\n By default, for the default analyzer (being both ``query`` and ``index``):\n\n * ``text`` fields are tokenized using ``solr.ICUTokenizerFactory``\n * ``text_ws`` fields are tokenized using\n ``solr.WhitespaceTokenizerFactory``\n\ntokenizer-query\n Configure a tokenizer for default field types for ``query`` analyzers\n only. This option is like ``tokenizer``, but only applies to the\n ``query`` analyzer for a given field type.\n\n Configuration syntax is the same as the ``filter`` option above.\n Options specified here will overide any that apply from usage of the main\n ``tokenizer`` option. For instance, if you specified a ``text_ws``\n tokenizer within the ``tokenizer`` option, and re-specify another\n ``text_ws`` tokenizer here, then this will take precedence. Other field\n types will not be affected if not overriden.\n\ntokenizer-index\n Configure a tokenizer for default field types for ``index`` analyzers\n only. This option is like ``tokenizer``, but only applies to the\n ``index`` analyzer for a given field type.\n\n Configuration syntax is the same as the ``filter`` option above.\n Options specified here will overide any that apply from usage of the main\n ``tokenizer`` option. For instance, if you specified a ``text_ws``\n tokenizer within the ``tokenizer`` option, and re-specify another\n ``text_ws`` tokenizer here, then this will take precedence. Other field\n types will not be affected if not overriden.\n\nindex\n Configures the different types of index fields provided by the\n Solr instance. Each field is configured on a separated line. Each\n line contains a white-space separated list of ``[key]:[value]``\n pairs which define options associated with the index. Common\n field options are detailed at\n http://wiki.apache.org/solr/SchemaXml#Common_field_options and\n are illustrated in following examples.\n\n A special ``[key]:[value]`` pair is supported here for supporting `Copy\n Fields`; if you specify ``copyfield:dest_field``, then a ````\n declaration will be included in the schema that copies the given field into\n that of ``dest_field``.\n\nunique-key\n Optional override for declaring a field to be unique for all documents.\n See http://wiki.apache.org/solr/SchemaXml for more information\n Defaults to 'uid'.\n\ndefault-search-field\n Configure a default search field, which is used when no field was\n explicitly given. See http://wiki.apache.org/solr/SchemaXml.\n\ndefault-operator\n The default operator to use for queries. Valid values are ``AND``\n and ``OR``. Defaults to ``OR``.\n\nadditional-schema-config\n Optional additional configuration to be included inside the\n ``schema.xml``. For instance, custom ```` directives\n and anything else that's part of the schema configuration (see\n http://wiki.apache.org/solr/SchemaXml).\n\nadditionalFieldConfig\n Optional additional configuration which is placed inside the\n ``...`` directive in ``schema.xml``. Use this to insert\n dynamic fields. For example::\n\n additionalFieldConfig =\n \n\n Defaults to ``''`` (empty string).\n\nMulti-core\n==========\n\nThe following options only apply if ``collective.recipe.solrinstance:mc`` is\nspecified. They are optional if the normal recipe is being used.\nAll options defined in the solr-instance section will we inherited to cores.\nA core could override a previous defined option.\n\ncores\n A list of identifiers of Buildout configuration sections that correspond\n to individual Solr core configurations. Each identifier specified will\n have the section it relates to processed according to the given options\n above to generate Solr configuration files for each core. See `Multi-core\n Solr`_ for an example.\n\n Each identifier specified will result in a Solr ``instanceDir`` being\n created and entries for each core placed in Solr's ``solr.xml``\n configuration.\n\ndefault-core-name\n Optional. This option controls which core is set as the default for\n incoming requests that do not specify a core name. This corresponds to\n the ``defaultCoreName`` option described at\n http://wiki.apache.org/solr/CoreAdmin#cores.\n\nZope Integration\n================\n\nsection-name\n Name of the ``product-config`` section to be generated for ``zope.conf``.\n Defaults to ``solr``.\n\nzope-conf\n Optional override for the configuration snippet that is generated to\n be included in ``zope.conf`` by other recipes. Defaults to::\n\n \n address ${part:host}:${part:port}\n basepath ${part:basepath}\n \n\nExamples\n********\n\n\nSingle Solr\n===========\n\nA simple example how a single Solr configuration could look like this::\n\n [buildout]\n parts = solr-download\n solr\n\n [solr-download]\n recipe = hexagonit.recipe.download\n strip-top-level-dir = true\n url = http://mirrorservice.nomedia.no/apache.org//lucene/solr/3.5.0/apache-solr-3.5.0.zip\n\n [solr]\n recipe = collective.recipe.solrinstance\n solr-location = ${solr-download:location}\n host = 127.0.0.1\n port = 1234\n max-num-results = 500\n section-name = SOLR\n unique-key = uniqueID\n index =\n name:uniqueID type:string indexed:true stored:true required:true\n name:Foo type:text copyfield:Baz\n name:Bar type:date indexed:false stored:false required:true multivalued:true omitnorms:true copyfield:Baz\n name:Foo bar type:text\n name:Baz type:text\n name:Everything type:text\n filter =\n text solr.LowerCaseFilterFactory\n char-filter-index =\n text solr.HTMLStripCharFilterFactory\n tokenizer-query =\n text solr.WhitespaceTokenizerFactory\n additional-schema-config =\n \n\nMulti-core Solr\n===============\n\nTo configure Solr for multiple cores, you must use the\n``collective.recipe.solrinstance:mc`` recipe. An example of a multi-core Solr\nconfiguration could look like the following::\n\n [buildout]\n parts = solr-download\n solr-mc\n\n [solr-download]\n recipe = hexagonit.recipe.download\n strip-top-level-dir = true\n url = http://mirrorservice.nomedia.no/apache.org//lucene/solr/3.5.0/apache-solr-3.5.0.zip\n\n [solr-mc]\n recipe = collective.recipe.solrinstance:mc\n solr-location = ${solr-download:location}\n host = 127.0.0.1\n port = 1234\n section-name = SOLR\n directoryFactory = solr.NRTCachingDirectoryFactory\n cores = core1 core2\n\n [core1]\n max-num-results = 99\n unique-key = uniqueID\n index =\n name:uniqueID type:string indexed:true stored:true required:true\n name:Foo type:text copyfield:Baz\n name:Bar type:date indexed:false stored:false required:true multivalued:true omitnorms:true copyfield:Baz\n name:Foo bar type:text\n name:Baz type:text\n name:Everything type:text\n filter =\n text solr.LowerCaseFilterFactory\n char-filter-index =\n text solr.HTMLStripCharFilterFactory\n tokenizer-query =\n text solr.WhitespaceTokenizerFactory\n text solr.LowerCaseFilterFactory\n additional-schema-config =\n \n\n [core2]\n max-num-results = 66\n unique-key = uid\n index =\n name:uid type:string indexed:true stored:true required:true\n name:La type:text\n name:Le type:date indexed:false stored:false required:true multivalued:true omitnorms:true\n name:Lau type:text\n filter =\n text solr.LowerCaseFilterFactory\n char-filter-query =\n text solr.HTMLStripCharFilterFactory\n tokenizer-index =\n text solr.WhitespaceTokenizerFactory\n\n**************\nChange History\n**************\n\n5.3.3 (2016-05-10)\n==================\n\n- Added ``requestParsers-enableRemoteStreaming`` to allow configuring remote\n streaming [wengole]\n\n- Update request handler in ``solrconfig.xml`` to avoid deprecation warnings\n for SOLR 4. [mgrbyte]\n\n- Fix schema and stop words template location.\n [gforcada]\n\n5.3.2 (2014-08-27)\n==================\n\n- Remove dependency on ipdb.\n [saily]\n- Add option to enable ``updateLog`` for atomic update usage in SOLR 4.0.\n This will automatically add a new field ``_version_`` to your schema, see:\n http://wiki.apache.org/solr/SchemaXml#Fields\n [saily]\n- Encode strings written to templated files as UTF-8. This solves issue #29\n and allows Unicode characters to be present in templates.\n [davidjb]\n- Remove missing library directory from solrconfig.xml files being\n generated.\n [davidjb]\n- Fix solrconfig.xml for indexing binary files [giacomos]\n- Changed default for remote streaming in solr 4 templates back to false (the\n solr default) [wengole]\n\n\n5.3.1 (2013-12-17)\n==================\n\n- Added ``storeOffsetsWithPositions`` to get ``PostingsSolrHighlighter``\n working.\n [jod]\n\n\n5.3.0 (2013-12-16)\n==================\n\n- Minor fix added ``spellcheckField`` to wrodbreak in spellchecker.\n [jod]\n- Added ``extra-conf-files`` to schema generation. Now we can add extra files\n to conf folder.\n [jod]\n\n\n5.2.1 (2013-10-22)\n==================\n\n- Fix formatting for change log and PyPI display\n [davidjb]\n\n\n5.2 (2013-10-22)\n================\n\n- Ensure only one ``dataDir`` option is generated in ``solrconfig.xml``\n using the default template. Fixes start-up in Solr 4.5.0.\n [mitchellrj, pmcnr]\n\n5.1 (2013-09-04)\n================\n\n- Ensure that changing part of a ``core`` section will cause Solr configuration\n to be regenerated. Fixes #24.\n [davidjb]\n- ``logdir`` option is now available for ``logging.properties`` template.\n [pmcnr]\n- Fix testing for Python 3 and enable Python 3.3 testing for Travis.\n [davidjb]\n- Enable generation of ``log4j.properties`` from template (Solr >= 4.3 defaults\n to using log4j as its SLF4J implementation).\n [pmcnr]\n\n\n5.0.1 (2013-06-24)\n==================\n\n- Minor reST changes to readme and change log to fix long description.\n [davidjb]\n\n\n5.0 (2013-06-24)\n================\n\n- Recreate solr config on buildout update if the\n directory of the solr-instance was deleted.\n [mghh]\n\n- New option 'additionalFieldConfig'.\n This option allows for additional configuration options\n in ... section of schema.xml\n Use this if you have dynamicFields\n [mghh]\n\n- New option 'directoryFactory'.\n Use it to define the solr directoryFactory for a Solr instance.\n [mghh]\n\n- Allow Buildout to be re-run without breaking a running Solr instance.\n Previously, Solr required a restart to restore removed files.\n [Jc2k]\n\n- Remove ``apache-`` prefix from artifact filenames (jar files) to handle\n naming changes introduced with Solr 4.1. Versions earlier than 4.1 will\n see this prefix included within configuration files.\n [davidjb]\n\n- Ensure Solr 4 templates do not have two ``autoCommit`` directives, mirroring\n how Solr 3 templates operate.\n\n **Backwards incompatibility**: if relying on a default ``autoCommit``\n directive in Solr 4, you must configure the ``autoCommitMaxDocs`` and/or\n ``autoCommitMaxTime`` recipe options. A default is no longer provided.\n [davidjb]\n\n- Python 3 support added. Python < 2.6 support dropped. Dropped\n dependency on iw.recipe.template as Cheetah does not support Python\n 3. Replaced with Genshi, as used by collective.recipe.template.\n\n **Backwards incompatibility**: custom templates must be converted to\n Genshi format.\n [mitchellrj]\n\n4.0.1 (unreleased)\n==================\n\n- Added additional-solrconfig-query allowing one to extend the solrconfig.xml\n query section.\n [naro]\n- Add ability to specify location of pid file.\n [CheeseTheMonkey]\n\n\n4.0 (2013-02-15)\n================\n\n- Add ability to control ``filter``, ``char-filter`` and ``tokenizer`` options\n for different analyzers (eg ``query`` and ``index`` analyzers). These\n options are named like ``filter-query``.\n [davidjb]\n- Add ``tokenizer`` option for controlling the tokenizers set for default\n field type analyzers.\n [davidjb]\n- Solr 4.0 support\n [silviot]\n- Allow comments in index directive\n [silviot]\n- Allow ``cores`` to be separated by newlines rather than just spaces.\n [domruf]\n- Add ``char-filter`` as an option for setting CharFilterFactories for\n default field types.\n [davidjb]\n\n3.8 (2012-08-09)\n================\n\n- Support ``default-core-name`` for specifying the name of a core to\n use for incoming Solr requests that do not specify a core. See\n http://wiki.apache.org/solr/CoreAdmin#cores\n [reinhardt]\n- Add ability to add arbitrary configuration to ``schema.xml`` using\n ``additional-schema-config`` option.\n [davidjb]\n- Add documentation and tests for ``copyfield`` option for indexes to test\n and clarify that this option is available.\n [davidjb]\n\n3.7.1 (2012-02-28)\n==================\n\n- Fixed package missing files, without a MANIFEST.in we need setuptools-git.\n [jod]\n\n3.7 (2012-02-28)\n================\n\n- Fixed tests.\n [jod]\n\n- added option ``abortOnConfigurationError`` (makes config error diagnostics a lot\n easier).\n [gweis]\n\n- Add support for field options ``termVectors``, ``termPositions`` and\n ``termOffsets``.\n [gweis]\n\n- Use parts location to find additional jars.\n [gweis]\n\n- Copy dist and contrib folder for Multicore setup (just like for Singlecore).\n [gweis]\n\n- Diabled elevate.xml`, solar would fail to work if this is enabled.\n [gweis]\n\n3.6 (2011-12-07)\n================\n\n- Account for new schema validation in Solr 3.4 related to ``omitNorms`` field.\n [hannosch]\n\n- Update generated config files to match and require Solr 3.5.\n [hannosch]\n\n- Fix ``solr-instance purge`` to work with hosts/ports other than localhost:8983\n [csenger]\n\n- Added new ``extralibs`` option to include custom Java libraries\n\n3.5 (2011-07-10)\n================\n\n- Removed the ``cacheSize`` option in favor of 8 specific options to configure\n every aspect of the query caches on their own.\n [hannosch]\n\n- Added new ``spellcheckField`` option, to configure the source field for the\n spellcheck search component.\n [hannosch]\n\n- Removed the example ``tvrh``, ``terms`` and ``elevate`` request handlers.\n [hannosch]\n\n- Removed the example ``spell`` request handler and enabled spell checking based\n on the ``default`` field for the ``search`` request handler.\n [hannosch]\n\n- Clean up solrconfig template and remove an example ``firstSearcher`` query.\n [hannosch]\n\n- Added new ``mergeFactor``, ``ramBufferSizeMB``, ``unlockOnStartup`` options.\n [hannosch]\n\n3.4 (2011-07-09)\n================\n\n- Update generated config files to match and require Solr 3.3.\n [hannosch]\n\n- Add ``solr.WordDelimiterFilterFactory`` to the standard text field, to split on\n intra-word delimiters such as ``-_:``.\n [hannosch]\n\n3.3 (2011-06-25)\n================\n\n- Increase the ``requestParsers-multipartUploadLimitInKB`` default value from\n 2mb to 100mb to allow the ``update/extract`` handler to accept large files.\n [hannosch]\n\n- Increase Jetty's ``maxFormContentSize`` from 1mb to 100mb to allow indexing\n large files.\n [hannosch]\n\n- Changed the field definition of the ``text`` type to avoid filters specific to\n the English language and instead use a default filter config that should work\n with most languages, based on the ICU tokenizer and folding filter.\n [hannosch]\n\n- Load the ``analysis-extras`` libraries, so we can use the `ICU`-based filters\n and tokenizers.\n [hannosch]\n\n- Removed the clustering request handlers from the default config, as they\n didn't work anyways without us loading the ``contrib/clustering`` libraries.\n [hannosch]\n\n- Enable ``Tika`` data extraction and Solr Cell libraries. Data is extracted into\n a field called ``tika_content`` unless specified otherwise in each request via\n the ``fmap.content=`` argument. All extracted fields which aren't in the schema\n are put into dynamic fields prefixed with ``tika_``.\n [tom_gross, hannosch]\n\n- Removed the Velocity driven ``/browse`` request handler. The example config\n we generated didn't match the schema.\n [hannosch]\n\n3.2 (2011-06-23)\n================\n\n- Added a new option ``stopwords-template`` which allows you to specify a custom\n stopwords file.\n [hannosch]\n\n3.1 (2011-06-06)\n================\n\n- Updated templates to match default found in Solr 3.2.\n [hannosch]\n\n3.0 (2011-06-04)\n================\n\n- We no longer require elementtree.\n [hannosch]\n\n- Use the standard libraries doctest module.\n [hannosch]\n\n- Increase the ``max-num-results`` default value from 10 to 500 to avoid\n restricting search results on this low level. The application layer should\n be responsible for making such restrictions.\n [hannosch]\n\n3.0a2 (2011-05-26)\n==================\n\n- Added new ``logging-template`` option and instruct Jetty to use the\n ``logging.properties`` file. The default logging level is set to ``WARNING``.\n [hannosch]\n\n- Pass the ``host`` option to the Jetty config, so it can be configured to listen\n only on localhost or a specific IP.\n [hannosch]\n\n- Disabled Jetty request log.\n [hannosch]\n\n- Updated ``jetty.xml`` template to match new defaults found in the Solr 3.1\n release.\n [hannosch]\n\n- Fixed syntax error introduced around ``httpCaching`` directive.\n [hannosch]\n\n3.0a1 (2011-05-26)\n==================\n\n- Updated the solrconfig.xml template to match the template from Solr 3.1.\n [hannosch]\n\n- Updated the default ``schema.xml`` to the Solr 3.1 format. The schema version\n is now ``1.3`` instead of ``1.2``. The schema is no longer compatible with\n Solr 1.4. Please use a recipe version from the 2.x series for that.\n\n Changes to the schema include:\n\n * Fields no longer have a compressed option.\n\n * The default schema defines three new field types: ``point``, ``location`` and\n ``geohash`` useful for geospatial data.\n\n If you have an older Solr 1.4 index, you should be able to continue using it\n without a full reindex.\n [hannosch]\n\n2.1 (2011-04-12)\n================\n\n- Fixed reStructuredText.\n [jod]\n\n2.0 (2011-04-12)\n================\n\n- Added ``default`` to filter attributes.\n [jod]\n\n- Multicore recipe ``collective.recipe.solrinstance:mc``. [jod]\n\n * Refactured to get multicore working.\n\n * Pinned buildout version to get tests working.\n\n1.1 (2011-04-04)\n================\n\n- Make jetty.xml.tmpl honor the host parameter.\n [davidblewett]\n\n- Support for Windows\n [bluszcz]\n\n1.0 (2010-12-12)\n================\n\n- No changes.\n\n1.0b5 (2010-09-03)\n==================\n\n- Actually provide the default value for the ``cacheSize`` option.\n [hannosch]\n\n1.0b4 (2010-08-12)\n==================\n\n- Added ``jetty-template`` option.\n [ajung]\n\n1.0b3 (2010-07-23)\n==================\n\n- Don't kill solr after script finish when script is just used for starting\n solr as a daemon\n [do3cc]\n\n1.0b2 (2010-06-01)\n==================\n\n- Actually do something in the update call. Now the configuration is updated\n when you run buildout again.\n [fschulze]\n\n- Handle termination signal in the wrapper script, so the solr instance is\n killed when the wrapper dies.\n [fschulze]\n\n1.0b1 (2010-05-25)\n==================\n\n- Added new ``autoCommitMaxDocs`` and ``autoCommitMaxTime`` options.\n [hannnosch]\n\n- ``logdir`` option internal bugfix: buildout does not allow ``None`` options\n values (__setitem__).\n [anguenot]\n\n1.0a7 (2010-05-17)\n==================\n\n- Fixed syntax error in new logdir code.\n [ajung]\n\n1.0a6 (2010-05-17)\n==================\n\n- Added ``logdir`` option.\n [ajung]\n\n1.0a5 (2010-05-11)\n==================\n\n- Added more options: ``maxWarmingSearchers``, ``useColdSearcher`` and\n ``cacheSize``.\n [hannosch]\n\n1.0a4 (2010-05-05)\n==================\n\n- Added back JMX configuration. See http://wiki.apache.org/solr/SolrJmx for\n more details. You can enable it by adding ``-Dcom.sun.management.jmxremote``\n to the ``java_opts`` option.\n [hannosch]\n\n1.0a3 (2010-03-23)\n==================\n\n- Added back a field type called ``integer`` with the same properties as the\n ``int`` type. This ensures basic schemas created by ``collective.solr`` won't\n need any schema changes, though they still need a full reindex.\n [hannosch]\n\n1.0a2 (2010-03-22)\n==================\n\n- Fixed invalid reStructuredText format in the changelog.\n [hannosch]\n\n1.0a1 (2010-03-22)\n==================\n\n- Replaced the ``gettableFiles`` option in the admin section with the new\n ``*.admin.ShowFileRequestHandler`` approach. By default your entire\n ``SOLR_HOME/conf`` except for the ``scripts.conf`` is exposed.\n [hannosch]\n\n- Updated the default ``schema.xml`` to the Solr 1.4 format. The schema version\n is now ``1.2`` instead of ``1.1``. The schema is no longer compatible with\n Solr 1.3. Please use a recipe version from the 0.x series for that.\n\n Changes to the schema include:\n\n * The integer field is now called int.\n\n * New field type attribute ``omitTermFreqAndPositions`` introduced. This is\n true by default except for text fields.\n\n * New binary and random field types.\n\n * The int, float, long, double and date fields now use the ``solr.Trie*``\n classes. These are more efficient in general.\n\n * New tint, tfloat, tlong, tdouble and tdate fields. These are ``solr.Trie*``\n fields with a precisionStep configured. You can use them for fields that\n see a lot of range queries.\n\n * The old sint, slong, sfloat and sdouble fields are no longer configured.\n\n * The examples fields text_greek, textTight and alphaOnlySort are no longer\n configured by default.\n\n * The text field uses the SnowballPorterFilterFactory with a language of\n English instead of the EnglishPorterFilterFactory.\n\n * The ignored field is now multiValued.\n\n * No dynamic fields are configured by default.\n\n If you have an older Solr 1.3 configuration, you might need to adjust it to\n match some of the new defaults. You will also have to do a full reindex of\n Solr, if the type of any of the fields changed, like with int or date fields.\n [hannosch]\n\n- Simplify solrconfig.xml and unconfigure example handlers that rely on a\n specific schema. Other changes include:\n\n * Indexes are now flushed when the ramBufferSizeMB is exceeded, defaulting to\n 32mb instead of every 1000 documents. The maxBufferedDocs is deprecated.\n\n * The new reopenReaders option causes IndexReaders to be reopened instead of\n closed and then opened.\n\n * The filterCache uses the solr.FastLRUCache instead of the solr.LRUCache.\n\n * The queryResultWindowSize defaults to 30 instead of 10.\n\n * The requestHandler use the new solr.SearchHandler, which supports a\n defType argument to turn it into a dismax handler, instead of having two\n separate classes for the two handlers.\n\n There is a number of new handlers in Solr 1.4, which aren't enabled by\n default. Read the Solr documentation for the examples.\n [hannosch]\n\n- Updated jetty.xml and solrconfig.xml to Solr 1.4 defaults. The\n ``*.jetty.Request.maxFormContentSize`` has been set to allow post request of\n 1mb by default.\n [hannosch]\n\n- Made the tests pass again, by installing more packages into the test buildout\n environment.\n [hannosch]\n\n0.4 (2010-02-18)\n================\n\n- Some package metadata cleanup.\n [hannosch]\n\n- Added optional java_opts parameter to pass to the Java Virtual\n Machine (JVM) used to run Solr.\n [anguenot]\n\n- Fixed to create the ``solr.log`` file inside the ``log`` folder.\n [deo]\n\n- Made sure to display the invalid index attribute name when raising\n the related error.\n [deo]\n\n- Added support for defining custom field types.\n [deo]\n\n- Added a ``restart`` command to the solr instance control script.\n [deo]\n\n\n0.3 (2009-09-10)\n================\n\n- Added requestParsers-multipartUploadLimitInKB allowing one to\n adjust the request parsers limit.\n [anguenot]\n\n- Added additional-solrconfig allowing one to extend the solrconfig.xml.\n [anguenot]\n\n- Support whitespace in schema index attributes values.\n [anguenot]\n\n- Added default-operator.\n [swampmonkey]\n\n- Added config-template for allowing an alternate template to be used for\n generating the solrconfig.xml file.\n [cguardia]\n\n- Added the ``vardir`` and ``script`` options, making it possible to\n install multiple Solr instances in a single buildout.\n [hathawsh]\n\n\n0.2 (2008-08-08)\n================\n\n- Improved stop command by using SIGTERM instead of SIGHUP.\n [guido_w]\n\n- Made that stdout and stderr get redirected to a log file when daemonizing\n the solr instance.\n [guido_w]\n\n- Added support for setting Solr filters.\n [deo]\n\n\n0.1 (2008-07-07)\n================\n\n- First public release.\n [dokai]\n\nContributors\n***********************\n\n- Andreas Zeidler\n- Carlos de la Guardia\n- Dorneles Tremea\n- Florian Schulze\n- Guido Wesdorp\n- Hanno Schlichting\n- Jan Murre\n- Joshua LaPlace\n- Julien Anguenot\n- Kai Lautaportti\n- Shane Hathaway\n- Tarek Ziade\n- Tom Gross\n- Andreas Jung\n- David Blewett\n- Josip Delic\n- Carsten Senger\n- Gerhard Weis\n- David Beitey\n- Richard Mitchell\n- Pedro Romano\n- Giacomo Spettoli\n- Daniel Widerin\n\nDownload\n***********************",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://pypi.python.org/pypi/collective.recipe.solrinstance",
"keywords": "",
"license": "ZPL",
"maintainer": "",
"maintainer_email": "",
"name": "collective.recipe.solrinstance",
"package_url": "https://pypi.org/project/collective.recipe.solrinstance/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/collective.recipe.solrinstance/",
"project_urls": {
"Homepage": "http://pypi.python.org/pypi/collective.recipe.solrinstance"
},
"release_url": "https://pypi.org/project/collective.recipe.solrinstance/5.3.3/",
"requires_dist": null,
"requires_python": "",
"summary": "zc.buildout to configure a solr instance",
"version": "5.3.3"
},
"last_serial": 2108275,
"releases": {
"0.1": [
{
"comment_text": "",
"digests": {
"md5": "915cbb421dc518d30b8e398cc58492fe",
"sha256": "f55a96c1ee0ee2a052bcd4c06331167e3b59501c861fb1facc95377a6af00848"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-0.1.tar.gz",
"has_sig": false,
"md5_digest": "915cbb421dc518d30b8e398cc58492fe",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22055,
"upload_time": "2008-07-06T15:50:18",
"url": "https://files.pythonhosted.org/packages/ba/f7/b8f4c3cdeff8b2d9475e665dcb89bd54be48708a4bab74f668cc73b84a73/collective.recipe.solrinstance-0.1.tar.gz"
}
],
"0.2": [
{
"comment_text": "",
"digests": {
"md5": "08b47f2f19ff0f837334ce56bd1ec29e",
"sha256": "57ca80d4f1db8b5a62e0069c967f2763614a593392634309a8071f2a86bcddcf"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-0.2.tar.gz",
"has_sig": false,
"md5_digest": "08b47f2f19ff0f837334ce56bd1ec29e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23765,
"upload_time": "2008-08-07T18:15:40",
"url": "https://files.pythonhosted.org/packages/06/95/264edd6198502c33dd0e33ee6c7008b749ce4cc836a2dc5e86d5fb8be8e4/collective.recipe.solrinstance-0.2.tar.gz"
}
],
"0.3": [
{
"comment_text": "",
"digests": {
"md5": "1fb9a2d5c099db5e165f7fe12a3c290b",
"sha256": "d051303f4307ce39366725da138ea769c9107202afb8acb35cd17acc0deddb6a"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-0.3.tar.gz",
"has_sig": false,
"md5_digest": "1fb9a2d5c099db5e165f7fe12a3c290b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 25047,
"upload_time": "2009-09-10T23:15:44",
"url": "https://files.pythonhosted.org/packages/2f/ec/945174b37ffcea3a7c6ac81b86d48725abd6e9777cff4afb8bd83422fac0/collective.recipe.solrinstance-0.3.tar.gz"
}
],
"0.4": [
{
"comment_text": "",
"digests": {
"md5": "10b5a7d79fc26c5a1517f0228cd3db76",
"sha256": "458648cfe3dc4176cdf921195a91dc64cc01ce612b1b3972cb9557b71404172d"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-0.4.zip",
"has_sig": false,
"md5_digest": "10b5a7d79fc26c5a1517f0228cd3db76",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 38258,
"upload_time": "2010-02-18T14:22:14",
"url": "https://files.pythonhosted.org/packages/9b/96/fcbee89c6e4662379e3c7120fd897c05ffdd450c101f45bdc8872e346e2b/collective.recipe.solrinstance-0.4.zip"
}
],
"1.0": [
{
"comment_text": "",
"digests": {
"md5": "878b79efc1a61cba83609d343a79f839",
"sha256": "42bbb966ee3b0e72d20549c73d1d4c824bd70a561510f18b3eb6957c5620f111"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0.zip",
"has_sig": false,
"md5_digest": "878b79efc1a61cba83609d343a79f839",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44412,
"upload_time": "2010-12-12T14:18:45",
"url": "https://files.pythonhosted.org/packages/f8/2a/903ad5d767565d90cf6de9da60d8fd35765e1af26f03e10b1141abd12c95/collective.recipe.solrinstance-1.0.zip"
}
],
"1.0a1": [
{
"comment_text": "",
"digests": {
"md5": "701e318d1c56cdb49d4dac9c1ee5f843",
"sha256": "a744153dcc549fcc3dbf2ec0a1c6a441535b88ce69ee6a4bcb1a1a679fd6ef7d"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a1.zip",
"has_sig": false,
"md5_digest": "701e318d1c56cdb49d4dac9c1ee5f843",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40282,
"upload_time": "2010-03-22T20:13:43",
"url": "https://files.pythonhosted.org/packages/94/cb/3f75114aad96eba698a138dc77d37640d9d4d7fcd8d4fd20acf9a184dbc3/collective.recipe.solrinstance-1.0a1.zip"
}
],
"1.0a2": [
{
"comment_text": "",
"digests": {
"md5": "e985ee0b4e7a661390c9eb75ac9dc4af",
"sha256": "f6f39285a709722182b8a0cd90a4aee39243ae537ac0919bdef7ea28a32373e8"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a2.zip",
"has_sig": false,
"md5_digest": "e985ee0b4e7a661390c9eb75ac9dc4af",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40396,
"upload_time": "2010-03-22T20:16:46",
"url": "https://files.pythonhosted.org/packages/89/0f/19c37418d679cb3d224c2adcf460e9fa0769ce022a8ea6651899085d836c/collective.recipe.solrinstance-1.0a2.zip"
}
],
"1.0a3": [
{
"comment_text": "",
"digests": {
"md5": "98f4a354a2d9c57a5b3e281c34f5f5f8",
"sha256": "554d3454b9329a5316aae462a27b6668676d45094bcbc1ed7ef7277e105c26c0"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a3.zip",
"has_sig": false,
"md5_digest": "98f4a354a2d9c57a5b3e281c34f5f5f8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 40737,
"upload_time": "2010-03-23T16:20:39",
"url": "https://files.pythonhosted.org/packages/e0/51/416f729f70ce02358e9a74c24ed0feb613a163dbade520518b39a651d894/collective.recipe.solrinstance-1.0a3.zip"
}
],
"1.0a4": [
{
"comment_text": "",
"digests": {
"md5": "a8d657bb15529d6490115e6c6f575b5b",
"sha256": "1b04fedaa14b897987a901234cee462933d3c8cd26e807e108b304243fe1e9a3"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a4.zip",
"has_sig": false,
"md5_digest": "a8d657bb15529d6490115e6c6f575b5b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 41334,
"upload_time": "2010-05-05T20:17:23",
"url": "https://files.pythonhosted.org/packages/7d/95/d5eb4139bc22b42167e2bc209152438b9ef8d952d379eff54b0a6968ac3c/collective.recipe.solrinstance-1.0a4.zip"
}
],
"1.0a5": [
{
"comment_text": "",
"digests": {
"md5": "f05d55ffc9cb96e67fa8c45dc97989a9",
"sha256": "e385e10a3a3df7713541ff7db71f30253cb1778172ea19c9fb06e9ef6b01e35e"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a5.zip",
"has_sig": false,
"md5_digest": "f05d55ffc9cb96e67fa8c45dc97989a9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 42223,
"upload_time": "2010-05-11T19:26:57",
"url": "https://files.pythonhosted.org/packages/5e/98/8a25553c676cb4baf3c54fa8562b204edf958f50b6ed2d6856cf8b69839a/collective.recipe.solrinstance-1.0a5.zip"
}
],
"1.0a6": [
{
"comment_text": "",
"digests": {
"md5": "fe1ba044e42e875e45c2342383cf7d71",
"sha256": "c359bbf98dc2a3925d6af48a1d54d85e4a21734d41696d254cf57030ef5502c9"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a6.tar.gz",
"has_sig": false,
"md5_digest": "fe1ba044e42e875e45c2342383cf7d71",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30686,
"upload_time": "2010-05-17T14:03:24",
"url": "https://files.pythonhosted.org/packages/5a/ce/9354a9ec9d1ed848caccb6819b3ad3d20861806cc49c8e70d414a58075b4/collective.recipe.solrinstance-1.0a6.tar.gz"
}
],
"1.0a7": [
{
"comment_text": "",
"digests": {
"md5": "40613ab409acd6621ee216217a248600",
"sha256": "2aaa1606f321c48944edcf56079f2cfa42ca52d21b707d39f30a2222d1a21f4b"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0a7.tar.gz",
"has_sig": false,
"md5_digest": "40613ab409acd6621ee216217a248600",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 30773,
"upload_time": "2010-05-17T14:09:08",
"url": "https://files.pythonhosted.org/packages/54/de/2353b511437dcce4a051e95fd7f1a399017d4170372ba764198ae13135e5/collective.recipe.solrinstance-1.0a7.tar.gz"
}
],
"1.0b1": [
{
"comment_text": "",
"digests": {
"md5": "3817047155be3b46344d5a11ef048630",
"sha256": "c5e731099c87cf4f6f22de6c98e9f073a101f8e35e6dec3330fd6910df14b5e2"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0b1.zip",
"has_sig": false,
"md5_digest": "3817047155be3b46344d5a11ef048630",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43512,
"upload_time": "2010-05-25T21:13:40",
"url": "https://files.pythonhosted.org/packages/38/1b/787cf50f915f7f0656fea0b91a1db908dfe76dd397fbf438e21f5d1dfc44/collective.recipe.solrinstance-1.0b1.zip"
}
],
"1.0b2": [
{
"comment_text": "",
"digests": {
"md5": "e89dc25d03eef0f58c84ed7e65d13471",
"sha256": "29f3d5671c87364704fe6d2deaca63cce3c90a6a21849ae27a59df5085be6dde"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0b2.zip",
"has_sig": false,
"md5_digest": "e89dc25d03eef0f58c84ed7e65d13471",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44048,
"upload_time": "2010-06-01T18:36:03",
"url": "https://files.pythonhosted.org/packages/9c/78/f62adc0d95758627a2548e3e74cc4e01e37a6e5def150c9f8964d5e5234b/collective.recipe.solrinstance-1.0b2.zip"
}
],
"1.0b3": [
{
"comment_text": "",
"digests": {
"md5": "5999e0ad9ceab0d3055b0ed1ae1c3ef6",
"sha256": "0bac6bc66e08b1ed6128d6aa0a985b2643a1c9d67bc671031492bf477af5fce3"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0b3.zip",
"has_sig": false,
"md5_digest": "5999e0ad9ceab0d3055b0ed1ae1c3ef6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44109,
"upload_time": "2010-07-23T15:54:50",
"url": "https://files.pythonhosted.org/packages/8b/1f/53d456b1701f8f45c23d98d9f836312a3ba3d220a8ddd51f3dc5fb5ff5e7/collective.recipe.solrinstance-1.0b3.zip"
}
],
"1.0b4": [
{
"comment_text": "",
"digests": {
"md5": "7bdceed91c139a84280e530d06206fc1",
"sha256": "d1e30c0ad3c298113fed89d8e57bc7cd0b4f6692830a1c7b70e80636b54fdeed"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0b4.tar.gz",
"has_sig": false,
"md5_digest": "7bdceed91c139a84280e530d06206fc1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 32173,
"upload_time": "2010-08-12T10:20:53",
"url": "https://files.pythonhosted.org/packages/28/9e/445170b6ef3ae2d6f60a72531bfc8cfe90d6c9225282ab76802128ff2d9d/collective.recipe.solrinstance-1.0b4.tar.gz"
}
],
"1.0b5": [
{
"comment_text": "",
"digests": {
"md5": "963fb8a681d3b85aa7f464291a24d6c1",
"sha256": "04e50f30f75f48ab25b741e1ba8b7037da4d08ca04678912b04c7bf480d9e2d9"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.0b5.zip",
"has_sig": false,
"md5_digest": "963fb8a681d3b85aa7f464291a24d6c1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 44472,
"upload_time": "2010-09-03T16:16:20",
"url": "https://files.pythonhosted.org/packages/08/39/07b97c45a703bd1d26347bc91b1d99d091f7aa65161806f6e09eca092e54/collective.recipe.solrinstance-1.0b5.zip"
}
],
"1.1": [
{
"comment_text": "",
"digests": {
"md5": "5ba32ccff4abeb01415811a00555f0f3",
"sha256": "90288ba81f10ea06a7f98256fb9cfa2d7e4c5e8cdd3a0bb93fa3629725e3432b"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-1.1.zip",
"has_sig": false,
"md5_digest": "5ba32ccff4abeb01415811a00555f0f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 45092,
"upload_time": "2011-04-04T20:13:53",
"url": "https://files.pythonhosted.org/packages/f0/50/400571d3226f7dc042861e69632303899d577613b059be11591783d9c5e5/collective.recipe.solrinstance-1.1.zip"
}
],
"2.0": [
{
"comment_text": "",
"digests": {
"md5": "1fbca5d74aad2f21abe4b5d924e5e870",
"sha256": "00c9cebfa03b82904d120a1f22c743a8682e322a76e0eb9b8cd9fcd71be1ed7e"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-2.0.tar.gz",
"has_sig": false,
"md5_digest": "1fbca5d74aad2f21abe4b5d924e5e870",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34848,
"upload_time": "2011-04-12T11:51:09",
"url": "https://files.pythonhosted.org/packages/76/5e/6c99cda576b0c36fba2e536a114e36da105d4d16e57f430c43fa148435e3/collective.recipe.solrinstance-2.0.tar.gz"
}
],
"2.1": [
{
"comment_text": "",
"digests": {
"md5": "1fb6d3d14f8fe97888c5b911fa0f8358",
"sha256": "c4633ea1acdb583854469bd33b00fa92ff0267b3fb1a45e59138cc724b32d3d1"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-2.1.tar.gz",
"has_sig": false,
"md5_digest": "1fb6d3d14f8fe97888c5b911fa0f8358",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 34875,
"upload_time": "2011-04-12T12:09:54",
"url": "https://files.pythonhosted.org/packages/30/c0/041ecf1bc875dce56e8391a54383fcdf68f65422c9e4356f135a80ad028f/collective.recipe.solrinstance-2.1.tar.gz"
}
],
"3.0": [
{
"comment_text": "",
"digests": {
"md5": "10d78d39056ded318f8f9747e59aeccf",
"sha256": "717635d76ed0903615d3be0ba9aa40a1fb1840b7f6b8b4607c06c183007c1441"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.0.zip",
"has_sig": false,
"md5_digest": "10d78d39056ded318f8f9747e59aeccf",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 61567,
"upload_time": "2011-06-04T19:50:32",
"url": "https://files.pythonhosted.org/packages/66/2d/2c468c0b38e00079c0a054c0a278fbcbd3d4c3db44ea2343640b4298e682/collective.recipe.solrinstance-3.0.zip"
}
],
"3.0a1": [
{
"comment_text": "",
"digests": {
"md5": "7896c86b27c83b88fda8f1aa809d3028",
"sha256": "fa48e868596a6193590568084c0815df1078474859640defb5d403f8dfdf165d"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.0a1.zip",
"has_sig": false,
"md5_digest": "7896c86b27c83b88fda8f1aa809d3028",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 60512,
"upload_time": "2011-05-26T14:39:03",
"url": "https://files.pythonhosted.org/packages/4f/84/7b45475f4663053a37a856aa7f4507171dab77c13df3ea1d87924fc2eb28/collective.recipe.solrinstance-3.0a1.zip"
}
],
"3.0a2": [
{
"comment_text": "",
"digests": {
"md5": "9c7b1b7fcf876621efd5ff5ac170a985",
"sha256": "c0ea79b05ab352add4943886b9566c51c06ac7412fa4da1842170cd43b6df5bf"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.0a2.zip",
"has_sig": false,
"md5_digest": "9c7b1b7fcf876621efd5ff5ac170a985",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 61589,
"upload_time": "2011-05-26T16:00:39",
"url": "https://files.pythonhosted.org/packages/40/8b/4e5104cc79da10c1c10943d4d71e357620d79aca07613d4a6ede7c4bc3f4/collective.recipe.solrinstance-3.0a2.zip"
}
],
"3.1": [
{
"comment_text": "",
"digests": {
"md5": "b577ed9c2155cf4186ca08c831feee4e",
"sha256": "6998ef338d6bdb9323eb11b9b0131f421774121f9a0be4e8531111d4db086a80"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.1.zip",
"has_sig": false,
"md5_digest": "b577ed9c2155cf4186ca08c831feee4e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 61823,
"upload_time": "2011-06-06T12:46:13",
"url": "https://files.pythonhosted.org/packages/1d/e4/13cbb2e23d6999cf3aa05ba13202e37e171b4d5c3ed8f60ddf285a6d0fe0/collective.recipe.solrinstance-3.1.zip"
}
],
"3.2": [
{
"comment_text": "",
"digests": {
"md5": "b42f70097a68213fa1e516c2d8a79dab",
"sha256": "bc6a47934eb617983184cee12bb8c855bd59d4431dfa44545047145f8698b71e"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.2.zip",
"has_sig": false,
"md5_digest": "b42f70097a68213fa1e516c2d8a79dab",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 62602,
"upload_time": "2011-06-23T14:51:28",
"url": "https://files.pythonhosted.org/packages/cf/fe/b76f2fea384ebb74dee066b401b7337838b6f7cf4a63091d3178a291dfd1/collective.recipe.solrinstance-3.2.zip"
}
],
"3.3": [
{
"comment_text": "",
"digests": {
"md5": "8169976f98daee92173d33219251cd82",
"sha256": "fbbf7e045a9123fbb8c4020848c6956096bebbce8f43684fa54c87423ec26266"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.3.zip",
"has_sig": false,
"md5_digest": "8169976f98daee92173d33219251cd82",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 61704,
"upload_time": "2011-06-25T23:05:18",
"url": "https://files.pythonhosted.org/packages/46/8f/d965cb6d15fbffac76c067fd56eb739be9107df51650eda8d1b920fc7171/collective.recipe.solrinstance-3.3.zip"
}
],
"3.4": [
{
"comment_text": "",
"digests": {
"md5": "3969545f6a1ebdb4c8778fd7d05b591c",
"sha256": "9a039059937b63f73b659bfc5836c0643ba2f0f45044779d869ee1f40d2f5c33"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.4.zip",
"has_sig": false,
"md5_digest": "3969545f6a1ebdb4c8778fd7d05b591c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 62131,
"upload_time": "2011-07-09T20:46:59",
"url": "https://files.pythonhosted.org/packages/7d/6c/20044e6e39c90f6a8b041b6e47562a9dccc4dd35779f326f1866d85886f0/collective.recipe.solrinstance-3.4.zip"
}
],
"3.5": [
{
"comment_text": "",
"digests": {
"md5": "bd26b683ff01984f12e800162ab589ff",
"sha256": "659e8a34924e126e94e134dbb54046c6631bf90b00abcd83c7f0b3d6da1e6253"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.5.zip",
"has_sig": false,
"md5_digest": "bd26b683ff01984f12e800162ab589ff",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 55979,
"upload_time": "2011-07-10T16:28:04",
"url": "https://files.pythonhosted.org/packages/55/e3/5dea069de56b00965dea6d75587ed73ba88307c606286a83c34a2ba7350b/collective.recipe.solrinstance-3.5.zip"
}
],
"3.6": [
{
"comment_text": "",
"digests": {
"md5": "2ebc1a250527ab6cf4a165c7bae15d01",
"sha256": "884144bb205dfac74cc4efed629676766c969818f63a4bc13e419ac921f1ace7"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.6.zip",
"has_sig": false,
"md5_digest": "2ebc1a250527ab6cf4a165c7bae15d01",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 57660,
"upload_time": "2011-12-07T13:18:05",
"url": "https://files.pythonhosted.org/packages/35/5d/19c5eba894766240c6a153f41d4e9d7822341daa07d2c5b191fc8c1c9991/collective.recipe.solrinstance-3.6.zip"
}
],
"3.7": [
{
"comment_text": "",
"digests": {
"md5": "36b0f1c8fca7a8878354ea5e3ab69fb5",
"sha256": "3539632c8bb4ab1eec9466fc6e62837a0a9dcc9c0cf271a66c048e6a3746d388"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.7.tar.gz",
"has_sig": false,
"md5_digest": "36b0f1c8fca7a8878354ea5e3ab69fb5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 22808,
"upload_time": "2012-02-28T14:00:24",
"url": "https://files.pythonhosted.org/packages/18/e9/079635b38452a5fdce8785215ef9ba49e710b93f0986de726c4b05367089/collective.recipe.solrinstance-3.7.tar.gz"
}
],
"3.7.1": [
{
"comment_text": "",
"digests": {
"md5": "8495d0a0034dbc124c53407a7759ade5",
"sha256": "cf710b86d23fefd50b4efe3b161b4de3d8dd7af8b99e4877aa59b8ba098a6c0f"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.7.1.tar.gz",
"has_sig": false,
"md5_digest": "8495d0a0034dbc124c53407a7759ade5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 43159,
"upload_time": "2012-02-28T14:25:55",
"url": "https://files.pythonhosted.org/packages/92/f0/086f5f82027a155833af2ec2da73c448a027c03774e3ddd1d3233b8545a2/collective.recipe.solrinstance-3.7.1.tar.gz"
}
],
"3.8": [
{
"comment_text": "",
"digests": {
"md5": "5693ca78b835f4e10e4e10e4a7f24294",
"sha256": "d4e0f10161ced59cd0360b373acbd8a06e30c1ec726b9c776c8e008f4dc7083d"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-3.8.zip",
"has_sig": false,
"md5_digest": "5693ca78b835f4e10e4e10e4a7f24294",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 61070,
"upload_time": "2012-08-09T08:02:41",
"url": "https://files.pythonhosted.org/packages/0d/2b/41b45c1f9d476b87f17fc154c89e48dd837cf592b5a30aa52f87c9736838/collective.recipe.solrinstance-3.8.zip"
}
],
"4.0": [
{
"comment_text": "",
"digests": {
"md5": "488e0dbb0eb3f7bd87166420add3f441",
"sha256": "d288c4d391768db00c59bd3df42fd0806e0ef73b09b429d616efa306915fc128"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-4.0.tar.gz",
"has_sig": false,
"md5_digest": "488e0dbb0eb3f7bd87166420add3f441",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 82295,
"upload_time": "2013-02-15T20:38:19",
"url": "https://files.pythonhosted.org/packages/27/14/841020857e2b6f16458329cb5067847147edd64345227907364165b30d3a/collective.recipe.solrinstance-4.0.tar.gz"
},
{
"comment_text": "",
"digests": {
"md5": "fdcf8dae9715da968bd6209c4c3e3fea",
"sha256": "d5f118d0b2e4d3af310cd5635c27e19260e3ffd5500f4b444d42f6a55bf7c26d"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-4.0.zip",
"has_sig": false,
"md5_digest": "fdcf8dae9715da968bd6209c4c3e3fea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 101242,
"upload_time": "2013-02-15T00:40:43",
"url": "https://files.pythonhosted.org/packages/44/3f/6f3a1903ff126d2fd08e0ab22fc9ed67f6dcbf8d04e2ff46c101290b2b16/collective.recipe.solrinstance-4.0.zip"
}
],
"5.0": [
{
"comment_text": "",
"digests": {
"md5": "a6f40acd490039d9e757d5c9f8274200",
"sha256": "7609d30ee783b10e6294eefa0d7890ec13e2c850089440afe2a1b76df8fc3f7d"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.0.zip",
"has_sig": false,
"md5_digest": "a6f40acd490039d9e757d5c9f8274200",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 110851,
"upload_time": "2013-06-24T01:28:23",
"url": "https://files.pythonhosted.org/packages/51/8a/4fead5f8787f616d874c33ae940b4d8a651cc227f0988e86a54cecc6c7f4/collective.recipe.solrinstance-5.0.zip"
}
],
"5.0.1": [
{
"comment_text": "",
"digests": {
"md5": "1fc556d378549cce5ceb51d7f559b3e5",
"sha256": "22d4fe7131aca911bb41239196c8cff775591f068ceecd99247a79a3243f931b"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.0.1.zip",
"has_sig": false,
"md5_digest": "1fc556d378549cce5ceb51d7f559b3e5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 111152,
"upload_time": "2013-06-24T02:49:10",
"url": "https://files.pythonhosted.org/packages/31/96/d4a55b97ad9ce0b0e86f36b23d6814c0a2f088c18fe3d74f08b0f994477f/collective.recipe.solrinstance-5.0.1.zip"
}
],
"5.1": [
{
"comment_text": "",
"digests": {
"md5": "ca48489c8a6f3596dd96b1fe3bb6cfe6",
"sha256": "e4af80c1929737622a04a56650f9d81cfb735964ab2b72e8dde92acdbe6d2e57"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.1.zip",
"has_sig": false,
"md5_digest": "ca48489c8a6f3596dd96b1fe3bb6cfe6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 107435,
"upload_time": "2013-09-04T02:56:54",
"url": "https://files.pythonhosted.org/packages/4e/8e/faffb68927ad9663a4458f76cf3b83ad05dd044e3c7a68c6e0244181647c/collective.recipe.solrinstance-5.1.zip"
}
],
"5.2": [
{
"comment_text": "",
"digests": {
"md5": "07323b529bbc480b6e400b7c769a3114",
"sha256": "e3e658a2db52c278da54ff003fc0f44faef0d242a5adae5a35122fdbed77ddb7"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.2.zip",
"has_sig": false,
"md5_digest": "07323b529bbc480b6e400b7c769a3114",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 107727,
"upload_time": "2013-10-21T23:16:16",
"url": "https://files.pythonhosted.org/packages/43/b3/b5aede1bb359c38cba7ac2ad1e112926827ac6fe7cb88975fd25c5968558/collective.recipe.solrinstance-5.2.zip"
}
],
"5.2.1": [
{
"comment_text": "",
"digests": {
"md5": "87c9c69f4d81b1ef7726a3dfb545f927",
"sha256": "0171266a0a42838434c76382c9885bf266a63b33c012cfe0dcd57fe3116511fd"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.2.1.zip",
"has_sig": false,
"md5_digest": "87c9c69f4d81b1ef7726a3dfb545f927",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 108011,
"upload_time": "2013-10-21T23:21:50",
"url": "https://files.pythonhosted.org/packages/a8/6b/e737c0b0c84741ffbbb87956377da4e3273f2b1fd0f280271d8c09d556fe/collective.recipe.solrinstance-5.2.1.zip"
}
],
"5.3.0": [
{
"comment_text": "",
"digests": {
"md5": "c3ab1aa64806b4dc6d21104fe2d41699",
"sha256": "0030aef1942e92ac9eb4065efa0e41b489669ec83c39b6429105b74333f0a6ba"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.3.0.tar.gz",
"has_sig": false,
"md5_digest": "c3ab1aa64806b4dc6d21104fe2d41699",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 92506,
"upload_time": "2013-12-17T16:12:08",
"url": "https://files.pythonhosted.org/packages/40/8f/624d0b8da6cae4fd8e488291b95a28152b5c32d10d631fb73e823874ab5e/collective.recipe.solrinstance-5.3.0.tar.gz"
}
],
"5.3.1": [
{
"comment_text": "",
"digests": {
"md5": "d3637a1970b2d233091eb182d1a7485e",
"sha256": "200da48c92adbfaf6840ce4233e8ded4fe472a147ffd6cf1bdcdecc37abb9dcf"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.3.1.tar.gz",
"has_sig": false,
"md5_digest": "d3637a1970b2d233091eb182d1a7485e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 93067,
"upload_time": "2013-12-17T16:12:31",
"url": "https://files.pythonhosted.org/packages/41/8a/96493c4648cdb33633305f4c2c7b42ed82360ad713c74c99ca689d3f3ee7/collective.recipe.solrinstance-5.3.1.tar.gz"
}
],
"5.3.2": [
{
"comment_text": "",
"digests": {
"md5": "64df72e2495c4f36a6b16e8ea4b6498c",
"sha256": "37956e000b5b04da82c17f709b63d4f9441d90569e6089a6c85f878486f64ad1"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.3.2.zip",
"has_sig": false,
"md5_digest": "64df72e2495c4f36a6b16e8ea4b6498c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 110339,
"upload_time": "2014-08-27T13:19:29",
"url": "https://files.pythonhosted.org/packages/b7/f8/2db5eca83cfb959509f58f90c7858432e9ea1e0dc908621106aac9749db6/collective.recipe.solrinstance-5.3.2.zip"
}
],
"5.3.3": [
{
"comment_text": "",
"digests": {
"md5": "b75666d628783f34b6081f402a7894f8",
"sha256": "fcaa7474fb71170bd5b6f8ed8f4b57a45f3135675de19108e0251f474772265e"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.3.3.tar.gz",
"has_sig": false,
"md5_digest": "b75666d628783f34b6081f402a7894f8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 90938,
"upload_time": "2016-05-10T10:56:48",
"url": "https://files.pythonhosted.org/packages/c3/48/5f0fb6b104c604ab20497a71697d9fa5f53a1c40f42f1f7e3eb4a3eef235/collective.recipe.solrinstance-5.3.3.tar.gz"
}
],
"6.0.0b1": [
{
"comment_text": "",
"digests": {
"md5": "b48a1917df4aec4382d0877b623aa898",
"sha256": "29cd2752d675da49b712722a1e00cb8840c8930b8390ccb8d398376646b19252"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-6.0.0b1.zip",
"has_sig": false,
"md5_digest": "b48a1917df4aec4382d0877b623aa898",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 142660,
"upload_time": "2015-03-17T09:30:27",
"url": "https://files.pythonhosted.org/packages/ea/8c/5bba19fc0e356403ae78aff05e302d30a2ef0e53926fa053f979c00e0e48/collective.recipe.solrinstance-6.0.0b1.zip"
}
],
"6.0.0b2": [
{
"comment_text": "",
"digests": {
"md5": "d5a481e863acca8214a5423749fbfccd",
"sha256": "75174482ba0027bb8930cc5f4a32a016a6b64909b295bc287f21b7c7fec71ccb"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-6.0.0b2.zip",
"has_sig": false,
"md5_digest": "d5a481e863acca8214a5423749fbfccd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 142838,
"upload_time": "2015-03-17T23:24:12",
"url": "https://files.pythonhosted.org/packages/0c/bd/919f115edcb558b1350d4c566406b50e96b27ec7b708bf96bb94599a3f7f/collective.recipe.solrinstance-6.0.0b2.zip"
}
],
"6.0.0b3": [
{
"comment_text": "",
"digests": {
"md5": "18b6a0e34b2ba77e8c6fbf6b13d004a8",
"sha256": "367291f031d52d583b814c08f5910d56b5f14a70e505556297a18856401e7860"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-6.0.0b3.tar.gz",
"has_sig": false,
"md5_digest": "18b6a0e34b2ba77e8c6fbf6b13d004a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 120977,
"upload_time": "2015-04-22T10:39:33",
"url": "https://files.pythonhosted.org/packages/aa/dd/25a9d05c29110709d5269da2fe036a786654feaf3adabc6a1219e97d496c/collective.recipe.solrinstance-6.0.0b3.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "b75666d628783f34b6081f402a7894f8",
"sha256": "fcaa7474fb71170bd5b6f8ed8f4b57a45f3135675de19108e0251f474772265e"
},
"downloads": -1,
"filename": "collective.recipe.solrinstance-5.3.3.tar.gz",
"has_sig": false,
"md5_digest": "b75666d628783f34b6081f402a7894f8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 90938,
"upload_time": "2016-05-10T10:56:48",
"url": "https://files.pythonhosted.org/packages/c3/48/5f0fb6b104c604ab20497a71697d9fa5f53a1c40f42f1f7e3eb4a3eef235/collective.recipe.solrinstance-5.3.3.tar.gz"
}
]
}