regluit/payment
Raymond Yee dfcde1f46b skipping certain tests explicitly, ones that I had been able to skip in Django 1.4 with suites() but, for some reason, are being run in Django 1.6. 2016-04-19 07:49:20 -07:00
..
management Campaign moved from payment to core 2014-02-28 15:32:50 -08:00
migrations examined order_by queries, added indices as required 2014-07-31 12:17:42 -04:00
templates cleanup of css and js imports, also mapping 2013-03-08 14:16:24 -05:00
templatetags moved to not_maintained 2013-08-19 22:27:25 -04:00
README.txt There are no references to settings.BASE_URL 2015-08-25 11:07:11 -04:00
__init__.py Adding pledge payment support 2011-09-27 08:48:11 -04:00
baseprocessor.py Thanks works with anonymous user 2014-02-20 15:56:10 -05:00
credit.py fix two bugs 2014-03-01 17:13:57 -05:00
forms.py PEP 8, PEP 328. I feel better now. 2013-06-03 12:31:39 -04:00
manager.py Thanks works with anonymous user 2014-02-20 15:56:10 -05:00
models.py one more null boolean 2016-04-09 13:26:42 -04:00
parameters.py Remove some payment dependence on campaign details 2013-08-19 22:52:22 -04:00
sales_credit.py add script that starts to generate "cost of sold items" records 2014-06-16 18:15:50 -04:00
signals.py revert to older, patched Notification 2016-04-08 18:45:50 -04:00
stripelib.py needed to have unicode to handle non-ascii names in Stripe 2015-04-21 08:55:27 -07:00
tasks.py revert to older, patched Notification 2016-04-08 18:45:50 -04:00
tests.py skipping certain tests explicitly, ones that I had been able to skip in Django 1.4 with suites() but, for some reason, are being run in Django 1.6. 2016-04-19 07:49:20 -07:00
urls.py patch django.conf.urls.defaults 2016-04-07 20:38:53 -04:00
views.py Merge pull request #181 from Gluejar/simpler_download 2013-06-26 11:39:39 -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

                
    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