django-floppyforms-1.6.0/ 0000775 0000000 0000000 00000000000 12630134626 0015341 5 ustar 00root root 0000000 0000000 django-floppyforms-1.6.0/.gitignore 0000664 0000000 0000000 00000000125 12630134626 0017327 0 ustar 00root root 0000000 0000000 django_floppyforms.egg-info dist build docs/_build .coverage .tox/ *.pyc __pycache__ django-floppyforms-1.6.0/.travis.yml 0000664 0000000 0000000 00000002555 12630134626 0017461 0 ustar 00root root 0000000 0000000 language: python python: 2.7 env: - TOXENV=py26-14 - TOXENV=py26-15 - TOXENV=py26-16 - TOXENV=py27-14 - TOXENV=py27-15 - TOXENV=py27-16 - TOXENV=py27-17 - TOXENV=py27-18 - TOXENV=py27-19 - TOXENV=py32-15 - TOXENV=py32-16 - TOXENV=py32-17 - TOXENV=py32-18 - TOXENV=py32-18 - TOXENV=py33-15 - TOXENV=py33-16 - TOXENV=py33-17 - TOXENV=py33-18 - TOXENV=py34-15 - TOXENV=py34-16 - TOXENV=py34-17 - TOXENV=py34-18 - TOXENV=py34-19 - TOXENV=pypy-14 - TOXENV=pypy-15 - TOXENV=pypy-16 - TOXENV=pypy-17 - TOXENV=pypy-18 - TOXENV=pypy-19 - TOXENV=docs - TOXENV=flake8 before_install: - sudo apt-get -q -y update # The following three lines is a fix for travis CI, since it wouldn't be # able to install the dependencies correctly. # See: https://github.com/travis-ci/travis-ci/issues/2683 - sudo mv /etc/apt/sources.list.d/pgdg-source.list* /tmp - sudo apt-get remove -q -y binutils gdal-bin libproj-dev libgeos-c1 - sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable # Required to install Pillow - sudo apt-get -q -y install build-essential # GIS requirements. - sudo apt-get -q -y install binutils gdal-bin libproj-dev libgeos-c1 install: - pip install tox script: - tox notifications: irc: channels: - "irc.freenode.org#django-floppyforms" on_success: change on_failure: always django-floppyforms-1.6.0/CHANGES.rst 0000664 0000000 0000000 00000016261 12630134626 0017151 0 ustar 00root root 0000000 0000000 Changelog --------- 1.6.0 ~~~~~ * `#160`_: Django 1.9 support! Thanks to Jonas Haag for the patch. .. _#160: https://github.com/gregmuellegger/django-floppyforms/pull/160 1.5.2 ~~~~~ * `#156`_: The ``min``, ``max``, ``step`` attributes for ``DecimalField`` and ``FloatField`` were localized which can result in invalid values (rendering ``0.01`` as ``0,01`` in respective locales). Those attributes won't get localized anymore. Thanks to Yannick Chabbert for the fix. .. _#156: https://github.com/gregmuellegger/django-floppyforms/pull/156 1.5.1 ~~~~~ * `FloatField`` now fills in ``min``, ``max``, and ``step`` attributes to match the behaviour of `DecimalField`. Leaving out the ``step`` attribute would result in widgets that only allow integers to be filled in (HTML 5 default for ``step`` is ``1``). 1.5.0 ~~~~~ * `#148`_: Added support for custom ``label_suffix`` arguments in forms and fields. * The contents in ``floppyforms/input.html`` is now wrapped in a ``{% block content %}`` for easier extending. * `#70`_: `DecimalField`` now fills in ``min``, ``max``, and ``step`` attributes for better client side validation. Use the ``novalidate`` attribute on your ``