Re: [web2py] session uuid

2015-01-02 Thread Joe
Thanks very much Michele, that works perfectly! I appreciate it. BTW: I hope I am not excessively self-assertive but if you have a minute and you can take a look at this other problem I posted, I would really appreciate it: https://groups.google.com/forum/#!topic/web2py/avpnonuPaJU On Friday, J

Re: [web2py] session uuid

2015-01-01 Thread Michele Comitini
again! ;-) def product(): if request.args(0) is None or session.uuid != request.args(0): raise HTTP(404) return dict() 2015-01-02 0:39 GMT+01:00 Michele Comitini : > correction: > > def product(): > if request.args(0) is not None and session.uuid != request.args(0

Re: [web2py] session uuid

2015-01-01 Thread Michele Comitini
correction: def product(): if request.args(0) is not None and session.uuid != request.args(0): raise HTTP(404) return dict() 2015-01-02 0:36 GMT+01:00 Michele Comitini : > def product(): > if session.uuid != request.args(0): >raise HTTP(404) >

Re: [web2py] session uuid

2015-01-01 Thread Michele Comitini
def product(): if session.uuid != request.args(0): raise HTTP(404) return dict() 2014-12-30 4:46 GMT+01:00 Joe : > What I am trying to do is send the user to a "product" page where the URL > will be a unique URL which can not be used again to access that page after