Re: [Zope-dev] Fwd: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib

2012-11-30 Thread Charlie Clark

Am 30.11.2012, 08:29 Uhr, schrieb Adam GROSZER agroszer...@gmail.com:


I think I had the same. My hunch was IE, but had no repro.
If you *have* a repro, you could log the *whole* raw request input and  
investigate what's the difference.


Hi Adam,

this is different from the usual IE  Safari shenanigans which were  
related to the accept_charset not being sent and Zope making a bad guess.  
I can reproduce the error without difficulty in Opera. I'm going to try a  
new instance of the site and see how that behaves.


Charlie
--
Charlie Clark
Managing Director
Clark Consulting  Research
German Office
Kronenstr. 27a
Düsseldorf
D- 40217
Tel: +49-211-600-3657
Mobile: +49-178-782-6226
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Fwd: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib

2012-11-30 Thread Adam GROSZER

On 11/30/2012 09:02 AM, Charlie Clark wrote:

Am 30.11.2012, 08:29 Uhr, schrieb Adam GROSZER agroszer...@gmail.com:


I think I had the same. My hunch was IE, but had no repro.
If you *have* a repro, you could log the *whole* raw request input and
investigate what's the difference.


Hi Adam,

this is different from the usual IE  Safari shenanigans which were
related to the accept_charset not being sent and Zope making a bad
guess. I can reproduce the error without difficulty in Opera. I'm going
to try a new instance of the site and see how that behaves.

Charlie


Opera? which version and OS and whatnot?

--
Best regards,
 Adam GROSZER
--
Quote of the day:
You can not discover new oceans unless you have the courage to lose 
sight of the shore.

- Unknown
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Fwd: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib

2012-11-30 Thread Charlie Clark

Am 30.11.2012, 09:37 Uhr, schrieb Adam GROSZER agroszer...@gmail.com:


Opera? which version and OS and whatnot?


12.12 on Mac OS 10.7.5

As originally noted, I don't have the problem in the same browser with an  
extremely similar form on a different site.


Charlie
--
Charlie Clark
Managing Director
Clark Consulting  Research
German Office
Kronenstr. 27a
Düsseldorf
D- 40217
Tel: +49-211-600-3657
Mobile: +49-178-782-6226
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope )


[Zope-dev] Fwd: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib

2012-11-29 Thread Charlie Clark
I'm forwarding this from the CMF list as I'm stumped. I worked my way up  
the debug stack but couldn't find what was causing one Zope instance to  
decode to unicode and the other to leave content as utf-8 (or maybe it's  
the other way round?). Both instances on the same machine.


Any ideas?

Charlie

--- Weitergeleitete Nachricht ---
Von: Charlie Clark charlie.cl...@clark-consulting.eu
An: zope-...@zope.org
Kopie:
Betreff: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib
Datum: Thu, 29 Nov 2012 11:52:13 +0100

Am 29.11.2012, 09:43 Uhr, schrieb Charlie Clark
charlie.cl...@clark-consulting.eu:

No. I guess I'll have to look more closely at the wigdets data. As I  
said a different site on the same machine doesn't exhibit these problems  
so I should have a point of comparison.


Definitely weird. From site 1:

(Pdb) t = self.widgets['town']
(Pdb) t._getFormInput()
u'D\xfcsseldorf'

as expected but from site 2:

(Pdb) t = self.widgets['town']
(Pdb) t._getFormInput()
'D\xc3\xbcsseldorf'

Note the similarity of the field name as one of these forms started out as
a copy of the other. Need to check what is causing this. I think I might
have set a default encoding for Zope to UTF8 ostensibly to reduce IE /
Safari errors. Oh, isn't this fun!

Charlie


--
Charlie Clark
Managing Director
Clark Consulting  Research
German Office
Kronenstr. 27a
Düsseldorf
D- 40217
Tel: +49-211-600-3657
Mobile: +49-178-782-6226
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope )


Re: [Zope-dev] Fwd: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib

2012-11-29 Thread Adam GROSZER

On 11/29/2012 08:20 PM, Charlie Clark wrote:

I'm forwarding this from the CMF list as I'm stumped. I worked my way up
the debug stack but couldn't find what was causing one Zope instance to
decode to unicode and the other to leave content as utf-8 (or maybe it's
the other way round?). Both instances on the same machine.

Any ideas?

Charlie

--- Weitergeleitete Nachricht ---
Von: Charlie Clark charlie.cl...@clark-consulting.eu
An: zope-...@zope.org
Kopie:
Betreff: Re: [Zope-CMF] Weird UnicodeDecodeError with zope.formlib
Datum: Thu, 29 Nov 2012 11:52:13 +0100

Am 29.11.2012, 09:43 Uhr, schrieb Charlie Clark
charlie.cl...@clark-consulting.eu:


No. I guess I'll have to look more closely at the wigdets data. As I
said a different site on the same machine doesn't exhibit these
problems so I should have a point of comparison.


Definitely weird. From site 1:

(Pdb) t = self.widgets['town']
(Pdb) t._getFormInput()
u'D\xfcsseldorf'

as expected but from site 2:

(Pdb) t = self.widgets['town']
(Pdb) t._getFormInput()
'D\xc3\xbcsseldorf'

Note the similarity of the field name as one of these forms started out as
a copy of the other. Need to check what is causing this. I think I might
have set a default encoding for Zope to UTF8 ostensibly to reduce IE /
Safari errors. Oh, isn't this fun!

Charlie




I think I had the same. My hunch was IE, but had no repro.
If you *have* a repro, you could log the *whole* raw request input and 
investigate what's the difference.


--
Best regards,
 Adam GROSZER
--
Quote of the day:
And I smiled to think God's greatness flowed around our incompleteness; 
Round our restlessness, His rest.

- Elizabeth Barrett Browning
___
Zope-Dev maillist  -  Zope-Dev@zope.org
https://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists -
https://mail.zope.org/mailman/listinfo/zope-announce
https://mail.zope.org/mailman/listinfo/zope )