[Python-modules-commits] [flask] 02/03: record new upstream branch created by importing flask_0.12.orig.tar.gz and merge it

Ondřej Nový onovy at moszumanska.debian.org
Sun Dec 25 14:05:05 UTC 2016


This is an automated email from the git hooks/post-receive script.

onovy pushed a commit to branch master
in repository flask.

commit af4f6fd13cada07c43b630fc3280bb1a1d7b08e1
Merge: fe4ef73 5219a1a
Author: Ondřej Nový <onovy at debian.org>
Date:   Sun Dec 25 14:58:29 2016 +0100

    record new upstream branch created by importing flask_0.12.orig.tar.gz and merge it

 AUTHORS                                            |   1 +
 CHANGES                                            |  32 ++-
 Flask.egg-info/PKG-INFO                            |   4 +-
 Flask.egg-info/SOURCES.txt                         |  48 ++--
 Flask.egg-info/requires.txt                        |   2 +-
 Makefile                                           |   6 +-
 PKG-INFO                                           |   4 +-
 README                                             |   2 +
 debian/.git-dpm                                    |  14 +-
 docs/advanced_foreword.rst                         |  22 +-
 docs/api.rst                                       |   8 +-
 docs/appcontext.rst                                |   5 +
 docs/becomingbig.rst                               |   4 +-
 docs/blueprints.rst                                |  21 +-
 docs/cli.rst                                       |  20 +-
 docs/conf.py                                       |  78 +++---
 docs/config.rst                                    |   5 +-
 docs/deploying/index.rst                           |   2 +
 docs/deploying/mod_wsgi.rst                        |   8 +-
 docs/deploying/uwsgi.rst                           |   2 +-
 docs/deploying/wsgi-standalone.rst                 |   4 +-
 docs/errorhandling.rst                             |  13 +-
 docs/extensions.rst                                |   7 +
 docs/installation.rst                              |  49 ++--
 docs/patterns/appfactories.rst                     |   2 +-
 docs/patterns/celery.rst                           |   2 +-
 docs/patterns/distribute.rst                       |  45 ++-
 docs/patterns/fabric.rst                           |  38 +--
 docs/patterns/fileuploads.rst                      |  10 +-
 docs/patterns/flashing.rst                         |   6 +-
 docs/patterns/index.rst                            |   1 +
 docs/patterns/lazyloading.rst                      |  15 +-
 docs/patterns/packages.rst                         |  47 +++-
 docs/patterns/sqlalchemy.rst                       |   2 +-
 docs/patterns/sqlite3.rst                          |  21 +-
 docs/patterns/subclassing.rst                      |  17 ++
 docs/patterns/viewdecorators.rst                   |  27 +-
 docs/patterns/wtforms.rst                          |   6 +-
 docs/python3.rst                                   |  39 +--
 docs/quickstart.rst                                | 131 +++++----
 docs/testing.rst                                   |  14 +-
 docs/tutorial/css.rst                              |   4 +-
 docs/tutorial/dbcon.rst                            |  28 +-
 docs/tutorial/dbinit.rst                           |  31 ++-
 docs/tutorial/folders.rst                          |  26 +-
 docs/tutorial/index.rst                            |   1 +
 docs/tutorial/introduction.rst                     |   9 +-
 docs/tutorial/packaging.rst                        | 108 ++++++++
 docs/tutorial/schema.rst                           |  10 +-
 docs/tutorial/setup.rst                            |  73 ++---
 docs/tutorial/templates.rst                        |  15 +-
 docs/tutorial/testing.rst                          |  86 ++++++
 docs/tutorial/views.rst                            |  43 ++-
 docs/upgrading.rst                                 |  62 ++++-
 examples/flaskr/.gitignore                         |   1 +
 examples/flaskr/MANIFEST.in                        |   3 +
 examples/flaskr/README                             |  12 +-
 examples/flaskr/flaskr/__init__.py                 |   1 +
 examples/flaskr/{ => flaskr}/flaskr.py             |   0
 examples/flaskr/{ => flaskr}/schema.sql            |   0
 examples/flaskr/{ => flaskr}/static/style.css      |   0
 examples/flaskr/{ => flaskr}/templates/layout.html |   0
 examples/flaskr/{ => flaskr}/templates/login.html  |   0
 .../{ => flaskr}/templates/show_entries.html       |   4 +-
 examples/flaskr/setup.cfg                          |   2 +
 examples/flaskr/setup.py                           |  16 ++
 examples/flaskr/{ => tests}/test_flaskr.py         |   5 +-
 examples/minitwit/.gitignore                       |   2 +
 examples/minitwit/MANIFEST.in                      |   3 +
 examples/minitwit/README                           |  12 +-
 examples/minitwit/minitwit/__init__.py             |   1 +
 examples/minitwit/{ => minitwit}/minitwit.py       |   0
 examples/minitwit/{ => minitwit}/schema.sql        |   0
 examples/minitwit/{ => minitwit}/static/style.css  |   0
 .../minitwit/{ => minitwit}/templates/layout.html  |   0
 .../minitwit/{ => minitwit}/templates/login.html   |   0
 .../{ => minitwit}/templates/register.html         |   0
 .../{ => minitwit}/templates/timeline.html         |   0
 examples/minitwit/setup.cfg                        |   2 +
 examples/minitwit/setup.py                         |  16 ++
 examples/minitwit/{ => tests}/test_minitwit.py     |   2 +-
 examples/persona/README.md                         |   3 -
 examples/persona/persona.py                        |  55 ----
 examples/persona/static/persona.js                 |  52 ----
 examples/persona/static/spinner.png                | Bin 31201 -> 0 bytes
 examples/persona/static/style.css                  |  39 ---
 examples/persona/templates/index.html              |  23 --
 examples/persona/templates/layout.html             |  27 --
 flask/__init__.py                                  |   4 +-
 flask/_compat.py                                   |  18 +-
 flask/app.py                                       |  78 +++---
 flask/cli.py                                       |  47 +++-
 flask/config.py                                    |  11 +-
 flask/exthook.py                                   |   2 +-
 flask/helpers.py                                   | 146 ++++++----
 flask/json.py                                      |   5 +-
 flask/logging.py                                   |   4 +
 flask/sessions.py                                  |  26 +-
 flask/signals.py                                   |   2 +-
 flask/testing.py                                   |  14 +
 flask/views.py                                     |   2 +-
 flask/wrappers.py                                  |   3 +-
 setup.cfg                                          |   5 +-
 setup.py                                           |   2 +
 tests/conftest.py                                  |  11 +-
 tests/test_basic.py                                |  57 +++-
 tests/test_cli.py                                  |  79 +++++-
 tests/test_deprecations.py                         |  20 +-
 tests/test_ext.py                                  |  12 +
 tests/test_helpers.py                              | 308 +++++++++++++++------
 tests/test_testing.py                              |  35 +++
 111 files changed, 1513 insertions(+), 939 deletions(-)

diff --cc debian/.git-dpm
index 025ce9b,0000000..8fa5c20
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,11 -1,0 +1,11 @@@
 +# see git-dpm(1) from git-dpm package
- 6d82aa89744b50eee77673cf99929241c4d65dae
- 6d82aa89744b50eee77673cf99929241c4d65dae
- 6d82aa89744b50eee77673cf99929241c4d65dae
- 6d82aa89744b50eee77673cf99929241c4d65dae
- flask_0.11.1.orig.tar.gz
- 8144bfba25a266ff572d19530472f403c96ad911
- 564993
++5219a1a4a282c1277f9c6b1cd4324e8c2d7b95f7
++5219a1a4a282c1277f9c6b1cd4324e8c2d7b95f7
++5219a1a4a282c1277f9c6b1cd4324e8c2d7b95f7
++5219a1a4a282c1277f9c6b1cd4324e8c2d7b95f7
++flask_0.12.orig.tar.gz
++73722d79e479d5f6b09bbb7b746c34a99b81b05c
++531923
 +debianTag="debian/%e%v"
 +patchedTag="patched/%e%v"
 +upstreamTag="upstream/%e%u"

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/flask.git



More information about the Python-modules-commits mailing list