Andy Bierman schrieb: > Hi, > > I need to create a WEB form that allows 1 or more potentially > large files (10GB - 100GB) to be uploaded to the user's home dir, > and then send an email to a notify list when this is done. > > I know about the FileField widget and > the FieldStorageUploadConverter, and expanding forms, > but I don't want to encode these files in a form. > > Are there any BitTorrent or FTP upload widgets available?
That is technically impossible. FTP and BT are *protocols* that the browser must speak. And it doesn't. So you don't stand a chance here with widgets. AFAIK the only real way to do this - especially allowing continuous uploads - is via Flash & some server-side interface that accepts data chunk-wise. Diez --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

