le retour de payapl plantait parce qu'il y avait des arguments et que
cherrypy ne les attendait pas. darcs-hash:20061205014731-f46e9-61bb4373d2c6ce42b291103e0e93cc7b10966bb7.gz
This commit is contained in:
parent
40bb219714
commit
baf4b7bd90
1 changed files with 10 additions and 9 deletions
|
@ -111,7 +111,6 @@ class monCompte:
|
||||||
'template' :'monCompte',
|
'template' :'monCompte',
|
||||||
'values' :t,
|
'values' :t,
|
||||||
'stylesheets' :['monCompte.css'],
|
'stylesheets' :['monCompte.css'],
|
||||||
# 'scripts':['crans.js','passwordGenerator.js'],
|
|
||||||
'scripts':['crans_domtab.js','moncompte.js','passwordGenerator.js'],
|
'scripts':['crans_domtab.js','moncompte.js','passwordGenerator.js'],
|
||||||
}
|
}
|
||||||
index.exposed = True
|
index.exposed = True
|
||||||
|
@ -193,16 +192,18 @@ class monCompte:
|
||||||
}
|
}
|
||||||
rechargerCompteImpression.exposed = True
|
rechargerCompteImpression.exposed = True
|
||||||
|
|
||||||
def paypalReturn(self):
|
def paypalReturn(self, **kw):
|
||||||
return {
|
_crans_cp.log("retour de paypal avec les infos : %s" % " ".join( [ "[%s: %s]" % (str(a), str(kw[a])) for a in kw] ) )
|
||||||
'template' :'MonComptePaypalReturn',
|
return {
|
||||||
'standalone' :True,
|
'template' :'MonComptePaypalReturn',
|
||||||
'values' :{},
|
'standalone' :True,
|
||||||
}
|
'values' :{},
|
||||||
|
}
|
||||||
paypalReturn.exposed = True
|
paypalReturn.exposed = True
|
||||||
|
|
||||||
def paypalCancel(self):
|
def paypalCancel(self, **kw):
|
||||||
return {
|
_crans_cp.log("annulation de paypal avec les infos : %s" % " ".join( [ "[%s: %s]" % (str(a), str(kw[a])) for a in kw] ) )
|
||||||
|
return {
|
||||||
'template' :'MonComptePaypalCancel',
|
'template' :'MonComptePaypalCancel',
|
||||||
'standalone' :True,
|
'standalone' :True,
|
||||||
'values' :{},
|
'values' :{},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue