That should work fine on Linux...but the purist that I am says to use the subprocess module instead of os.popen (it's more futureproof).
http://pagenoare.net/paste/default/show/37 Kacper Krupa wrote: > http://pagenoare.net/paste/default/show/35 > > it's a way to do that. i know it's non-pythonic, but i can't do it > more "pythonic". > > On 18 Mar, 09:05, Michal Jursa <[email protected]> wrote: > >> Is it possible to get mime-type of the uploaded object in some web2py >> manner? It would be better to work with mime-type then some letters in >> filename I think. >> >> Mike alias Plysak :) >> >> mdipierro wrote: >> >>> class IS_GIF: >>> def __init__(self,em): self.em=em >>> def __call__(self,value): >>> if value and value.filename[-4:].lower()!='.gif': >>> return (value,self.em) >>> return (value,None) >>> >>> db.table.field.requires=IS_GIF() >>> >>> On Mar 17, 7:45 pm, TheDude <[email protected]> wrote: >>> >>>> How would I only allow gif, png or jpeg images to be uploaded? >>>> > > > -- Timothy Farrell <[email protected]> Computer Guy Statewide General Insurance Agency (www.swgen.com) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/web2py?hl=en -~----------~----~----~----~------~----~------~--~---

