[Python-modules-commits] [python-django-registration] branch upstream updated (85d6cd6 -> db92d6a)
Stephan Suerken
absurd at moszumanska.debian.org
Mon Jan 11 15:01:16 UTC 2016
This is an automated email from the git hooks/post-receive script.
absurd pushed a change to branch upstream
in repository python-django-registration.
from 85d6cd6 Imported Upstream version 1.0+dfsg
adds db92d6a Import python-django-registration_2.0.4.orig.tar.gz
No new revisions were added by this update.
Summary of changes:
AUTHORS | 80 ++---
CHANGELOG | 239 ---------------
INSTALL | 28 --
LICENSE | 2 +-
PKG-INFO | 16 +-
README | 12 -
README.rst | 12 +
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 | 43 +--
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 | 246 +++++----------
registration/runtests.py | 74 +++++
registration/signals.py | 5 +
registration/tests/__init__.py | 4 -
registration/tests/base.py | 181 +++++++++++
registration/tests/default_backend.py | 198 ------------
registration/tests/forms.py | 119 --------
registration/tests/models.py | 225 --------------
registration/tests/simple_backend.py | 89 ------
.../templates/registration/activate.html} | 0
.../registration/activation_complete.html} | 0
.../templates/registration/activation_email.txt} | 0
.../registration/activation_email_subject.txt} | 0
.../registration/registration_closed.html} | 0
.../registration/registration_complete.html} | 0
.../templates/registration/registration_form.html} | 0
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 | 120 +++-----
setup.cfg | 24 ++
setup.py | 41 ++-
75 files changed, 3232 insertions(+), 2372 deletions(-)
delete mode 100644 CHANGELOG
delete mode 100644 INSTALL
delete mode 100644 README
create mode 100644 README.rst
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/simple_backend.py
copy registration/{backends/__init__.py => tests/templates/registration/activate.html} (100%)
copy registration/{backends/__init__.py => tests/templates/registration/activation_complete.html} (100%)
copy registration/{backends/__init__.py => tests/templates/registration/activation_email.txt} (100%)
copy registration/{backends/__init__.py => tests/templates/registration/activation_email_subject.txt} (100%)
copy registration/{backends/__init__.py => tests/templates/registration/registration_closed.html} (100%)
copy registration/{backends/__init__.py => tests/templates/registration/registration_complete.html} (100%)
copy registration/{backends/__init__.py => tests/templates/registration/registration_form.html} (100%)
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