On Thu, Aug 26, 2010 at 11:01 AM, k4rlchen <h...@gws.ms> wrote: > > Thanks Łukasz, > > unfortunatly, the application is in use for 10 years and delivered to > 300 > mobile computers. > A change of application would mean a big scale operation. > > I was not 100% correct describing the matter. The values are not passed via > url but in a form input field. > The old cgi uses cgi.FieldStorage() , which works with this. > > Any posibility to use a regular expression to replace the semicolon before > the QueryDict is created?. > > Cheers > Stefan
No, you wouldn't be able to do that. However there is nothing to stop you from creating some middleware or view decorator that re-parses your raw data (from request.META['QUERY_STRING'] for GET, from request.raw_post_data for POST requests) and replaces/updates request.POST/request.GET. Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.