[Python-modules-commits] [python-django-crispy-forms] branch master updated (17683c8 -> 41ffe9e)
Michael Fladischer
fladi at moszumanska.debian.org
Wed Oct 14 11:05:03 UTC 2015
This is an automated email from the git hooks/post-receive script.
fladi pushed a change to branch master
in repository python-django-crispy-forms.
from 17683c8 Update Vcs fields for git migration
new c421d30 record new upstream branch created by importing python-django-crispy-forms_1.5.2.orig.tar.gz
new 344c077 Import python-django-crispy-forms_1.5.2.orig.tar.gz
new d4597ac remove remote resource references to avoid privacy issues
new 25f1329 merge patched into master
new 1d0590c Reformat packaging files with cme for better readability.
new eaa41ff Switch buildsystem to pybuild.
new 8589923 Add support for Python3.
new 92c5649 Move documentation to a separate package.
new 41ffe9e Update changelog.
The 9 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:
.coveragerc | 2 +
.editorconfig | 18 +
.gitignore | 1 +
.travis.yml | 37 +-
CHANGELOG.md | 74 +-
CONTRIBUTORS.txt | 20 +-
LICENSE.txt | 2 +-
MANIFEST.in | 2 +-
Makefile | 6 +-
README.rst | 5 +-
crispy_forms/__init__.py | 2 +-
crispy_forms/base.py | 43 +-
crispy_forms/bootstrap.py | 205 ++--
crispy_forms/compatibility.py | 33 +
crispy_forms/helper.py | 77 +-
crispy_forms/layout.py | 181 ++--
crispy_forms/layout_slice.py | 4 +-
crispy_forms/templates/bootstrap/display_form.html | 1 +
crispy_forms/templates/bootstrap/field.html | 16 +-
crispy_forms/templates/bootstrap/layout/alert.html | 4 +-
.../{uni_form => bootstrap}/layout/div.html | 2 +-
.../{uni_form => bootstrap}/layout/fieldset.html | 0
.../bootstrap/layout/prepended_appended_text.html | 4 +-
.../templates/bootstrap/table_inline_formset.html | 26 +-
crispy_forms/templates/bootstrap/uni_form.html | 13 +-
.../templates/bootstrap3/display_form.html | 1 +
crispy_forms/templates/bootstrap3/field.html | 30 +-
crispy_forms/templates/bootstrap3/field.html.bk | 49 -
.../templates/bootstrap3/field.strict.html | 31 -
crispy_forms/templates/bootstrap3/inputs.html | 13 +
.../templates/bootstrap3/layout/alert.html | 4 +
.../bootstrap3/layout/checkboxselectmultiple.html | 5 +-
.../{uni_form => bootstrap3}/layout/div.html | 2 +-
.../{uni_form => bootstrap3}/layout/fieldset.html | 0
.../templates/bootstrap3/layout/formactions.html | 10 +-
.../templates/bootstrap3/layout/inline_field.html | 2 +-
.../bootstrap3/layout/prepended_appended_text.html | 14 +-
.../templates/bootstrap3/layout/radioselect.html | 4 +-
.../bootstrap3/layout/radioselect_inline.html | 2 +-
.../templates/bootstrap3/table_inline_formset.html | 33 +-
crispy_forms/templates/bootstrap3/uni_form.html | 13 +-
.../templates/bootstrap3/whole_uni_form.html | 9 +-
crispy_forms/templates/uni_form/display_form.html | 1 +
.../templates/uni_form/layout/baseinput.html | 16 +-
crispy_forms/templates/uni_form/layout/div.html | 2 +-
crispy_forms/templates/uni_form/multifield.html | 2 +-
crispy_forms/templates/uni_form/uni_form.html | 1 +
crispy_forms/templatetags/crispy_forms_field.py | 40 +-
crispy_forms/templatetags/crispy_forms_filters.py | 13 +-
crispy_forms/templatetags/crispy_forms_tags.py | 72 +-
crispy_forms/templatetags/crispy_forms_utils.py | 47 +-
crispy_forms/tests/__init__.py | 5 -
crispy_forms/tests/base.py | 35 -
crispy_forms/tests/compatibility.py | 9 +
crispy_forms/tests/conftest.py | 42 +
crispy_forms/tests/forms.py | 33 +-
crispy_forms/tests/runtests.py | 15 -
crispy_forms/tests/runtests_bootstrap.py | 32 -
crispy_forms/tests/runtests_bootstrap3.py | 33 -
crispy_forms/tests/runtests_uniform.py | 29 -
crispy_forms/tests/test_dynamic_api.py | 1017 +++++++++----------
crispy_forms/tests/test_form_helper.py | 1023 ++++++++++---------
crispy_forms/tests/test_layout.py | 1025 ++++++++++----------
crispy_forms/tests/test_layout_objects.py | 411 ++++----
crispy_forms/tests/test_settings.py | 22 +-
crispy_forms/tests/test_tags.py | 231 ++---
crispy_forms/tests/urls.py | 12 +-
crispy_forms/tests/utils.py | 68 --
crispy_forms/utils.py | 63 +-
debian/.git-dpm | 14 +-
debian/changelog | 16 +
debian/control | 67 +-
debian/docs | 3 -
.../patches/001_fix_django1_6_incompatbility.patch | 27 -
debian/patches/no-remote-resources.patch | 3 +-
debian/patches/series | 1 -
...ase => python-django-crispy-forms-doc.doc-base} | 6 +-
debian/python-django-crispy-forms-doc.docs | 1 +
debian/python-django-crispy-forms.docs | 2 +
debian/python3-django-crispy-forms.docs | 2 +
debian/rules | 9 +-
docs/.DS_Store | Bin 6148 -> 0 bytes
docs/contributing.rst | 5 +-
docs/crispy_tag_forms.rst | 34 +-
docs/crispy_tag_formsets.rst | 10 +-
docs/dynamic_layouts.rst | 10 +-
docs/faq.rst | 6 +-
docs/form_helper.rst | 15 +-
docs/index.rst | 1 +
docs/install.rst | 6 +-
docs/template_packs.rst | 70 ++
requirements.txt | 8 +-
setup.py | 24 +-
tox.ini | 14 +
94 files changed, 2978 insertions(+), 2675 deletions(-)
create mode 100644 .coveragerc
create mode 100644 .editorconfig
copy crispy_forms/templates/{uni_form => bootstrap}/layout/div.html (85%)
copy crispy_forms/templates/{uni_form => bootstrap}/layout/fieldset.html (100%)
delete mode 100644 crispy_forms/templates/bootstrap3/field.html.bk
delete mode 100644 crispy_forms/templates/bootstrap3/field.strict.html
create mode 100644 crispy_forms/templates/bootstrap3/inputs.html
create mode 100644 crispy_forms/templates/bootstrap3/layout/alert.html
copy crispy_forms/templates/{uni_form => bootstrap3}/layout/div.html (85%)
copy crispy_forms/templates/{uni_form => bootstrap3}/layout/fieldset.html (100%)
delete mode 100644 crispy_forms/tests/base.py
create mode 100644 crispy_forms/tests/compatibility.py
create mode 100644 crispy_forms/tests/conftest.py
delete mode 100755 crispy_forms/tests/runtests.py
delete mode 100755 crispy_forms/tests/runtests_bootstrap.py
delete mode 100755 crispy_forms/tests/runtests_bootstrap3.py
delete mode 100755 crispy_forms/tests/runtests_uniform.py
delete mode 100644 crispy_forms/tests/utils.py
delete mode 100644 debian/docs
delete mode 100644 debian/patches/001_fix_django1_6_incompatbility.patch
rename debian/{python-django-crispy-forms.doc-base => python-django-crispy-forms-doc.doc-base} (52%)
create mode 100644 debian/python-django-crispy-forms-doc.docs
create mode 100644 debian/python-django-crispy-forms.docs
create mode 100644 debian/python3-django-crispy-forms.docs
delete mode 100644 docs/.DS_Store
create mode 100644 docs/template_packs.rst
create mode 100644 tox.ini
--
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