Re: [web2py] new in trunk signed URLS

2010-12-03 Thread Jonathan Lundell
On Dec 3, 2010, at 9:01 AM, mdipierro wrote: > > New feature in trunk: > > URL('index',args=[],vars={},hash_key='xxx') > > the URL will have a _signature attached. The associated controller can > check for the signature with > > def index(): > if not URL.verify(hmac_key='xxx'): .. >

[web2py] new in trunk signed URLS

2010-12-03 Thread mdipierro
New feature in trunk: URL('index',args=[],vars={},hash_key='xxx') the URL will have a _signature attached. The associated controller can check for the signature with def index(): if not URL.verify(hmac_key='xxx'): .. ... Please test it. In particular we need to test the workflow a