Re: searchengine bots and tapestry

2010-02-11 Thread Sergey Kashin
With "if (request.isXHR())" all work fine. Thx On Thu, 11 Feb 2010 08:55:53 -0200 "Thiago H. de Paula Figueiredo" wrote: On Thu, 11 Feb 2010 05:39:33 -0200, Sergey Kashin wrote: Google browse that pages by GET method, but tapestry except a POST method. As you have an ActionLink, I

Re: searchengine bots and tapestry

2010-02-11 Thread Angelo Chen
in the page class, you might have methods returning block, put a check for isXHR, if true return the block otherwise return null. you have to inject Request in order to check isXHR. Sergey G. Kashin wrote: > > I have a problem with Ajax pages and google bot. > > Then google bot view ajax pag

Re: searchengine bots and tapestry

2010-02-11 Thread Thiago H. de Paula Figueiredo
On Thu, 11 Feb 2010 05:39:33 -0200, Sergey Kashin wrote: Google browse that pages by GET method, but tapestry except a POST method. As you have an ActionLink, I guess the problem is in the method that handles its event. You should check if the request was made through AJAX before returni