Skip to content

Commit

Permalink
Initialize project
Browse files Browse the repository at this point in the history
  • Loading branch information
Dusty Phillips committed Jun 16, 2010
0 parents commit 3590dad
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.pyc
*.swp
*.swo
django-registration
16 changes: 16 additions & 0 deletions README
@@ -0,0 +1,16 @@
This is a django-registration backend to integrate with paypal. The workflow is
as follows:

1. User signs up for account.
2. User is directed to paypal to pay for their account.
3. Paypal notifies site that account has been paid for.
4. User receives email containing instructions for activating the account.
5. User activates and begins using the site.

This is a backend for the django-registration project:
http://bitbucket.org/ubernostrum/django-registration/
It requires the development version of django-registration; 0.7 did not support
registration backends.

This code uses paypal's standard integration. It posts to an Instant Payment
Notification URL when complete.
3 changes: 3 additions & 0 deletions paypal_registration/__init__.py
@@ -0,0 +1,3 @@
from django.conf import settings
from django.contrib.sites.models import RequestSite
from django.contrib.sites.models import Site

0 comments on commit 3590dad

Please sign in to comment.