The thing is, quoted get variables will get unquoted, quoted url parameters won't be unquoted automatically. That's up to the developer to handle.
Ran into the same issue today, and for me it made sense to do the quoting before passing it to the reverse function, but for me it was an URL which was passed to another url which clearly needs escaping (apache doesn't like double / by default :D) I can however see how you might not know the input and thus forget to quote it. The example above is a very good one for that. You can't just start escaping everything without breaking code in unexpected ways. On Apr 22, 4:53 pm, Thomas Guettler <[email protected]> wrote: > >>>> reverse('special', args=[r'+\$*']) > > '/special_chars/+%5C$*/' > > > It would have to output: > > > '/special_chars/%2B%5C%24%2A/' > > Hi, > > I think the current test case is broken. All args/kwargs should > be quoted. > > -- > Thomas Guettler,http://www.thomas-guettler.de/ > E-Mail: guettli (*) thomas-guettler + de > > -- > You received this message because you are subscribed to the Google Groups > "Django developers" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/django-developers?hl=en. -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-developers?hl=en.
