[web2py] Possible bug in URL

2010-12-23 Thread mr.freeze
Given this url: URL(args=1,vars=dict(v='yes'),anchor='end') It produces: http://server/app/default/index/1#end?v=yes Problem: request.vars is empty This url: http://server/app/default/index/1?v=yes#end request.vars is populated and the anchor works Shouldn't the anchor be at the end of the query

Re: [web2py] Possible bug in URL

2010-12-23 Thread Jonathan Lundell
On Dec 23, 2010, at 9:09 AM, mr.freeze wrote: Given this url: URL(args=1,vars=dict(v='yes'),anchor='end') It produces: http://server/app/default/index/1#end?v=yes Problem: request.vars is empty This url: http://server/app/default/index/1?v=yes#end request.vars is populated and the

Re: [web2py] Possible bug in URL

2010-12-23 Thread Jonathan Lundell
On Dec 23, 2010, at 9:29 AM, Jonathan Lundell wrote: On Dec 23, 2010, at 9:09 AM, mr.freeze wrote: Given this url: URL(args=1,vars=dict(v='yes'),anchor='end') It produces: http://server/app/default/index/1#end?v=yes Problem: request.vars is empty This url: