Hi, all
 
I try to override PUT_factory method in my container product
 
I read in several webpages I need to create a PUT_factory method in my product to override these mechanism
These method could be like:
 
def PUT_factory(self, name, typ, body):
    return ZopePageTemplate(name, body, content_type=typ)
 
In these case all the objects created by the WebDAV/FTP services will be ZopePageTemplates but these code doesn't work! :(
 
Can anyone explain me the correct solution?
 
Thanks!!!