[Zope3-Users] Problem with unicode decode error

2006-05-28 Thread Florian Lindner
Hello, I'm reading in a file to create content objects out of this file, I'm using the csv.reader object for that purpose. The name is choosen by a customized name chooser adapter: class XGMNameChooser(NameChooser): implements(INameChooser) def chooseName(self, name, object):

[Zope3-Users] Re: Problem with unicode decode error

2006-05-28 Thread Philipp von Weitershausen
Hi, > I'm reading in a file to create content objects out of this file, I'm using > the csv.reader object for that purpose. >From what I read below it seems like you're storing the raw string data and aren't decoding non-ASCII characters. Content objects usually store unicode data because it's m

[Zope3-Users] redirect in a ContainerTraverser

2006-05-28 Thread gawel
Hi, i try to find to a way to redirect to an *external* location with a ContainerTraverser subclass. Obviously the standard response.redirect() don't work here because the publishTraverse method must return a callable object. I've created a Redirect view that do the stuff and then i'm able to it