Subversion Repositories SmartDukaan

Rev

Rev 16554 | Rev 16557 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 16554 Rev 16555
Line 1278... Line 1278...
1278
    def on_get(self, req, resp, retailerId, appId):
1278
    def on_get(self, req, resp, retailerId, appId):
1279
        retailerId = int(retailerId)
1279
        retailerId = int(retailerId)
1280
        appId = int(appId)
1280
        appId = int(appId)
1281
        call_back = req.get_param("callback")
1281
        call_back = req.get_param("callback")
1282
        result = Mongo.generateRedirectUrl(retailerId, appId)
1282
        result = Mongo.generateRedirectUrl(retailerId, appId)
1283
        resp.body = str(call_back(result))
1283
        resp.body = call_back+'('+str(result)+')'
1284
        
1284
        
1285
 
1285
 
1286
def main():
1286
def main():
1287
    #tagActivatedReatilers()
1287
    #tagActivatedReatilers()
1288
    a = RetailerDetail()
1288
    a = RetailerDetail()