[Python-modules-commits] [django-filter] branch upstream updated (99b05f1 -> db8ca74)
Brian May
bam at moszumanska.debian.org
Sun Jul 2 21:42:47 UTC 2017
This is an automated email from the git hooks/post-receive script.
bam pushed a change to branch upstream
in repository django-filter.
from 99b05f1 Import django-filter_0.13.0.orig.tar.gz
new db8ca74 New upstream version 1.0.4
The 1 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:
CHANGES.rst | 135 ++
MANIFEST.in | 5 +-
PKG-INFO | 79 +-
README.rst | 67 +-
django_filter.egg-info/PKG-INFO | 79 +-
django_filter.egg-info/SOURCES.txt | 46 +-
django_filters/__init__.py | 10 +-
django_filters/compat.py | 54 +
django_filters/conf.py | 118 ++
django_filters/constants.py | 24 +
django_filters/exceptions.py | 9 +
django_filters/fields.py | 38 +-
django_filters/filters.py | 454 +++++--
django_filters/filterset.py | 522 ++++----
django_filters/locale/es_ES/LC_MESSAGES/django.mo | Bin 0 -> 2247 bytes
django_filters/locale/es_ES/LC_MESSAGES/django.po | 185 +++
django_filters/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 864 bytes
.../locale/{de => ru}/LC_MESSAGES/django.po | 24 +-
django_filters/rest_framework/__init__.py | 5 +
django_filters/rest_framework/backends.py | 104 ++
django_filters/rest_framework/filters.py | 10 +
django_filters/rest_framework/filterset.py | 51 +
.../django_filters/rest_framework/crispy_form.html | 5 +
.../django_filters/rest_framework/form.html | 6 +
.../django_filters/widgets/multiwidget.html | 1 +
django_filters/utils.py | 219 +++-
django_filters/views.py | 9 +-
django_filters/widgets.py | 88 +-
docs/assets/form.png | Bin 0 -> 13678 bytes
docs/conf.py | 16 +-
docs/dev/tests.txt | 67 +
docs/guide/install.txt | 34 +
docs/guide/migration.txt | 197 +++
docs/guide/rest_framework.txt | 189 +++
docs/guide/tips.txt | 246 ++++
docs/{ => guide}/usage.txt | 202 +--
docs/index.txt | 20 +-
docs/install.txt | 8 -
docs/ref/fields.txt | 9 +-
docs/ref/filters.txt | 366 +++++-
docs/ref/filterset.txt | 199 +--
docs/ref/settings.txt | 102 +-
docs/ref/widgets.txt | 21 +-
docs/tests.txt | 56 -
requirements/maintainer.txt | 7 +-
requirements/test-ci.txt | 7 +
requirements/test.txt | 7 +-
requirements/travis-ci.txt | 3 -
runshell.py | 7 +-
setup.cfg | 2 +-
setup.py | 21 +-
tests/__init__.pyc | Bin 156 -> 0 bytes
tests/models.py | 40 +-
tests/models.pyc | Bin 9899 -> 0 bytes
tests/rest_framework/__init__.py | 1 +
tests/rest_framework/apps.py | 8 +
tests/rest_framework/models.py | 28 +
.../rest_framework/templates/filter_template.html | 1 +
tests/rest_framework/test_backends.py | 206 +++
tests/rest_framework/test_filters.py | 15 +
tests/rest_framework/test_filterset.py | 45 +
tests/rest_framework/test_integration.py | 401 ++++++
tests/settings.py | 23 +-
tests/tags | 1339 ++++++++++++++++++++
tests/test_conf.py | 142 +++
tests/test_fields.py | 66 +-
tests/test_fields.pyc | Bin 7374 -> 0 bytes
tests/test_filtering.py | 597 ++++++---
tests/test_filtering.pyc | Bin 85692 -> 0 bytes
tests/test_filters.py | 595 +++++++--
tests/test_filters.pyc | Bin 37952 -> 0 bytes
tests/test_filterset.py | 481 ++++---
tests/test_filterset.pyc | Bin 44817 -> 0 bytes
tests/test_forms.py | 177 +--
tests/test_forms.pyc | Bin 19175 -> 0 bytes
tests/test_utils.py | 224 +++-
tests/test_views.py | 30 +
tests/test_views.pyc | Bin 4760 -> 0 bytes
tests/test_widgets.py | 155 ++-
tests/test_widgets.pyc | Bin 6252 -> 0 bytes
tests/urls.py | 4 +-
tests/urls.pyc | Bin 635 -> 0 bytes
82 files changed, 7242 insertions(+), 1469 deletions(-)
create mode 100644 django_filters/conf.py
create mode 100644 django_filters/constants.py
create mode 100644 django_filters/exceptions.py
create mode 100644 django_filters/locale/es_ES/LC_MESSAGES/django.mo
create mode 100644 django_filters/locale/es_ES/LC_MESSAGES/django.po
create mode 100644 django_filters/locale/ru/LC_MESSAGES/django.mo
copy django_filters/locale/{de => ru}/LC_MESSAGES/django.po (60%)
create mode 100644 django_filters/rest_framework/__init__.py
create mode 100644 django_filters/rest_framework/backends.py
create mode 100644 django_filters/rest_framework/filters.py
create mode 100644 django_filters/rest_framework/filterset.py
create mode 100644 django_filters/templates/django_filters/rest_framework/crispy_form.html
create mode 100644 django_filters/templates/django_filters/rest_framework/form.html
create mode 100644 django_filters/templates/django_filters/widgets/multiwidget.html
create mode 100644 docs/assets/form.png
create mode 100644 docs/dev/tests.txt
create mode 100644 docs/guide/install.txt
create mode 100644 docs/guide/migration.txt
create mode 100644 docs/guide/rest_framework.txt
create mode 100644 docs/guide/tips.txt
rename docs/{ => guide}/usage.txt (63%)
delete mode 100644 docs/install.txt
delete mode 100644 docs/tests.txt
create mode 100644 requirements/test-ci.txt
delete mode 100644 requirements/travis-ci.txt
delete mode 100644 tests/__init__.pyc
delete mode 100644 tests/models.pyc
create mode 100644 tests/rest_framework/__init__.py
create mode 100644 tests/rest_framework/apps.py
create mode 100644 tests/rest_framework/models.py
create mode 100644 tests/rest_framework/templates/filter_template.html
create mode 100644 tests/rest_framework/test_backends.py
create mode 100644 tests/rest_framework/test_filters.py
create mode 100644 tests/rest_framework/test_filterset.py
create mode 100644 tests/rest_framework/test_integration.py
create mode 100644 tests/tags
create mode 100644 tests/test_conf.py
delete mode 100644 tests/test_fields.pyc
delete mode 100644 tests/test_filtering.pyc
delete mode 100644 tests/test_filters.pyc
delete mode 100644 tests/test_filterset.pyc
delete mode 100644 tests/test_forms.pyc
delete mode 100644 tests/test_views.pyc
delete mode 100644 tests/test_widgets.pyc
delete mode 100644 tests/urls.pyc
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-filter.git
More information about the Python-modules-commits
mailing list