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-04 11:55:39 +00:00
|
|
|
url(r"^paypalipn", "paypalIPN"),
|
2011-10-06 00:56:20 +00:00
|
|
|
url(r"^runtests", "runTests"),
|
|
|
|
url(r"^paymentcomplete","paymentcomplete")
|
2011-09-27 12:48:11 +00:00
|
|
|
)
|