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"),
|
2011-10-01 12:01:40 +00:00
|
|
|
url(r"^testcancel", "testCancel"),
|
2011-09-27 12:48:11 +00:00
|
|
|
url(r"^querycampaign", "queryCampaign"),
|
2011-10-14 17:52:17 +00:00
|
|
|
url(r"^paypalipn", "paypalIPN", name="PayPalIPN"),
|
2011-10-06 00:56:20 +00:00
|
|
|
url(r"^runtests", "runTests"),
|
2011-10-27 08:05:21 +00:00
|
|
|
url(r"^paymentcomplete","paymentcomplete"),
|
2011-12-14 13:30:37 +00:00
|
|
|
url(r"^checkstatus", "checkStatus"),
|
|
|
|
url(r"^testfinish", "testFinish"),
|
2012-01-05 06:42:05 +00:00
|
|
|
url(r"^testrefund", "testRefund"),
|
|
|
|
url(r"^testmodify", "testModify"),
|
2011-09-27 12:48:11 +00:00
|
|
|
)
|