Removed some old SVN junk
authorChris Williams <chris@nitron.org>
Tue, 17 Mar 2009 23:06:53 +0000 (19:06 -0400)
committerChris Williams <chris@nitron.org>
Tue, 17 Mar 2009 23:06:53 +0000 (19:06 -0400)
cas_provider/management/commands/.svn/all-wcprops [deleted file]
cas_provider/management/commands/.svn/entries [deleted file]
cas_provider/management/commands/.svn/format [deleted file]
cas_provider/management/commands/.svn/text-base/__init__.py.svn-base [deleted file]
cas_provider/management/commands/.svn/text-base/cleanupregistration.py.svn-base [deleted file]

diff --git a/cas_provider/management/commands/.svn/all-wcprops b/cas_provider/management/commands/.svn/all-wcprops
deleted file mode 100644 (file)
index 90c9ca7..0000000
+++ /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 (file)
index 58adc69..0000000
+++ /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
-\f
-__init__.py
-file
-
-
-
-
-2009-02-18T02:12:14.000000Z
-d41d8cd98f00b204e9800998ecf8427e
-2008-09-22T10:00:14.397881Z
-170
-ubernostrum
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-0
-\f
-cleanupregistration.py
-file
-
-
-
-
-2009-02-18T02:12:14.000000Z
-2fc6dce3e47cc12aafd11130c6c8b45e
-2008-09-22T10:00:14.397881Z
-170
-ubernostrum
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-630
-\f
diff --git a/cas_provider/management/commands/.svn/format b/cas_provider/management/commands/.svn/format
deleted file mode 100644 (file)
index ec63514..0000000
+++ /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 (file)
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 (file)
index cfaee32..0000000
+++ /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()