regluit/payment/urls.py

14 lines
424 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"),
url(r"^runtests", "runTests"),
url(r"^paymentcomplete","paymentcomplete")
2011-09-27 12:48:11 +00:00
)