I'm going to check trunk, but I'm curious to know the difference b/n image = db.pictures.image.store(form.vars.image.file, form.vars.image.filename) and image = db.pictures.image.store(request.vars.image.file)
first one has two arguments and later has only one.( so, file name is not mandatory?) And I think I'm correct in assuming that request.vars will be copied to form.vars ?

