On Thu, 2008-07-17 at 10:01 -0700, [EMAIL PROTECTED] wrote: > Hi, > I have a problem about the encoding of the variables that i have in my > views.. > > I've an url like this: > > http://elvis.sinedita.it/dossiers/Comunità/1/ > > my URLS: > > (r'(?P<section_name>[^/]+)/section/$', 'views.listpersection'),
This URL pattern has no chance of matching the URL you give above. You'll need to show us the pattern you are really matching against for this to make sense. > in the views i found something like 'Comunit\xe0' Found it where? Something has gone wrong there, since that is an ISO-8559-1 encoding of Communitá, when it should be unicode inside Django (or 'Communit\xc3\xa1' if it was printed as UTF-8). It doesn't look like that string is coming from Django itself. > > and when i exec: > section_id = > Section.objects.get(section_name=section_name,id_site=Site.objects.get_current().id) > > I've this error : > DoesNotExist at /dossiers/Comunità/1/ > Section matching query does not exist. Since the string you provide above isn't a valid string to be passing into this query (you should be passing in either UTF-8 encoded bytestrings or unicode strings), it's not too surprising that nothing is found. You'll need to provide a bit more information for us to be able to help here. In particular: what is the URL pattern that is being matched to call that view and perhaps a short code sample showing how to repeat the problem in the view (make your view as short as possible to demonstrate the problem). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---