.editorconfig
.gitchangelog.rc
.gitignore
AUTHORS
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.rst
pyproject.toml
setup.cfg
setup.py
tox.ini
.github/issue_template.md
.github/pull_request_template.md
.github/workflows/black+isort.yml
.github/workflows/codeql-analysis.yml
.github/workflows/docs.yml
.github/workflows/flake8.yml
.github/workflows/publish.yml
.github/workflows/test.yml
django_haystack.egg-info/PKG-INFO
django_haystack.egg-info/SOURCES.txt
django_haystack.egg-info/dependency_links.txt
django_haystack.egg-info/not-zip-safe
django_haystack.egg-info/requires.txt
django_haystack.egg-info/top_level.txt
docs/Makefile
docs/admin.rst
docs/architecture_overview.rst
docs/autocomplete.rst
docs/backend_support.rst
docs/best_practices.rst
docs/boost.rst
docs/changelog.rst
docs/conf.py
docs/contributing.rst
docs/creating_new_backends.rst
docs/debugging.rst
docs/faceting.rst
docs/faq.rst
docs/glossary.rst
docs/highlighting.rst
docs/index.rst
docs/inputtypes.rst
docs/installing_search_engines.rst
docs/management_commands.rst
docs/migration_from_1_to_2.rst
docs/multiple_index.rst
docs/other_apps.rst
docs/python3.rst
docs/rich_content_extraction.rst
docs/running_tests.rst
docs/searchbackend_api.rst
docs/searchfield_api.rst
docs/searchindex_api.rst
docs/searchquery_api.rst
docs/searchqueryset_api.rst
docs/searchresult_api.rst
docs/settings.rst
docs/signal_processors.rst
docs/spatial.rst
docs/templatetags.rst
docs/toc.rst
docs/tutorial.rst
docs/utils.rst
docs/views_and_forms.rst
docs/who_uses.rst
docs/_build/.gitignore
docs/_static/.gitignore
docs/_templates/.gitignore
docs/haystack_theme/layout.html
docs/haystack_theme/theme.conf
docs/haystack_theme/static/documentation.css
example_project/__init__.py
example_project/settings.py
example_project/bare_bones_app/__init__.py
example_project/bare_bones_app/models.py
example_project/bare_bones_app/search_indexes.py
example_project/regular_app/__init__.py
example_project/regular_app/models.py
example_project/regular_app/search_indexes.py
example_project/templates/search/indexes/bare_bones_app/cat_text.txt
example_project/templates/search/indexes/regular_app/dog_text.txt
haystack/__init__.py
haystack/admin.py
haystack/apps.py
haystack/constants.py
haystack/exceptions.py
haystack/fields.py
haystack/forms.py
haystack/generic_views.py
haystack/indexes.py
haystack/inputs.py
haystack/manager.py
haystack/models.py
haystack/panels.py
haystack/query.py
haystack/routers.py
haystack/signals.py
haystack/urls.py
haystack/version.py
haystack/views.py
haystack/backends/__init__.py
haystack/backends/elasticsearch2_backend.py
haystack/backends/elasticsearch5_backend.py
haystack/backends/elasticsearch7_backend.py
haystack/backends/elasticsearch_backend.py
haystack/backends/simple_backend.py
haystack/backends/solr_backend.py
haystack/backends/whoosh_backend.py
haystack/management/__init__.py
haystack/management/commands/__init__.py
haystack/management/commands/build_solr_schema.py
haystack/management/commands/clear_index.py
haystack/management/commands/haystack_info.py
haystack/management/commands/rebuild_index.py
haystack/management/commands/update_index.py
haystack/templates/panels/haystack.html
haystack/templates/search_configuration/schema.xml
haystack/templates/search_configuration/solrconfig.xml
haystack/templatetags/__init__.py
haystack/templatetags/highlight.py
haystack/templatetags/more_like_this.py
haystack/utils/__init__.py
haystack/utils/app_loading.py
haystack/utils/geo.py
haystack/utils/highlighting.py
haystack/utils/loading.py
haystack/utils/log.py
test_haystack/__init__.py
test_haystack/mocks.py
test_haystack/results_per_page_urls.py
test_haystack/run_tests.py
test_haystack/settings.py
test_haystack/test_altered_internal_names.py
test_haystack/test_app_loading.py
test_haystack/test_backends.py
test_haystack/test_discovery.py
test_haystack/test_fields.py
test_haystack/test_forms.py
test_haystack/test_generic_views.py
test_haystack/test_indexes.py
test_haystack/test_inputs.py
test_haystack/test_loading.py
test_haystack/test_management_commands.py
test_haystack/test_managers.py
test_haystack/test_models.py
test_haystack/test_query.py
test_haystack/test_templatetags.py
test_haystack/test_utils.py
test_haystack/test_views.py
test_haystack/utils.py
test_haystack/core/__init__.py
test_haystack/core/admin.py
test_haystack/core/custom_identifier.py
test_haystack/core/models.py
test_haystack/core/urls.py
test_haystack/core/fixtures/base_data.json
test_haystack/core/fixtures/bulk_data.json
test_haystack/core/templates/404.html
test_haystack/core/templates/base.html
test_haystack/core/templates/test_suggestion.html
test_haystack/core/templates/search/search.html
test_haystack/core/templates/search/indexes/bar.txt
test_haystack/core/templates/search/indexes/foo.txt
test_haystack/core/templates/search/indexes/core/mockmodel_content.txt
test_haystack/core/templates/search/indexes/core/mockmodel_extra.txt
test_haystack/core/templates/search/indexes/core/mockmodel_template.txt
test_haystack/core/templates/search/indexes/core/mockmodel_text.txt
test_haystack/discovery/__init__.py
test_haystack/discovery/models.py
test_haystack/discovery/search_indexes.py
test_haystack/discovery/templates/search/indexes/bar_text.txt
test_haystack/elasticsearch2_tests/__init__.py
test_haystack/elasticsearch2_tests/test_backend.py
test_haystack/elasticsearch2_tests/test_inputs.py
test_haystack/elasticsearch2_tests/test_query.py
test_haystack/elasticsearch5_tests/__init__.py
test_haystack/elasticsearch5_tests/test_backend.py
test_haystack/elasticsearch5_tests/test_inputs.py
test_haystack/elasticsearch5_tests/test_query.py
test_haystack/elasticsearch7_tests/__init__.py
test_haystack/elasticsearch7_tests/test_backend.py
test_haystack/elasticsearch7_tests/test_inputs.py
test_haystack/elasticsearch7_tests/test_query.py
test_haystack/elasticsearch_tests/__init__.py
test_haystack/elasticsearch_tests/test_elasticsearch_backend.py
test_haystack/elasticsearch_tests/test_elasticsearch_query.py
test_haystack/elasticsearch_tests/test_inputs.py
test_haystack/multipleindex/__init__.py
test_haystack/multipleindex/models.py
test_haystack/multipleindex/routers.py
test_haystack/multipleindex/search_indexes.py
test_haystack/multipleindex/tests.py
test_haystack/simple_tests/__init__.py
test_haystack/simple_tests/search_indexes.py
test_haystack/simple_tests/test_simple_backend.py
test_haystack/simple_tests/test_simple_query.py
test_haystack/solr_tests/__init__.py
test_haystack/solr_tests/test_admin.py
test_haystack/solr_tests/test_inputs.py
test_haystack/solr_tests/test_solr_backend.py
test_haystack/solr_tests/test_solr_management_commands.py
test_haystack/solr_tests/test_solr_query.py
test_haystack/solr_tests/test_templatetags.py
test_haystack/solr_tests/content_extraction/test.pdf
test_haystack/solr_tests/server/.gitignore
test_haystack/solr_tests/server/get-solr-download-url.py
test_haystack/solr_tests/server/start-solr-test-server.sh
test_haystack/solr_tests/server/wait-for-solr
test_haystack/solr_tests/server/confdir/schema.xml
test_haystack/solr_tests/server/confdir/solrconfig.xml
test_haystack/spatial/__init__.py
test_haystack/spatial/models.py
test_haystack/spatial/search_indexes.py
test_haystack/spatial/test_spatial.py
test_haystack/spatial/fixtures/sample_spatial_data.json
test_haystack/test_app_using_appconfig/__init__.py
test_haystack/test_app_using_appconfig/apps.py
test_haystack/test_app_using_appconfig/models.py
test_haystack/test_app_using_appconfig/search_indexes.py
test_haystack/test_app_using_appconfig/tests.py
test_haystack/test_app_using_appconfig/migrations/0001_initial.py
test_haystack/test_app_using_appconfig/migrations/__init__.py
test_haystack/test_app_with_hierarchy/__init__.py
test_haystack/test_app_with_hierarchy/contrib/__init__.py
test_haystack/test_app_with_hierarchy/contrib/django/__init__.py
test_haystack/test_app_with_hierarchy/contrib/django/hierarchal_app_django/__init__.py
test_haystack/test_app_with_hierarchy/contrib/django/hierarchal_app_django/models.py
test_haystack/test_app_without_models/__init__.py
test_haystack/test_app_without_models/urls.py
test_haystack/test_app_without_models/views.py
test_haystack/whoosh_tests/__init__.py
test_haystack/whoosh_tests/test_forms.py
test_haystack/whoosh_tests/test_inputs.py
test_haystack/whoosh_tests/test_whoosh_backend.py
test_haystack/whoosh_tests/test_whoosh_management_commands.py
test_haystack/whoosh_tests/test_whoosh_query.py
test_haystack/whoosh_tests/testcases.py