On Thu, Jul 17, 2008 at 1:01 PM, [EMAIL PROTECTED] <
[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/<http://elvis.sinedita.it/dossiers/Comunit%C3%A0/1/>
>

> my URLS:
>
>    (r'(?P<section_name>[^/]+)/section/$', 'views.listpersection'),
>
>
> in the views i found something like 'Comunit\xe0'
>

That looks like a bytestring, which would seem to indicate you are using an
0.96.x release of Django?  That release does not fully support Unicode,
which will probably cause you problems down the road (besides possibly
contributing to the problem you are having now) since you clearly are
needing to handle non-ASCII data.  I'd recommend upgrading to an SVN
checkout, where this variable passed to your view would be a Unicode object,
not a bytestring.


>
> 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.
>
> I'm shure that the section with name 'Comunità' exists...
> Any ideas?
>

This is a guess, but it might be that your database table has a different
encoding than the bytestring from your URL.  That bytestring looks to be an
ISO 8859-1 (or windows codepage 1252, which has the same code value for à).


Also, the url should really have any non-ASCII characters percent-encoded,
see:

http://tools.ietf.org/html/rfc3986#section-2

Not sure where you 'got' that url from, but if your app is generating these
it should be url-encoding them before including them in links and such, I
believe.

Karen

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to