[Python-modules-commits] [python-django-crispy-forms] branch upstream updated (344c077 -> 8d1af35)
Michael Fladischer
fladi at moszumanska.debian.org
Fri Jan 15 11:31:35 UTC 2016
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch upstream
in repository python-django-crispy-forms.
from 344c077 Import python-django-crispy-forms_1.5.2.orig.tar.gz
adds 8d1af35 Import python-django-crispy-forms_1.6.0.orig.tar.gz
No new revisions were added by this update.
Summary of changes:
.gitignore | 5 +
.travis.yml | 21 ++--
CHANGELOG.md | 8 ++
crispy_forms/__init__.py | 2 +-
crispy_forms/bootstrap.py | 45 ++++----
crispy_forms/compatibility.py | 14 +--
crispy_forms/helper.py | 17 ++-
crispy_forms/layout.py | 21 ++--
crispy_forms/templates/bootstrap/display_form.html | 2 +-
crispy_forms/templates/bootstrap/uni_form.html | 2 +-
.../templates/bootstrap3/display_form.html | 2 +-
.../layout/buttonholder.html | 0
crispy_forms/templates/bootstrap3/uni_form.html | 2 +-
.../accordion-group.html | 0
.../{bootstrap3 => bootstrap4}/accordion.html | 0
.../{uni_form => bootstrap4}/betterform.html | 2 +-
.../templates/bootstrap4/display_form.html | 9 ++
.../{bootstrap3 => bootstrap4}/errors.html | 0
.../{bootstrap3 => bootstrap4}/errors_formset.html | 0
.../{bootstrap3 => bootstrap4}/field.html | 12 +-
.../{bootstrap3 => bootstrap4}/inputs.html | 4 +-
.../{bootstrap => bootstrap4}/layout/alert.html | 0
.../layout/baseinput.html | 0
.../{bootstrap => bootstrap4}/layout/button.html | 0
.../layout/buttonholder.html | 0
.../layout/checkboxselectmultiple.html | 7 +-
.../layout/checkboxselectmultiple_inline.html | 4 +-
.../{bootstrap => bootstrap4}/layout/div.html | 0
.../layout/field_errors.html | 0
.../layout/field_errors_block.html | 0
.../layout/field_with_buttons.html | 4 +-
.../{bootstrap => bootstrap4}/layout/fieldset.html | 0
.../layout/formactions.html | 2 +-
.../layout/help_text.html | 0
.../bootstrap4/layout/help_text_and_errors.html | 13 +++
.../layout/inline_field.html | 0
.../layout/multifield.html | 0
.../layout/prepended_appended_text.html | 4 +-
.../layout/radioselect.html | 7 +-
.../layout/radioselect_inline.html | 4 +-
.../{bootstrap => bootstrap4}/layout/tab-link.html | 0
.../{bootstrap3 => bootstrap4}/layout/tab.html | 0
.../layout/uneditable_input.html | 4 +-
.../table_inline_formset.html | 8 +-
.../{bootstrap => bootstrap4}/uni_form.html | 6 +-
.../{uni_form => bootstrap4}/uni_formset.html | 4 +-
.../{bootstrap3 => bootstrap4}/whole_uni_form.html | 4 +-
.../whole_uni_formset.html | 6 +-
crispy_forms/templates/uni_form/display_form.html | 2 +-
crispy_forms/templates/uni_form/uni_form.html | 2 +-
crispy_forms/templatetags/crispy_forms_field.py | 6 +-
crispy_forms/templatetags/crispy_forms_filters.py | 15 ++-
crispy_forms/templatetags/crispy_forms_tags.py | 7 +-
crispy_forms/tests/conftest.py | 6 +-
crispy_forms/tests/forms.py | 6 +
crispy_forms/tests/test_form_helper.py | 122 +++++++++++++++++++--
crispy_forms/tests/test_layout.py | 97 ++++++++--------
crispy_forms/tests/test_layout_objects.py | 33 +++++-
crispy_forms/tests/test_settings.py | 22 ++++
crispy_forms/tests/test_tags.py | 74 ++++++++++++-
crispy_forms/tests/test_utils.py | 39 +++++++
crispy_forms/tests/urls.py | 7 +-
crispy_forms/utils.py | 44 ++++++++
docs/crispy_tag_forms.rst | 11 +-
docs/form_helper.rst | 3 +
docs/install.rst | 4 +-
requirements.txt | 3 +-
tox.ini | 7 +-
68 files changed, 564 insertions(+), 191 deletions(-)
copy crispy_forms/templates/{uni_form => bootstrap3}/layout/buttonholder.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/accordion-group.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/accordion.html (100%)
copy crispy_forms/templates/{uni_form => bootstrap4}/betterform.html (91%)
create mode 100644 crispy_forms/templates/bootstrap4/display_form.html
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/errors.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/errors_formset.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/field.html (73%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/inputs.html (74%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/alert.html (100%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/baseinput.html (100%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/button.html (100%)
copy crispy_forms/templates/{uni_form => bootstrap4}/layout/buttonholder.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/checkboxselectmultiple.html (79%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/checkboxselectmultiple_inline.html (62%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/div.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/field_errors.html (100%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/field_errors_block.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/field_with_buttons.html (71%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/fieldset.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/formactions.html (87%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/help_text.html (100%)
create mode 100644 crispy_forms/templates/bootstrap4/layout/help_text_and_errors.html
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/inline_field.html (100%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/multifield.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/prepended_appended_text.html (86%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/radioselect.html (79%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/radioselect_inline.html (57%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/layout/tab-link.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/tab.html (100%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/layout/uneditable_input.html (60%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/table_inline_formset.html (88%)
copy crispy_forms/templates/{bootstrap => bootstrap4}/uni_form.html (53%)
copy crispy_forms/templates/{uni_form => bootstrap4}/uni_formset.html (59%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/whole_uni_form.html (80%)
copy crispy_forms/templates/{bootstrap3 => bootstrap4}/whole_uni_formset.html (80%)
create mode 100644 crispy_forms/tests/test_utils.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-crispy-forms.git
More information about the Python-modules-commits
mailing list