[Python-modules-commits] [django-tables] 02/04: Merge tag 'upstream/1.9.0' into debian/master
Brian May
bam at moszumanska.debian.org
Sun Jun 25 08:49:38 UTC 2017
This is an automated email from the git hooks/post-receive script.
bam pushed a commit to branch debian/master
in repository django-tables.
commit ff5ce186997df2548188934dc66f70ac912a3e9c
Merge: d0e1215 eb10626
Author: Brian May <bam at debian.org>
Date: Sun Jun 25 18:34:48 2017 +1000
Merge tag 'upstream/1.9.0' into debian/master
Upstream version 1.9.0
.gitignore | 3 +
.isort.cfg | 5 +
.travis.yml | 35 +-
CHANGELOG.md | 502 +++++++++---------
CONTRIBUTING.md | 6 +-
README.rst | 27 +-
django_tables2/__init__.py | 22 +-
django_tables2/columns/__init__.py | 8 +
django_tables2/columns/base.py | 483 ++++++++++-------
django_tables2/columns/booleancolumn.py | 52 +-
django_tables2/columns/checkboxcolumn.py | 35 +-
django_tables2/columns/datecolumn.py | 19 +-
django_tables2/columns/datetimecolumn.py | 19 +-
django_tables2/columns/emailcolumn.py | 27 +-
django_tables2/columns/filecolumn.py | 50 +-
django_tables2/columns/jsoncolumn.py | 61 +++
django_tables2/columns/linkcolumn.py | 98 ++--
django_tables2/columns/templatecolumn.py | 26 +-
django_tables2/columns/timecolumn.py | 17 +-
django_tables2/columns/urlcolumn.py | 19 +-
django_tables2/config.py | 39 +-
django_tables2/data.py | 219 ++++++++
django_tables2/export/TODO.md | 10 +
django_tables2/export/__init__.py | 5 +
django_tables2/export/export.py | 91 ++++
django_tables2/export/views.py | 28 +
django_tables2/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 679 bytes
django_tables2/locale/nb/LC_MESSAGES/django.po | 47 ++
django_tables2/models.py | 2 -
django_tables2/rows.py | 247 ++++++---
django_tables2/tables.py | 577 ++++++++++-----------
.../django_tables2/bootstrap-responsive.html | 15 +
.../templates/django_tables2/bootstrap.html | 89 ++--
.../templates/django_tables2/semantic.html | 82 +++
django_tables2/templates/django_tables2/table.html | 22 +-
django_tables2/templatetags/django_tables2.py | 90 ++--
django_tables2/utils.py | 325 +++++++-----
django_tables2/views.py | 206 +++++---
docs/conf.py | 34 +-
docs/img/bootstrap.png | Bin 0 -> 53274 bytes
docs/img/example.png | Bin 0 -> 18698 bytes
docs/img/semantic.png | Bin 0 -> 45388 bytes
docs/index.rst | 67 ++-
docs/pages/accessors.rst | 29 --
docs/pages/api-reference.rst | 295 ++++++-----
docs/pages/builtin-columns.rst | 3 +-
docs/pages/column-attributes.rst | 40 +-
docs/pages/column-headers-and-footers.rst | 153 ++++++
docs/pages/column-headers.rst | 38 --
.../{custom-rendering.rst => custom-data.rst} | 89 ++--
docs/pages/custom-rendering.rst | 112 +---
docs/pages/export.rst | 53 ++
docs/pages/faq.rst | 125 +++++
docs/pages/filtering.rst | 19 +
docs/pages/generic-mixins.rst | 57 +-
docs/pages/installation.rst | 11 +
docs/pages/internal.rst | 56 ++
docs/pages/localization-control.rst | 14 +-
docs/pages/order-by-accessors.rst | 47 --
docs/pages/ordering.rst | 121 +++++
docs/pages/pagination.rst | 8 +-
docs/pages/performance.rst | 12 +
docs/pages/pinned-rows.rst | 68 +++
docs/pages/query-string-fields.rst | 11 +-
docs/pages/reference.rst | 8 +
docs/pages/table-data.rst | 59 ++-
docs/pages/tables-for-models.rst | 33 --
docs/pages/template-filters.rst | 19 -
docs/pages/template-tags.rst | 2 +-
docs/pages/tutorial.rst | 40 +-
docs/pages/upgrade-changelog.rst | 12 +
docs/pages/upgrading-from-v1.rst | 2 +-
docs/requirements.txt | 5 +
example/README.md | 16 +
example/README.rst | 6 -
example/app/admin.py | 3 +
example/app/filters.py | 12 +
example/app/fixtures/initial_data.json | 11 -
example/app/migrations/0001_initial.py | 41 --
example/app/migrations/0002_person_country.py | 21 -
example/app/models.py | 17 +-
example/app/tables.py | 22 +-
example/app/tests.py | 17 -
example/app/views.py | 118 ++++-
example/requirements.pip | 4 +-
example/settings.py | 8 +-
example/templates/base.html | 6 +-
example/templates/bootstrap_template.html | 16 +-
example/templates/class_based.html | 2 +-
example/templates/index.html | 35 ++
example/templates/multiTable.html | 25 +
example/templates/semantic_template.html | 16 +
example/templates/tutorial.html | 4 +-
example/urls.py | 15 +-
requirements/common.pip | 2 +-
requirements/django-dev.pip | 3 +-
setup.py | 3 +-
tests/app/locale/ua/LC_MESSAGES/django.mo | Bin 0 -> 291 bytes
tests/app/locale/ua/LC_MESSAGES/django.po | 11 +
tests/app/models.py | 58 ++-
tests/app/templates/multiple.html | 6 +
tests/app/templates/test_template_column.html | 2 +-
tests/app/views.py | 5 +-
tests/columns/test_booleancolumn.py | 49 +-
tests/columns/test_datecolumn.py | 21 +-
tests/columns/test_datetimecolumn.py | 24 +-
tests/columns/test_emailcolumn.py | 8 +
tests/columns/test_filecolumn.py | 23 +-
tests/columns/test_general.py | 118 ++++-
tests/columns/test_jsoncolumn.py | 56 ++
tests/columns/test_linkcolumn.py | 78 ++-
tests/columns/test_templatecolumn.py | 41 +-
tests/columns/test_timecolumn.py | 12 +-
tests/columns/test_urlcolumn.py | 9 +
.../app/migrations => tests/export}/__init__.py | 0
tests/export/test_export.py | 135 +++++
tests/test_config.py | 54 +-
tests/test_core.py | 368 ++++++-------
tests/test_data.py | 38 ++
tests/test_dynamically_add_show_hide_columns.py | 131 +++++
tests/test_faq.py | 71 +++
tests/test_footer.py | 68 +++
tests/test_models.py | 182 +++++--
tests/test_ordering.py | 313 +++++++++++
tests/test_pinned_rows.py | 183 +++++++
tests/test_rows.py | 111 ++++
tests/test_tabledata.py | 108 ++++
tests/test_templates.py | 72 ++-
tests/test_templatetags.py | 86 +--
tests/test_utils.py | 25 +-
tests/test_views.py | 246 ++++++++-
tests/utils.py | 50 +-
tox.ini | 31 +-
133 files changed, 5978 insertions(+), 2488 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/django-tables.git
More information about the Python-modules-commits
mailing list