From: Chris Williams Date: Tue, 17 Mar 2009 23:06:53 +0000 (-0400) Subject: Removed some old SVN junk X-Git-Tag: 22.4~73 X-Git-Url: https://git.mdrn.pl/django-cas-provider.git/commitdiff_plain/6230f9685faacd085caa15b24ec73d8609070283?ds=inline;hp=--cc Removed some old SVN junk --- 6230f9685faacd085caa15b24ec73d8609070283 diff --git a/cas_provider/management/commands/.svn/all-wcprops b/cas_provider/management/commands/.svn/all-wcprops deleted file mode 100644 index 90c9ca7..0000000 --- a/cas_provider/management/commands/.svn/all-wcprops +++ /dev/null @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/170/trunk/registration/management/commands -END -__init__.py -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/170/trunk/registration/management/commands/__init__.py -END -cleanupregistration.py -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/170/trunk/registration/management/commands/cleanupregistration.py -END diff --git a/cas_provider/management/commands/.svn/entries b/cas_provider/management/commands/.svn/entries deleted file mode 100644 index 58adc69..0000000 --- a/cas_provider/management/commands/.svn/entries +++ /dev/null @@ -1,96 +0,0 @@ -9 - -dir -170 -http://django-registration.googlecode.com/svn/trunk/registration/management/commands -http://django-registration.googlecode.com/svn - - - -2008-09-22T10:00:14.397881Z -170 -ubernostrum - - -svn:special svn:externals svn:needs-lock - - - - - - - - - - - -b970a8a1-db28-0410-9b79-8b7e580363d3 - -__init__.py -file - - - - -2009-02-18T02:12:14.000000Z -d41d8cd98f00b204e9800998ecf8427e -2008-09-22T10:00:14.397881Z -170 -ubernostrum - - - - - - - - - - - - - - - - - - - - - -0 - -cleanupregistration.py -file - - - - -2009-02-18T02:12:14.000000Z -2fc6dce3e47cc12aafd11130c6c8b45e -2008-09-22T10:00:14.397881Z -170 -ubernostrum - - - - - - - - - - - - - - - - - - - - - -630 - diff --git a/cas_provider/management/commands/.svn/format b/cas_provider/management/commands/.svn/format deleted file mode 100644 index ec63514..0000000 --- a/cas_provider/management/commands/.svn/format +++ /dev/null @@ -1 +0,0 @@ -9 diff --git a/cas_provider/management/commands/.svn/text-base/__init__.py.svn-base b/cas_provider/management/commands/.svn/text-base/__init__.py.svn-base deleted file mode 100644 index e69de29..0000000 diff --git a/cas_provider/management/commands/.svn/text-base/cleanupregistration.py.svn-base b/cas_provider/management/commands/.svn/text-base/cleanupregistration.py.svn-base deleted file mode 100644 index cfaee32..0000000 --- a/cas_provider/management/commands/.svn/text-base/cleanupregistration.py.svn-base +++ /dev/null @@ -1,20 +0,0 @@ -""" -A management command which deletes expired accounts (e.g., -accounts which signed up but never activated) from the database. - -Calls ``RegistrationProfile.objects.delete_expired_users()``, which -contains the actual logic for determining which accounts are deleted. - -""" - -from django.core.management.base import NoArgsCommand -from django.core.management.base import CommandError - -from registration.models import RegistrationProfile - - -class Command(NoArgsCommand): - help = "Delete expired user registrations from the database" - - def handle_noargs(self, **options): - RegistrationProfile.objects.delete_expired_users()