Re: kaptcha component reloading issues with Firefox

2014-02-08 Thread Thiago H de Paula Figueiredo
On Fri, 24 Jan 2014 19:48:13 -0200, Dimitris Zenios wrote: I prefer number 3. Fixed using option number 3. :) On Fri, Jan 24, 2014 at 10:13 PM, Bob Harner wrote: Actually, Tapestry's Response interface and ResponseImpl implementation (a thin facade over HttpServletResponse) don't inc

Re: kaptcha component reloading issues with Firefox

2014-01-24 Thread Dimitris Zenios
I prefer number 3. On Fri, Jan 24, 2014 at 10:13 PM, Bob Harner wrote: > Actually, Tapestry's Response interface and ResponseImpl > implementation (a thin facade over HttpServletResponse) don't include > an addHeader method, so we would either have to 1) combine the two > setHeader calls or 2)

Re: kaptcha component reloading issues with Firefox

2014-01-24 Thread Bob Harner
Actually, Tapestry's Response interface and ResponseImpl implementation (a thin facade over HttpServletResponse) don't include an addHeader method, so we would either have to 1) combine the two setHeader calls or 2) use HttpServletResponse directly, or 3) change the Response interface (a backward-i

Re: kaptcha component reloading issues with Firefox

2014-01-24 Thread Dimitris Zenios
It would be nice also to provide a patch file.The only change needed is to replace the second setHeader with addHeader. After that we can inform a person with commit access to merge your patch. On Fri, Jan 24, 2014 at 1:22 AM, Ilya Obshadko wrote: > Okay, https://issues.apache.org/jira/browse/TA

Re: kaptcha component reloading issues with Firefox

2014-01-23 Thread Ilya Obshadko
Okay, https://issues.apache.org/jira/browse/TAP5-2275 On Fri, Jan 24, 2014 at 8:46 AM, Dimitris Zenios wrote: > You should start by writing a jira bug report > On 23 Jan 2014 00:09, "Ilya Obshadko" wrote: > > > So I have discussed the issue with Kaptcha library author and found out > > that the

Re: kaptcha component reloading issues with Firefox

2014-01-23 Thread Dimitris Zenios
You should start by writing a jira bug report On 23 Jan 2014 00:09, "Ilya Obshadko" wrote: > So I have discussed the issue with Kaptcha library author and found out > that the problem is, in fact, with Tapestry implementation itself. > > https://code.google.com/p/kaptcha/issues/detail?id=72 > > T

Re: kaptcha component reloading issues with Firefox

2014-01-22 Thread Ilya Obshadko
So I have discussed the issue with Kaptcha library author and found out that the problem is, in fact, with Tapestry implementation itself. https://code.google.com/p/kaptcha/issues/detail?id=72 Tapestry component uses response.setHeader("Cache-Control") twice, and the second call obviously overrid