[Python-modules-commits] [python-django-registration] branch master updated (d490047 -> e0050ca)
Stephan Suerken
absurd at moszumanska.debian.org
Mon Jan 11 15:00:27 UTC 2016
This is an automated email from the git hooks/post-receive script.
absurd pushed a change to branch master
in repository python-django-registration.
from d490047 Update Vcs fields for git migration
new abfcc34 Fix the test suite
new cee9791 Fix for Django 1.7
new 732b3a2 More test suite fixes for Django 1.7
new b39376d Adapts uid encoding for django >= 1.6 for the "password reset" URL pattern
new 8a3438d Fixes double signal sending when activating user.
new f96c50d change version to 1.0+dfsg-2+unreleased1 [ Stephan Sürken ] Re-order patches.
new 1381418 Fixes double signal sending when activating user.
new 354a70d change version to 1.0+dfsg-2+unreleased2 Removed patches (obsoleted by 2.0.4): fix-test-suite.patch django-1.7-compat.patch more-django-1.7-fixes.patch django-1.6-uid-encoding.patch
new c947553 record new upstream branch created by importing python-django-registration_2.0.4.orig.tar.gz
new db92d6a Import python-django-registration_2.0.4.orig.tar.gz
new 6644af9 Fixes double signal sending when activating user.
new 039ef6d change version to 2.0.4-1 New upstream: 2.0.4
new d8b6d77 rules: Update testsuite calling for 2.0.4.
new 5849911 copyright: Update: Upstream URL, copyright years/authors.
new e880ef4 control: Update homepage URL.
new 0953a11 control: Hardening django deps >= 1.7 (2.0.4 upstream officially supports 1.7+).
new 7b458f1 control: Standards-Version: 3.9.5 -> 3.9.6 (no changes needed).
new 0a279b2 control: Remove 'upstream unmaintained' warning.
new 168b32d fixup! rules: Update testsuite calling for 2.0.4.
new 0d22a76 control: Update depends syntax to one depends per line.
new 8b3f6f8 control: Add missing b-d-indep: python-setuptools.
new eaa00e5 control: Add missing b-d-indep: python-sphinx-rtd-theme (primarily needed for backports: older sphinx versions do not have this dependency)
new e0050ca changelog: Prepare 2.0.4-1.
The 23 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 | 80 ++---
CHANGELOG | 239 ---------------
INSTALL | 28 --
LICENSE | 2 +-
PKG-INFO | 16 +-
README | 12 -
README.rst | 12 +
debian/.git-dpm | 14 +-
debian/changelog | 29 +-
debian/control | 23 +-
debian/copyright | 9 +-
debian/patches/django-1.6-uid-encoding.patch | 27 --
debian/patches/django-1.7-compat.patch | 67 -----
debian/patches/fix-test-suite.patch | 162 ----------
debian/patches/more-django-1.7-fixes.patch | 108 -------
...end_signal_only_once_when_activating_user.patch | 16 +-
debian/patches/series | 4 -
debian/rules | 3 +-
PKG-INFO => django_registration.egg-info/PKG-INFO | 16 +-
django_registration.egg-info/SOURCES.txt | 131 ++++++++
django_registration.egg-info/dependency_links.txt | 1 +
django_registration.egg-info/not-zip-safe | 1 +
django_registration.egg-info/top_level.txt | 1 +
docs/conf.py | 191 +-----------
docs/custom-user.rst | 100 +++++++
docs/faq.rst | 228 +++++++-------
docs/forms.rst | 39 +--
docs/hmac.rst | 249 +++++++++++++++
docs/index.rst | 63 ++--
docs/install.rst | 94 ++++++
docs/{default-backend.rst => model-workflow.rst} | 128 ++++----
docs/quickstart.rst | 282 ++++++++---------
docs/release-notes.rst | 30 --
docs/settings.rst | 64 ++++
docs/signals.rst | 42 +--
docs/simple-backend.rst | 51 ----
docs/simple-workflow.rst | 71 +++++
docs/upgrade.rst | 163 +++++++---
docs/views.rst | 114 ++++---
registration/__init__.py | 7 +-
registration/admin.py | 34 ++-
registration/auth_urls.py | 71 ++---
registration/backends/default/__init__.py | 16 +
registration/backends/default/urls.py | 58 +---
registration/backends/default/views.py | 139 ++-------
registration/backends/hmac/__init__.py | 13 +
registration/backends/hmac/urls.py | 38 +++
registration/backends/hmac/views.py | 156 ++++++++++
registration/backends/model_activation/__init__.py | 14 +
registration/backends/model_activation/urls.py | 40 +++
registration/backends/model_activation/views.py | 55 ++++
registration/backends/simple/__init__.py | 13 +
registration/backends/simple/urls.py | 46 +--
registration/backends/simple/views.py | 57 ++--
registration/forms.py | 109 ++++---
registration/locale/pt_BR/LC_MESSAGES/django.po | 8 +-
registration/migrations/0001_initial.py | 38 +++
registration/{backends => migrations}/__init__.py | 0
registration/models.py | 245 +++++----------
registration/runtests.py | 74 +++++
registration/signals.py | 5 +
registration/tests/__init__.py | 4 -
registration/tests/base.py | 181 +++++++++++
registration/tests/default_backend.py | 215 -------------
registration/tests/forms.py | 119 --------
registration/tests/models.py | 225 --------------
registration/tests/settings.py | 33 --
registration/tests/simple_backend.py | 89 ------
.../tests/templates/registration/activate.html | 1 -
.../registration/activation_complete.html | 1 -
.../templates/registration/activation_email.txt | 1 -
.../registration/activation_email_subject.txt | 1 -
.../registration/registration_closed.html | 1 -
.../registration/registration_complete.html | 1 -
.../templates/registration/registration_form.html | 5 -
registration/tests/test_forms.py | 92 ++++++
registration/tests/test_hmac_workflow.py | 157 ++++++++++
registration/tests/test_model_workflow.py | 101 +++++++
registration/tests/test_models.py | 333 +++++++++++++++++++++
registration/tests/test_simple_workflow.py | 47 +++
registration/tests/test_views.py | 43 +++
registration/tests/urls.py | 111 +++----
registration/tests/views.py | 18 ++
registration/urls.py | 19 +-
registration/views.py | 118 +++-----
setup.cfg | 24 ++
setup.py | 41 ++-
87 files changed, 3295 insertions(+), 2832 deletions(-)
delete mode 100644 CHANGELOG
delete mode 100644 INSTALL
delete mode 100644 README
create mode 100644 README.rst
delete mode 100644 debian/patches/django-1.6-uid-encoding.patch
delete mode 100644 debian/patches/django-1.7-compat.patch
delete mode 100644 debian/patches/fix-test-suite.patch
delete mode 100644 debian/patches/more-django-1.7-fixes.patch
copy PKG-INFO => django_registration.egg-info/PKG-INFO (54%)
create mode 100644 django_registration.egg-info/SOURCES.txt
create mode 100644 django_registration.egg-info/dependency_links.txt
create mode 100644 django_registration.egg-info/not-zip-safe
create mode 100644 django_registration.egg-info/top_level.txt
create mode 100644 docs/custom-user.rst
create mode 100644 docs/hmac.rst
create mode 100644 docs/install.rst
rename docs/{default-backend.rst => model-workflow.rst} (67%)
delete mode 100644 docs/release-notes.rst
create mode 100644 docs/settings.rst
delete mode 100644 docs/simple-backend.rst
create mode 100644 docs/simple-workflow.rst
create mode 100644 registration/backends/hmac/__init__.py
create mode 100644 registration/backends/hmac/urls.py
create mode 100644 registration/backends/hmac/views.py
create mode 100644 registration/backends/model_activation/__init__.py
create mode 100644 registration/backends/model_activation/urls.py
create mode 100644 registration/backends/model_activation/views.py
create mode 100644 registration/migrations/0001_initial.py
copy registration/{backends => migrations}/__init__.py (100%)
create mode 100644 registration/runtests.py
create mode 100644 registration/tests/base.py
delete mode 100644 registration/tests/default_backend.py
delete mode 100644 registration/tests/forms.py
delete mode 100644 registration/tests/models.py
delete mode 100644 registration/tests/settings.py
delete mode 100644 registration/tests/simple_backend.py
create mode 100644 registration/tests/test_forms.py
create mode 100644 registration/tests/test_hmac_workflow.py
create mode 100644 registration/tests/test_model_workflow.py
create mode 100644 registration/tests/test_models.py
create mode 100644 registration/tests/test_simple_workflow.py
create mode 100644 registration/tests/test_views.py
create mode 100644 registration/tests/views.py
create mode 100644 setup.cfg
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-registration.git
More information about the Python-modules-commits
mailing list