regluit/payment/urls.py

18 lines
601 B
Python
Raw Normal View History

2011-09-27 12:48:11 +00:00
from django.conf.urls.defaults import *
urlpatterns = patterns(
"regluit.payment.views",
url(r"^testpledge", "testPledge"),
2011-09-29 07:50:07 +00:00
url(r"^testauthorize", "testAuthorize"),
url(r"^testexecute", "testExecute"),
url(r"^testcancel", "testCancel"),
2011-09-27 12:48:11 +00:00
url(r"^querycampaign", "queryCampaign"),
url(r"^paypalipn", "paypalIPN", name="PayPalIPN"),
url(r"^runtests", "runTests"),
url(r"^paymentcomplete","paymentcomplete"),
url(r"^checkstatus", "checkStatus"),
url(r"^testfinish", "testFinish"),
url(r"^testrefund", "testRefund"),
url(r"^testmodify", "testModify"),
2011-09-27 12:48:11 +00:00
)