Re: url_for() constrcut URL with MultiDict parameters?

2008-04-29 Thread Mike Orr
On Mon, Apr 28, 2008 at 10:38 PM, Jonathan Vanasco [EMAIL PROTECTED] wrote: On Apr 29, 12:38 am, Mike Orr [EMAIL PROTECTED] wrote: On Mon, Apr 28, 2008 at 6:19 PM, jerry [EMAIL PROTECTED] wrote: Is there a way to construct URLs like /controller/action/id? q=1q=2 with url_for()?

Re: url_for() constrcut URL with MultiDict parameters?

2008-04-29 Thread jerry
Hi Mike, Thanks for the response. I mentioned MultiDict as a convenient term to convey the idea in my question, not that I know or thought it would help with the implementation. As for the demand, I have a form with a list of checkbox input items for viewing the details of selected one(s). The

Re: url_for() constrcut URL with MultiDict parameters?

2008-04-29 Thread Ian Bicking
jerry wrote: Hi Mike, Thanks for the response. I mentioned MultiDict as a convenient term to convey the idea in my question, not that I know or thought it would help with the implementation. As for the demand, I have a form with a list of checkbox input items for viewing the details

Re: url_for() constrcut URL with MultiDict parameters?

2008-04-29 Thread Mike Orr
On Tue, Apr 29, 2008 at 9:44 AM, Ian Bicking [EMAIL PROTECTED] wrote: jerry wrote: Hi Mike, Thanks for the response. I mentioned MultiDict as a convenient term to convey the idea in my question, not that I know or thought it would help with the implementation. As for

Re: url_for() constrcut URL with MultiDict parameters?

2008-04-29 Thread Ian Bicking
Mike Orr wrote: Added to the Routes 2 spec for consideration. (No promises yet.) http://wiki.pylonshq.com/display/routes/Routes+2+Spec Ben might implement it in Routes 1; I don't deal with that. You can increase the chances of getting it done by filing a bug report at routes.groovie.org.

url_for() constrcut URL with MultiDict parameters?

2008-04-28 Thread jerry
Hi, Is there a way to construct URLs like /controller/action/id? q=1q=2 with url_for()? Thanks in advance! Jerry --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send

Re: url_for() constrcut URL with MultiDict parameters?

2008-04-28 Thread Mike Orr
On Mon, Apr 28, 2008 at 6:19 PM, jerry [EMAIL PROTECTED] wrote: Is there a way to construct URLs like /controller/action/id? q=1q=2 with url_for()? I don't think so. If there's demand for this we can turn a list of values into multiple parameters. Does MultiDict offer anything that would

Re: url_for() constrcut URL with MultiDict parameters?

2008-04-28 Thread Jonathan Vanasco
On Apr 29, 12:38 am, Mike Orr [EMAIL PROTECTED] wrote: On Mon, Apr 28, 2008 at 6:19 PM, jerry [EMAIL PROTECTED] wrote:  Is there a way to construct URLs like /controller/action/id?  q=1q=2 with url_for()? I don't think so.  If there's demand for this we can turn a list of values into