[Zope] ExtFile Problem
Dieter Maurer
dieter@handshake.de
Sat, 8 Sep 2001 00:27:18 +0200 (CEST)
Frank Stephan writes:
> I installed ExtFile and a can add files using management interface.
> But I can not using dtml.
>
> I use
>
> <dtml-call "manage_addExtFile(self, 'myID', 'test', 'test',
> REQUEST.form['attached_file'], '', permission_check=0, REQUEST=None)">
>
> and get the following traceback.
> ...
> (Info: manage_addExtFile)
> File <string>, line 2, in f
> (Object: guarded_getitem)
> NameError: (see above)
"manage_addExtFile" is unknown.
Usually, constructors are fetched indirectly:
manage_addProduct[product_name].constructor_name
May be the case for ExtFile, too?
Dieter