[Python-modules-commits] [django-haystack] branch master updated (1f5836c -> 170daf4)
Michael Fladischer
fladi at moszumanska.debian.org
Sun Aug 21 10:41:53 UTC 2016
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch master
in repository django-haystack.
from 1f5836c Fixed VCS URL (https)
new 6bc813b Import django-haystack_2.5.dev2.orig.tar.gz
new 5ce0e08 record new upstream branch created by importing django-haystack_2.5.dev2.orig.tar.gz and merge it
new a01b8d3 Import django-haystack_2.5.0.orig.tar.gz
new 8dec7e8 record new upstream branch created by importing django-haystack_2.5.0.orig.tar.gz and merge it
new 5f1a488 change version to 2.5.0-1 [ Ondřej Nový ] [ Michael Fladischer ] New upstream release (Closes: #828641). change urgency to low
new 8973884 Bump Standards-Version to 3.9.8.
new a8ddbd0 Use github tarballs in d/watch.
new 2af7477 Use python3-sphinx to build documentation.
new 4a4fa1c Use https:// for copyright-format 1.0 URL.
new 170daf4 change target to unstable change urgency to medium
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitchangelog.rc | 191 +
.github/issue_template.md | 18 +
.github/pull_request_template.md | 3 +
.gitignore | 18 +
.isort.cfg | 4 +
.travis.yml | 57 +
AUTHORS | 9 +
docs/contributing.rst => CONTRIBUTING.md | 93 +-
PKG-INFO | 80 -
README.rst | 20 +-
debian/.git-dpm | 14 +-
debian/changelog | 12 +-
debian/control | 6 +-
debian/copyright | 2 +-
debian/watch | 5 +-
django_haystack.egg-info/PKG-INFO | 80 -
django_haystack.egg-info/SOURCES.txt | 99 -
django_haystack.egg-info/dependency_links.txt | 1 -
django_haystack.egg-info/not-zip-safe | 1 -
django_haystack.egg-info/pbr.json | 1 -
django_haystack.egg-info/requires.txt | 1 -
django_haystack.egg-info/top_level.txt | 1 -
docs/backend_support.rst | 39 +-
docs/changelog.rst | 4766 ++++++++++++++++++++
docs/conf.py | 6 +-
docs/faceting.rst | 6 +-
docs/index.rst | 18 +-
docs/installing_search_engines.rst | 12 +-
docs/multiple_index.rst | 28 +-
docs/running_tests.rst | 2 +-
docs/searchqueryset_api.rst | 29 +-
docs/settings.rst | 22 +
docs/views_and_forms.rst | 28 +-
.../management => example_project}/__init__.py | 0
.../bare_bones_app}/__init__.py | 0
example_project/bare_bones_app/models.py | 22 +
example_project/bare_bones_app/search_indexes.py | 16 +
.../regular_app}/__init__.py | 0
example_project/regular_app/models.py | 47 +
example_project/regular_app/search_indexes.py | 36 +
example_project/settings.py | 48 +
.../search/indexes/bare_bones_app/cat_text.txt | 2 +
.../search/indexes/regular_app/dog_text.txt | 7 +
haystack/__init__.py | 23 +-
haystack/admin.py | 19 +-
haystack/apps.py | 28 +
haystack/backends/__init__.py | 34 +-
haystack/backends/elasticsearch_backend.py | 63 +-
haystack/backends/solr_backend.py | 44 +-
haystack/backends/whoosh_backend.py | 20 +-
haystack/constants.py | 6 +-
haystack/fields.py | 117 +-
haystack/forms.py | 12 +-
haystack/generic_views.py | 2 +-
haystack/indexes.py | 8 +-
haystack/inputs.py | 7 +-
haystack/management/commands/build_solr_schema.py | 46 +-
haystack/management/commands/clear_index.py | 41 +-
haystack/management/commands/haystack_info.py | 15 +-
haystack/management/commands/rebuild_index.py | 31 +-
haystack/management/commands/update_index.py | 255 +-
haystack/models.py | 10 +-
haystack/query.py | 302 +-
haystack/templatetags/more_like_this.py | 4 +-
haystack/urls.py | 13 +-
haystack/utils/__init__.py | 19 +-
haystack/utils/app_loading.py | 102 +-
haystack/utils/loading.py | 68 +-
haystack/views.py | 27 +-
setup.cfg | 24 +-
setup.py | 7 +-
test_haystack/__init__.py | 31 +
.../management => test_haystack/core}/__init__.py | 0
test_haystack/core/admin.py | 18 +
test_haystack/core/custom_identifier.py | 11 +
test_haystack/core/fixtures/base_data.json | 74 +
test_haystack/core/fixtures/bulk_data.json | 262 ++
test_haystack/core/models.py | 100 +
test_haystack/core/templates/404.html | 1 +
.../core/templates/base.html | 0
.../core/templates/search/indexes/bar.txt | 1 +
.../search/indexes/core/mockmodel_content.txt | 2 +
.../search/indexes/core/mockmodel_extra.txt | 2 +
.../search/indexes/core/mockmodel_template.txt | 2 +
.../search/indexes/core/mockmodel_text.txt | 2 +
.../core/templates/search/indexes/foo.txt | 1 +
test_haystack/core/templates/search/search.html | 1 +
test_haystack/core/templates/test_suggestion.html | 1 +
test_haystack/core/urls.py | 27 +
.../discovery}/__init__.py | 0
test_haystack/discovery/models.py | 21 +
test_haystack/discovery/search_indexes.py | 21 +
.../templates/search/indexes/bar_text.txt | 2 +
test_haystack/elasticsearch_tests/__init__.py | 22 +
.../test_elasticsearch_backend.py | 1503 ++++++
.../test_elasticsearch_query.py | 217 +
test_haystack/elasticsearch_tests/test_inputs.py | 85 +
test_haystack/mocks.py | 158 +
test_haystack/multipleindex/__init__.py | 23 +
test_haystack/multipleindex/models.py | 21 +
test_haystack/multipleindex/routers.py | 11 +
test_haystack/multipleindex/search_indexes.py | 37 +
test_haystack/multipleindex/tests.py | 323 ++
test_haystack/results_per_page_urls.py | 17 +
test_haystack/run_tests.py | 28 +
test_haystack/settings.py | 95 +
test_haystack/simple_tests/__init__.py | 4 +
test_haystack/simple_tests/search_indexes.py | 23 +
test_haystack/simple_tests/test_simple_backend.py | 154 +
test_haystack/simple_tests/test_simple_query.py | 42 +
test_haystack/solr_tests/__init__.py | 10 +
.../solr_tests/content_extraction/test.pdf | Bin 0 -> 48184 bytes
test_haystack/solr_tests/server/.gitignore | 1 +
.../solr_tests/server/get-solr-download-url.py | 53 +
test_haystack/solr_tests/server/schema.xml | 159 +
test_haystack/solr_tests/server/solrconfig.xml | 1754 +++++++
.../solr_tests/server/start-solr-test-server.sh | 58 +
test_haystack/solr_tests/server/wait-for-solr | 38 +
test_haystack/solr_tests/test_admin.py | 80 +
test_haystack/solr_tests/test_inputs.py | 89 +
.../solr_tests/test_management_commands.py | 250 +
test_haystack/solr_tests/test_solr_backend.py | 1443 ++++++
test_haystack/solr_tests/test_solr_query.py | 192 +
test_haystack/solr_tests/test_templatetags.py | 62 +
test_haystack/spatial/__init__.py | 8 +
.../spatial/fixtures/sample_spatial_data.json | 112 +
test_haystack/spatial/models.py | 32 +
test_haystack/spatial/search_indexes.py | 24 +
test_haystack/spatial/test_spatial.py | 190 +
test_haystack/test_altered_internal_names.py | 93 +
test_haystack/test_app_loading.py | 60 +
test_haystack/test_app_using_appconfig/__init__.py | 5 +
test_haystack/test_app_using_appconfig/apps.py | 8 +
.../migrations/0001_initial.py | 23 +
.../migrations}/__init__.py | 0
test_haystack/test_app_using_appconfig/models.py | 9 +
.../test_app_using_appconfig/search_indexes.py | 14 +
test_haystack/test_app_using_appconfig/tests.py | 17 +
test_haystack/test_app_with_hierarchy/__init__.py | 1 +
.../test_app_with_hierarchy/contrib}/__init__.py | 0
.../contrib/django}/__init__.py | 0
.../django/hierarchal_app_django}/__init__.py | 0
.../contrib/django/hierarchal_app_django/models.py | 12 +
.../test_app_without_models}/__init__.py | 0
test_haystack/test_app_without_models/urls.py | 11 +
test_haystack/test_app_without_models/views.py | 9 +
test_haystack/test_backends.py | 65 +
test_haystack/test_discovery.py | 56 +
test_haystack/test_fields.py | 706 +++
test_haystack/test_forms.py | 155 +
test_haystack/test_generic_views.py | 78 +
test_haystack/test_indexes.py | 685 +++
test_haystack/test_inputs.py | 86 +
test_haystack/test_loading.py | 352 ++
test_haystack/test_management_commands.py | 111 +
test_haystack/test_managers.py | 233 +
test_haystack/test_models.py | 185 +
test_haystack/test_query.py | 862 ++++
test_haystack/test_templatetags.py | 103 +
test_haystack/test_utils.py | 190 +
test_haystack/test_views.py | 283 ++
test_haystack/utils.py | 20 +
test_haystack/whoosh_tests/__init__.py | 4 +
test_haystack/whoosh_tests/test_forms.py | 37 +
test_haystack/whoosh_tests/test_inputs.py | 82 +
test_haystack/whoosh_tests/test_whoosh_backend.py | 1115 +++++
test_haystack/whoosh_tests/test_whoosh_query.py | 152 +
test_haystack/whoosh_tests/testcases.py | 46 +
tox.ini | 79 +
169 files changed, 19934 insertions(+), 1108 deletions(-)
create mode 100644 .gitchangelog.rc
create mode 100644 .github/issue_template.md
create mode 100644 .github/pull_request_template.md
create mode 100644 .gitignore
create mode 100644 .isort.cfg
create mode 100644 .travis.yml
copy docs/contributing.rst => CONTRIBUTING.md (52%)
delete mode 100644 PKG-INFO
delete mode 100644 django_haystack.egg-info/PKG-INFO
delete mode 100644 django_haystack.egg-info/SOURCES.txt
delete mode 100644 django_haystack.egg-info/dependency_links.txt
delete mode 100644 django_haystack.egg-info/not-zip-safe
delete mode 100644 django_haystack.egg-info/pbr.json
delete mode 100644 django_haystack.egg-info/requires.txt
delete mode 100644 django_haystack.egg-info/top_level.txt
create mode 100644 docs/changelog.rst
copy {haystack/management => example_project}/__init__.py (100%)
copy {haystack/management => example_project/bare_bones_app}/__init__.py (100%)
create mode 100644 example_project/bare_bones_app/models.py
create mode 100644 example_project/bare_bones_app/search_indexes.py
copy {haystack/management => example_project/regular_app}/__init__.py (100%)
create mode 100644 example_project/regular_app/models.py
create mode 100644 example_project/regular_app/search_indexes.py
create mode 100644 example_project/settings.py
create mode 100644 example_project/templates/search/indexes/bare_bones_app/cat_text.txt
create mode 100644 example_project/templates/search/indexes/regular_app/dog_text.txt
create mode 100644 haystack/apps.py
create mode 100644 test_haystack/__init__.py
copy {haystack/management => test_haystack/core}/__init__.py (100%)
create mode 100644 test_haystack/core/admin.py
create mode 100644 test_haystack/core/custom_identifier.py
create mode 100644 test_haystack/core/fixtures/base_data.json
create mode 100644 test_haystack/core/fixtures/bulk_data.json
create mode 100644 test_haystack/core/models.py
create mode 100644 test_haystack/core/templates/404.html
copy docs/_build/.gitignore => test_haystack/core/templates/base.html (100%)
create mode 100644 test_haystack/core/templates/search/indexes/bar.txt
create mode 100644 test_haystack/core/templates/search/indexes/core/mockmodel_content.txt
create mode 100644 test_haystack/core/templates/search/indexes/core/mockmodel_extra.txt
create mode 100644 test_haystack/core/templates/search/indexes/core/mockmodel_template.txt
create mode 100644 test_haystack/core/templates/search/indexes/core/mockmodel_text.txt
create mode 100644 test_haystack/core/templates/search/indexes/foo.txt
create mode 100644 test_haystack/core/templates/search/search.html
create mode 100644 test_haystack/core/templates/test_suggestion.html
create mode 100644 test_haystack/core/urls.py
copy {haystack/management => test_haystack/discovery}/__init__.py (100%)
create mode 100644 test_haystack/discovery/models.py
create mode 100644 test_haystack/discovery/search_indexes.py
create mode 100644 test_haystack/discovery/templates/search/indexes/bar_text.txt
create mode 100644 test_haystack/elasticsearch_tests/__init__.py
create mode 100644 test_haystack/elasticsearch_tests/test_elasticsearch_backend.py
create mode 100644 test_haystack/elasticsearch_tests/test_elasticsearch_query.py
create mode 100644 test_haystack/elasticsearch_tests/test_inputs.py
create mode 100644 test_haystack/mocks.py
create mode 100644 test_haystack/multipleindex/__init__.py
create mode 100644 test_haystack/multipleindex/models.py
create mode 100644 test_haystack/multipleindex/routers.py
create mode 100644 test_haystack/multipleindex/search_indexes.py
create mode 100644 test_haystack/multipleindex/tests.py
create mode 100644 test_haystack/results_per_page_urls.py
create mode 100755 test_haystack/run_tests.py
create mode 100644 test_haystack/settings.py
create mode 100644 test_haystack/simple_tests/__init__.py
create mode 100644 test_haystack/simple_tests/search_indexes.py
create mode 100644 test_haystack/simple_tests/test_simple_backend.py
create mode 100644 test_haystack/simple_tests/test_simple_query.py
create mode 100644 test_haystack/solr_tests/__init__.py
create mode 100644 test_haystack/solr_tests/content_extraction/test.pdf
create mode 100644 test_haystack/solr_tests/server/.gitignore
create mode 100755 test_haystack/solr_tests/server/get-solr-download-url.py
create mode 100644 test_haystack/solr_tests/server/schema.xml
create mode 100644 test_haystack/solr_tests/server/solrconfig.xml
create mode 100755 test_haystack/solr_tests/server/start-solr-test-server.sh
create mode 100755 test_haystack/solr_tests/server/wait-for-solr
create mode 100644 test_haystack/solr_tests/test_admin.py
create mode 100644 test_haystack/solr_tests/test_inputs.py
create mode 100644 test_haystack/solr_tests/test_management_commands.py
create mode 100644 test_haystack/solr_tests/test_solr_backend.py
create mode 100644 test_haystack/solr_tests/test_solr_query.py
create mode 100644 test_haystack/solr_tests/test_templatetags.py
create mode 100644 test_haystack/spatial/__init__.py
create mode 100644 test_haystack/spatial/fixtures/sample_spatial_data.json
create mode 100644 test_haystack/spatial/models.py
create mode 100644 test_haystack/spatial/search_indexes.py
create mode 100644 test_haystack/spatial/test_spatial.py
create mode 100644 test_haystack/test_altered_internal_names.py
create mode 100644 test_haystack/test_app_loading.py
create mode 100644 test_haystack/test_app_using_appconfig/__init__.py
create mode 100644 test_haystack/test_app_using_appconfig/apps.py
create mode 100644 test_haystack/test_app_using_appconfig/migrations/0001_initial.py
copy {haystack/management => test_haystack/test_app_using_appconfig/migrations}/__init__.py (100%)
create mode 100644 test_haystack/test_app_using_appconfig/models.py
create mode 100644 test_haystack/test_app_using_appconfig/search_indexes.py
create mode 100644 test_haystack/test_app_using_appconfig/tests.py
create mode 100644 test_haystack/test_app_with_hierarchy/__init__.py
copy {haystack/management => test_haystack/test_app_with_hierarchy/contrib}/__init__.py (100%)
copy {haystack/management => test_haystack/test_app_with_hierarchy/contrib/django}/__init__.py (100%)
copy {haystack/management => test_haystack/test_app_with_hierarchy/contrib/django/hierarchal_app_django}/__init__.py (100%)
create mode 100644 test_haystack/test_app_with_hierarchy/contrib/django/hierarchal_app_django/models.py
copy {haystack/management => test_haystack/test_app_without_models}/__init__.py (100%)
create mode 100644 test_haystack/test_app_without_models/urls.py
create mode 100644 test_haystack/test_app_without_models/views.py
create mode 100644 test_haystack/test_backends.py
create mode 100644 test_haystack/test_discovery.py
create mode 100644 test_haystack/test_fields.py
create mode 100644 test_haystack/test_forms.py
create mode 100644 test_haystack/test_generic_views.py
create mode 100644 test_haystack/test_indexes.py
create mode 100644 test_haystack/test_inputs.py
create mode 100644 test_haystack/test_loading.py
create mode 100644 test_haystack/test_management_commands.py
create mode 100644 test_haystack/test_managers.py
create mode 100644 test_haystack/test_models.py
create mode 100644 test_haystack/test_query.py
create mode 100644 test_haystack/test_templatetags.py
create mode 100644 test_haystack/test_utils.py
create mode 100644 test_haystack/test_views.py
create mode 100644 test_haystack/utils.py
create mode 100644 test_haystack/whoosh_tests/__init__.py
create mode 100644 test_haystack/whoosh_tests/test_forms.py
create mode 100644 test_haystack/whoosh_tests/test_inputs.py
create mode 100644 test_haystack/whoosh_tests/test_whoosh_backend.py
create mode 100644 test_haystack/whoosh_tests/test_whoosh_query.py
create mode 100644 test_haystack/whoosh_tests/testcases.py
create mode 100644 tox.ini
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-haystack.git
More information about the Python-modules-commits
mailing list