regluit/payment
eric 48be5a1191 xhtml nits 2012-10-15 10:28:31 -04:00
..
management a django command to do a test charge 2012-10-02 11:49:17 -07:00
migrations [#37567927] enforce constraint of at most 1 active Account / user of given host 2012-10-11 16:36:24 -07:00
templates xhtml nits 2012-10-15 10:28:31 -04:00
templatetags First pass at trying to integrate Amazon fps 2012-04-11 09:51:18 -07:00
README.txt Adding missing README 2011-09-27 08:56:50 -04:00
__init__.py Adding pledge payment support 2011-09-27 08:48:11 -04:00
baseprocessor.py add a payment.manager.PaymentManager.retrieve_or_make_accounts 2012-10-12 07:44:50 -07:00
credit.py To get credit module working again, had to move some methods into an object that inherits from a base class 2012-10-02 23:49:19 -04:00
forms.py Reverting to using stripe.js on stripe/test as a stepping stone to changing fund_the_pledge.html 2012-09-26 13:52:36 -07:00
manager.py fix reference to Donation Credit canceler 2012-10-14 22:08:34 -04:00
models.py user can manage their account credit card [#37674369] 2012-10-14 23:41:17 -04:00
parameters.py Fold stripe2.py into stripelib.py 2012-09-21 11:24:42 -07:00
signals.py added management command to create credits, balance notification [#21784207] 2012-08-07 14:12:50 -04:00
stripelib.py Merge branch 'master' of github.com:Gluejar/regluit 2012-10-14 21:52:43 -07:00
tests.py [#37567927] enforce constraint of at most 1 active Account / user of given host 2012-10-11 16:36:24 -07:00
urls.py Merge branch 'newpayment' into relaunch 2012-09-07 13:46:09 -07:00
views.py get rid of more paypal references 2012-10-02 10:16:34 -07:00

README.txt

Setup instructions for payment module

1)  In parameters.py, set the following:

    PAYPAL_USERNAME = Paypal username from developer.paypal.com
    PAYPAL_PASSWORD =  Paypal password from developer.paypal.com
    PAYPAL_SIGNATURE = Paypal signature from developer.paypal.com
    PAYPAL_APPID = 'APP-80W284485P519543T' (for all sandbox apps), or the real APPID

    BASE_URL = Set this to the server IP address that is accessible via port 80.  
                Local IP addresses, or non-port 80 addresses will NOT work with paypal IPN.
                
    COMPLETE_URL = relative local URL for a plege confirmation
    CANCEL_URL = relative local url for a pledge cacellation
    
2) Sync the database to include the payment specific tables

3) Configure your paypal sandbox account at developer.paypal.com with at least 1 seller and 1 buyer.  The buyer info is entered into the sandbox, the seller
    info needs to be entered into the pledge/payment itself

4) A test pledge code sample is available in regluit.payment.view.testPledge