25 Sep
2002
25 Sep
'02
10:45 p.m.
How do I programmatically add a Page Template to a folder in Zope? I'm basing my attempts off of: /zope/utilities/load_site.py This has various instances of: call(object.manage_addXXX, id=name, XXX) e.g., call(object.manage_addDTMLDocument, id=name, title=title, file=body) How do I add a Page Template in a similar manner? I've tried: call(object.manage_addZopePageTemplate, id=name) But that gives me a not found error, indicating I'm not using the correct method name. Thanks, // mark -