IS_IMAGE(extensions='png','jpeg','gif','pdf')

should be:

IS_IMAGE(extensions=['png','jpeg','gif','pdf'])

Anyway, if you are using IS_IMAGE only to check the file extensions, then 
just use IS_UPLOAD_FILENAME, which will allow you to check for all the 
image extensions as well as pdf in a single validator (the only additional 
feature of IS_IMAGE is to specify a maximum width and height of the image, 
but you are not using that). Note, the "extension" argument of 
IS_UPLOAD_FILENAME can be a regex, so you can do r'png|jpg|gif|pdf'.

Anthony

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to