[Python-modules-commits] [django-reversion] 04/13: merge patched into master

Michael Fladischer fladi at moszumanska.debian.org
Wed Nov 30 11:35:21 UTC 2016


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

fladi pushed a commit to branch master
in repository django-reversion.

commit 4ad522f88b0044838022e99a68eb050fd3bb91f3
Merge: 4dce1a9 8cbfa91
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Tue Nov 29 10:36:40 2016 +0100

    merge patched into master

 .coveragerc                                        |  11 +-
 .gitignore                                         |   3 +-
 .travis.yml                                        |  46 +-
 CHANGELOG.md                                       | 343 --------
 CHANGELOG.rst                                      | 641 ++++++++++++++
 MANIFEST.in                                        |   8 +-
 README.rst                                         |  53 +-
 debian/.git-dpm                                    |   6 +-
 debian/patches/intersphinx.patch                   |  37 -
 debian/patches/series                              |   1 -
 docs/Makefile                                      | 153 ----
 docs/_include/admin.rst                            |  13 +
 docs/_include/create-revision-args.rst             |   5 +
 docs/_include/create-revision-manage-manually.rst  |   1 +
 docs/_include/create-revision-using.rst            |   1 +
 docs/_include/model-db-arg.rst                     |   2 +
 docs/_include/post-register.rst                    |   2 +
 docs/_include/signal-args.rst                      |   8 +
 docs/_include/throws-registration-error.rst        |   1 +
 docs/_include/throws-revert-error.rst              |   1 +
 docs/_include/throws-revision-error.rst            |   1 +
 docs/admin.rst                                     | 107 ++-
 docs/api.rst                                       | 526 ++++++++----
 docs/changelog.rst                                 |   1 +
 docs/commands.rst                                  |  37 +-
 docs/common-problems.rst                           |  12 +
 docs/conf.py                                       | 265 ++++--
 docs/diffs.rst                                     |  59 --
 docs/django-versions.rst                           |  41 +-
 docs/errors.rst                                    |  30 +
 docs/how-it-works.rst                              |  46 -
 docs/index.rst                                     |  65 +-
 docs/installation.rst                              |  35 -
 docs/make.bat                                      | 190 -----
 docs/middleware.rst                                |  29 +
 docs/migrations.rst                                |  72 --
 docs/signals.rst                                   |  40 +-
 docs/views.rst                                     |  45 +
 reversion/__init__.py                              |  39 +
 {src/reversion => reversion}/admin.py              | 250 +++---
 reversion/compat.py                                |  17 +
 {src/reversion => reversion}/errors.py             |   0
 .../locale/ar/LC_MESSAGES/django.mo                | Bin
 .../locale/ar/LC_MESSAGES/django.po                |   0
 .../locale/cs/LC_MESSAGES/django.mo                | Bin
 .../locale/cs/LC_MESSAGES/django.po                |   0
 .../locale/da/LC_MESSAGES/django.mo                | Bin
 .../locale/da/LC_MESSAGES/django.po                |   0
 .../locale/de/LC_MESSAGES/django.mo                | Bin
 .../locale/de/LC_MESSAGES/django.po                |   0
 .../locale/es/LC_MESSAGES/django.mo                | Bin
 .../locale/es/LC_MESSAGES/django.po                |   0
 .../locale/es_AR/LC_MESSAGES/django.mo             | Bin
 .../locale/es_AR/LC_MESSAGES/django.po             |   0
 .../locale/fr/LC_MESSAGES/django.mo                | Bin
 .../locale/fr/LC_MESSAGES/django.po                |   0
 .../locale/he/LC_MESSAGES/django.mo                | Bin
 .../locale/he/LC_MESSAGES/django.po                |   0
 .../locale/it/LC_MESSAGES/django.mo                | Bin
 .../locale/it/LC_MESSAGES/django.po                |   0
 .../locale/nb/LC_MESSAGES/django.mo                | Bin
 .../locale/nb/LC_MESSAGES/django.po                |   0
 .../locale/nl/LC_MESSAGES/django.mo                | Bin
 .../locale/nl/LC_MESSAGES/django.po                |   0
 .../locale/pl/LC_MESSAGES/django.mo                | Bin
 .../locale/pl/LC_MESSAGES/django.po                |   0
 .../locale/pt_BR/LC_MESSAGES/django.mo             | Bin
 .../locale/pt_BR/LC_MESSAGES/django.po             |   0
 .../locale/ru/LC_MESSAGES/django.mo                | Bin
 .../locale/ru/LC_MESSAGES/django.po                |   0
 .../locale/sk/LC_MESSAGES/django.mo                | Bin
 .../locale/sk/LC_MESSAGES/django.po                |   0
 .../locale/sv/LC_MESSAGES/django.mo                | Bin
 .../locale/sv/LC_MESSAGES/django.po                |   0
 .../locale/zh_CN/LC_MESSAGES/django.mo             | Bin
 .../locale/zh_CN/LC_MESSAGES/django.po             |   0
 .../locale/zh_Hans}/LC_MESSAGES/django.mo          | Bin
 .../locale/zh_Hans}/LC_MESSAGES/django.po          |   0
 .../commands => reversion/management}/__init__.py  |   0
 reversion/management/commands/__init__.py          |  57 ++
 .../management/commands/createinitialrevisions.py  |  74 ++
 reversion/management/commands/deleterevisions.py   |  95 +++
 reversion/middleware.py                            |  41 +
 .../migrations/0001_initial.py                     |   6 +-
 .../0001_squashed_0004_auto_20160611_1202.py       |  54 ++
 .../migrations/0002_auto_20141216_1509.py          |   0
 reversion/migrations/0003_auto_20160601_1600.py    | 103 +++
 reversion/migrations/0004_auto_20160611_1202.py    |  24 +
 .../reversion => reversion}/migrations/__init__.py |   0
 reversion/models.py                                | 318 +++++++
 reversion/revisions.py                             | 406 +++++++++
 reversion/signals.py                               |  10 +
 .../templates/reversion/change_list.html           |   0
 .../templates/reversion/object_history.html        |   5 +-
 .../templates/reversion/recover_form.html          |   2 +-
 .../templates/reversion/recover_list.html          |   4 +-
 .../templates/reversion/revision_form.html         |   2 +-
 reversion/views.py                                 |  65 ++
 setup.cfg                                          |   2 +
 setup.py                                           |  50 +-
 src/reversion/__init__.py                          |  12 -
 src/reversion/helpers.py                           |  85 --
 src/reversion/management/__init__.py               |   3 -
 .../management/commands/createinitialrevisions.py  | 145 ----
 .../management/commands/deleterevisions.py         | 216 -----
 src/reversion/middleware.py                        |  43 -
 src/reversion/models.py                            | 215 -----
 src/reversion/revisions.py                         | 667 ---------------
 src/reversion/signals.py                           |   6 -
 src/tests/manage.py                                |  10 -
 src/tests/test_reversion/admin.py                  |  88 --
 .../test_reversion/migrations/0001_initial.py      | 174 ----
 src/tests/test_reversion/models.py                 | 178 ----
 src/tests/test_reversion/tests.py                  | 942 ---------------------
 src/tests/test_reversion/views.py                  |  89 --
 src/tests/tests/settings.py                        | 108 ---
 src/tests/tests/urls.py                            |  31 -
 tests/manage.py                                    |  22 +
 .../test_reversion => tests/test_app}/__init__.py  |   0
 tests/test_app/migrations/0001_initial.py          |  97 +++
 .../test_app}/migrations/__init__.py               |   0
 tests/test_app/models.py                           | 104 +++
 {src/tests => tests/test_app}/tests/__init__.py    |   0
 tests/test_app/tests/base.py                       |  99 +++
 tests/test_app/tests/test_admin.py                 | 223 +++++
 tests/test_app/tests/test_api.py                   | 315 +++++++
 tests/test_app/tests/test_commands.py              | 195 +++++
 tests/test_app/tests/test_middleware.py            |  37 +
 tests/test_app/tests/test_models.py                | 346 ++++++++
 tests/test_app/tests/test_views.py                 |  42 +
 tests/test_app/urls.py                             |  10 +
 tests/test_app/views.py                            |  24 +
 .../commands => tests/test_project}/__init__.py    |   0
 tests/test_project/settings.py                     | 136 +++
 tests/test_project/urls.py                         |  11 +
 {src/tests/tests => tests/test_project}/wsgi.py    |   6 +-
 tox.ini                                            |  38 +
 137 files changed, 4681 insertions(+), 4597 deletions(-)

diff --cc debian/.git-dpm
index 23f5b41,0000000..c267a39
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
- 31470d3f1b10086e0929d43c4a4fe5e6e807084d
- 31470d3f1b10086e0929d43c4a4fe5e6e807084d
- 84e698bf83ced2e70fb3cbad750746143666b346
++8cbfa911be50fa4eab5d6fef8ce1f4aafe6843cb
++8cbfa911be50fa4eab5d6fef8ce1f4aafe6843cb
++8cbfa911be50fa4eab5d6fef8ce1f4aafe6843cb
 +8cbfa911be50fa4eab5d6fef8ce1f4aafe6843cb
 +django-reversion_2.0.8.orig.tar.gz
 +4747ff7c961f847104cccd7ed160b614182b2e45
 +62446
 +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/django-reversion.git



More information about the Python-modules-commits mailing list