<g:paginate> tag currently produces URLS based on the default $controller/$action pattern This is not always desireble. For example in my applications I completely disable $controller/$action/$id URL patter and use solely "custom" URL patterns. For this scenario, g:paginate would not work. For example, for the following mapping:
"/people"{
controller = 'person'
action = 'list'
}
<g:paginate> tag would produce "/my-app/person/list?offset=10&max=10" instead of desirable "/my-app/people?offset=10&max=10"
GRAILS-1540. I tested it locally and it seems to work as expected.Could you please confirm if it works fine for you with SVN HEAD.