[Python-modules-commits] [flask-restful] branch master updated (d73a2df -> f647a78)
Alexandre Viau
reazem-guest at moszumanska.debian.org
Fri Jul 31 20:14:53 UTC 2015
This is an automated email from the git hooks/post-receive script.
reazem-guest pushed a change to branch master
in repository flask-restful.
from d73a2df typo: "flask" -> "Flask"
new 9cd4f88 control: build-depends-indep + reorder
new 8719e17 re-enable tests
new bb09837 Imported Upstream version 0.3.4
new df00138 Merge tag 'upstream/0.3.4'
new c05d9bc changelog: 0.3.4-1
new a184041 fix tests
new f647a78 Updated homepage + deps
The 7 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:
AUTHORS.md | 103 ++++
CHANGES.md | 279 ++++++++++
CONTRIBUTING.md | 18 +
Flask_RESTful.egg-info/PKG-INFO | 14 +-
Flask_RESTful.egg-info/SOURCES.txt | 43 +-
Flask_RESTful.egg-info/requires.txt | 2 +-
LICENSE | 25 +
MANIFEST.in | 12 +
Makefile | 195 +++++++
PKG-INFO | 14 +-
README.md | 13 +
debian/changelog | 2 +-
debian/control | 41 +-
debian/rules | 6 +-
docs/Makefile | 153 ++++++
docs/_static/flask-restful-small.png | Bin 0 -> 20913 bytes
docs/_static/flask-restful.png | Bin 0 -> 17865 bytes
docs/_templates/sidebarintro.html | 14 +
docs/_templates/sidebarlogo.html | 4 +
docs/api.rst | 47 ++
docs/conf.py | 263 ++++++++++
docs/contents.rst.inc | 39 ++
docs/extending.rst | 234 +++++++++
docs/fields.rst | 243 +++++++++
docs/index.rst | 13 +
docs/installation.rst | 27 +
docs/intermediate-usage.rst | 278 ++++++++++
docs/make.bat | 190 +++++++
docs/quickstart.rst | 363 +++++++++++++
docs/reqparse.rst | 190 +++++++
docs/testing.rst | 31 ++
examples/todo.py | 59 +++
examples/todo_simple.py | 43 ++
examples/xml_representation.py | 35 ++
flask_restful/__init__.py | 288 ++++++++---
flask_restful/fields.py | 192 +++++--
flask_restful/{types.py => inputs.py} | 103 +++-
flask_restful/representations/json.py | 19 +-
flask_restful/reqparse.py | 246 ++++++---
flask_restful/utils/__init__.py | 15 +-
flask_restful/utils/cors.py | 11 +-
flask_restful/utils/crypto.py | 6 +
flask_restful/utils/ordereddict.py | 130 -----
setup.cfg | 3 +
setup.py | 32 +-
tests/README.md | 5 +
tests/__init__.py | 17 +
tests/requirements.txt | 4 +
tests/test_accept.py | 222 ++++++++
tests/test_api.py | 940 ++++++++++++++++++++++++++++++++++
tests/test_api_with_blueprint.py | 192 +++++++
tests/test_cors.py | 63 +++
tests/test_crypto.py | 10 +
tests/test_fields.py | 496 ++++++++++++++++++
tests/test_inputs.py | 402 +++++++++++++++
tests/test_paging.py | 27 +
tests/test_reqparse.py | 846 ++++++++++++++++++++++++++++++
57 files changed, 6880 insertions(+), 382 deletions(-)
create mode 100644 AUTHORS.md
create mode 100644 CHANGES.md
create mode 100644 CONTRIBUTING.md
create mode 100644 LICENSE
create mode 100644 MANIFEST.in
create mode 100644 Makefile
create mode 100644 README.md
create mode 100644 docs/Makefile
create mode 100644 docs/_static/flask-restful-small.png
create mode 100644 docs/_static/flask-restful.png
create mode 100644 docs/_templates/sidebarintro.html
create mode 100644 docs/_templates/sidebarlogo.html
create mode 100644 docs/api.rst
create mode 100644 docs/conf.py
create mode 100644 docs/contents.rst.inc
create mode 100644 docs/extending.rst
create mode 100644 docs/fields.rst
create mode 100644 docs/index.rst
create mode 100644 docs/installation.rst
create mode 100644 docs/intermediate-usage.rst
create mode 100644 docs/make.bat
create mode 100644 docs/quickstart.rst
create mode 100644 docs/reqparse.rst
create mode 100644 docs/testing.rst
create mode 100644 examples/todo.py
create mode 100644 examples/todo_simple.py
create mode 100644 examples/xml_representation.py
rename flask_restful/{types.py => inputs.py} (70%)
delete mode 100644 flask_restful/utils/ordereddict.py
create mode 100644 tests/README.md
create mode 100644 tests/__init__.py
create mode 100644 tests/requirements.txt
create mode 100644 tests/test_accept.py
create mode 100644 tests/test_api.py
create mode 100644 tests/test_api_with_blueprint.py
create mode 100644 tests/test_cors.py
create mode 100644 tests/test_crypto.py
create mode 100644 tests/test_fields.py
create mode 100644 tests/test_inputs.py
create mode 100644 tests/test_paging.py
create mode 100644 tests/test_reqparse.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/flask-restful.git
More information about the Python-modules-commits
mailing list