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"),
|
|
|
|
url(r"^paypalipn", "paypalIPN")
|
|
|
|
)
|