Mike,

> I think I ran into this problem and worked around it by making my
> template at a higher level that avoids pagelink.

paginate.Page and paginate.Page.pager accept arbitrary additional
keyword arguments.
These get passed to url_for. Hence you can use them to provide the
controller/action for the paginator for example like this:

    c.paginator = paginate.Page(
        ...
        controller='ctrl',
        action='act'
    )

As paginate relies on routes anyway I still consider the initial
problem as a bug as it is somewhat ugly if you rewrite the controllers
name and action within an action's definition.

regards,

/ch
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-devel" group.
To post to this group, send email to pylons-devel@googlegroups.com
To unsubscribe from this group, send email to 
pylons-devel+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/pylons-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to