26 May
2005
26 May
'05
10:24 p.m.
Simon ALEXANDRE wrote at 2005-5-26 10:37 +0200:
... Here is the line added in the external method:
self.dir_filesystem.manage_upload(file=self.zipfile)
zipfile is the name of the file in the html form (File <INPUT TYPE="file" NAME="zipfile" SIZE="25" VALUE="">)
As all request parameters (such as form controls), it is part of the request object. Therefore, you access it with "self.REQUEST['zipfile']". -- Dieter