You are viewing a plain text version of this content. The canonical link for it is here.
Posted to embperl@perl.apache.org by Ruben Safir <ru...@mrbrklyn.com> on 2020/03/03 17:45:06 UTC

Re: HTML5 Multiple File Upload?

how did you solve this

On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote:
> Does anyone know if Embperl can handle multiple file uploads from
> HTML5? If so, how do you process the different files on the server
> side?
> 
> This works in many browsers now, so it would be nice to be able to
> wean myself away from the Flash widget I'm using currently for this.
> 
> Thanks in advance for any tips...
> 
> Neil
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> For additional commands, e-mail: embperl-help@perl.apache.org

-- 
So many immigrant groups have swept through our town
that Brooklyn, like Atlantis, reaches mythological
proportions in the mind of the world - RI Safir 1998
http://www.mrbrklyn.com 

DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002
http://www.nylxs.com - Leadership Development in Free Software
http://www2.mrbrklyn.com/resources - Unpublished Archive 
http://www.coinhangout.com - coins!
http://www.brooklyn-living.com 

Being so tracked is for FARM ANIMALS and extermination camps, 
but incompatible with living as a free human being. -RI Safir 2013


---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: HTML5 Multiple File Upload?

Posted by Ruben Safir <ru...@mrbrklyn.com>.
On Tue, Mar 03, 2020 at 09:56:50AM -0800, Neil Gunton wrote:
> On 3/3/20 9:55 AM, Ruben Safir wrote:
> >On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote:
> >>I use Dropzone.js to achieve the client side multiple file selection:
> >>
> >>https://www.dropzonejs.com/
> >
> >Can I host the javascript locally?
> 
> Yes

Great!  thanks
> 
> >>It's received on the server side as usual, since the files are
> >>uploaded as separate requests, as if they were selected and uploaded
> >>one by one. So it might not give you technically full HTML5
> >>"multiple files in one upload request" functionality, but it does
> >>achieve the desired effect from the user's point of view, and bonus
> >>is that it requires no changes or special processing on the server
> >>side.
> >>
> >>Hope that helps,
> >>
> >>Neil
> >>
> >>On 3/3/20 9:45 AM, Ruben Safir wrote:
> >>>how did you solve this
> >>>
> >>>On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote:
> >>>>Does anyone know if Embperl can handle multiple file uploads from
> >>>>HTML5? If so, how do you process the different files on the server
> >>>>side?
> >>>>
> >>>>This works in many browsers now, so it would be nice to be able to
> >>>>wean myself away from the Flash widget I'm using currently for this.
> >>>>
> >>>>Thanks in advance for any tips...
> >>>>
> >>>>Neil
> >>>>
> >>>>---------------------------------------------------------------------
> >>>>To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> >>>>For additional commands, e-mail: embperl-help@perl.apache.org
> >>>
> >
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> For additional commands, e-mail: embperl-help@perl.apache.org

-- 
So many immigrant groups have swept through our town
that Brooklyn, like Atlantis, reaches mythological
proportions in the mind of the world - RI Safir 1998
http://www.mrbrklyn.com 

DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002
http://www.nylxs.com - Leadership Development in Free Software
http://www2.mrbrklyn.com/resources - Unpublished Archive 
http://www.coinhangout.com - coins!
http://www.brooklyn-living.com 

Being so tracked is for FARM ANIMALS and extermination camps, 
but incompatible with living as a free human being. -RI Safir 2013


---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: HTML5 Multiple File Upload?

Posted by Neil Gunton <ne...@nilspace.com>.
On 3/3/20 9:55 AM, Ruben Safir wrote:
> On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote:
>> I use Dropzone.js to achieve the client side multiple file selection:
>>
>> https://www.dropzonejs.com/
> 
> Can I host the javascript locally?

Yes

>> It's received on the server side as usual, since the files are
>> uploaded as separate requests, as if they were selected and uploaded
>> one by one. So it might not give you technically full HTML5
>> "multiple files in one upload request" functionality, but it does
>> achieve the desired effect from the user's point of view, and bonus
>> is that it requires no changes or special processing on the server
>> side.
>>
>> Hope that helps,
>>
>> Neil
>>
>> On 3/3/20 9:45 AM, Ruben Safir wrote:
>>> how did you solve this
>>>
>>> On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote:
>>>> Does anyone know if Embperl can handle multiple file uploads from
>>>> HTML5? If so, how do you process the different files on the server
>>>> side?
>>>>
>>>> This works in many browsers now, so it would be nice to be able to
>>>> wean myself away from the Flash widget I'm using currently for this.
>>>>
>>>> Thanks in advance for any tips...
>>>>
>>>> Neil
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
>>>> For additional commands, e-mail: embperl-help@perl.apache.org
>>>
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: HTML5 Multiple File Upload?

Posted by Ruben Safir <ru...@mrbrklyn.com>.
On Tue, Mar 03, 2020 at 09:52:31AM -0800, Neil Gunton wrote:
> I use Dropzone.js to achieve the client side multiple file selection:
> 
> https://www.dropzonejs.com/

Can I host the javascript locally?


> 
> It's received on the server side as usual, since the files are
> uploaded as separate requests, as if they were selected and uploaded
> one by one. So it might not give you technically full HTML5
> "multiple files in one upload request" functionality, but it does
> achieve the desired effect from the user's point of view, and bonus
> is that it requires no changes or special processing on the server
> side.
> 
> Hope that helps,
> 
> Neil
> 
> On 3/3/20 9:45 AM, Ruben Safir wrote:
> >how did you solve this
> >
> >On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote:
> >>Does anyone know if Embperl can handle multiple file uploads from
> >>HTML5? If so, how do you process the different files on the server
> >>side?
> >>
> >>This works in many browsers now, so it would be nice to be able to
> >>wean myself away from the Flash widget I'm using currently for this.
> >>
> >>Thanks in advance for any tips...
> >>
> >>Neil
> >>
> >>---------------------------------------------------------------------
> >>To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
> >>For additional commands, e-mail: embperl-help@perl.apache.org
> >

-- 
So many immigrant groups have swept through our town
that Brooklyn, like Atlantis, reaches mythological
proportions in the mind of the world - RI Safir 1998
http://www.mrbrklyn.com 

DRM is THEFT - We are the STAKEHOLDERS - RI Safir 2002
http://www.nylxs.com - Leadership Development in Free Software
http://www2.mrbrklyn.com/resources - Unpublished Archive 
http://www.coinhangout.com - coins!
http://www.brooklyn-living.com 

Being so tracked is for FARM ANIMALS and extermination camps, 
but incompatible with living as a free human being. -RI Safir 2013


---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org


Re: HTML5 Multiple File Upload?

Posted by Neil Gunton <ne...@nilspace.com>.
I use Dropzone.js to achieve the client side multiple file selection:

https://www.dropzonejs.com/

It's received on the server side as usual, since the files are uploaded 
as separate requests, as if they were selected and uploaded one by one. 
So it might not give you technically full HTML5 "multiple files in one 
upload request" functionality, but it does achieve the desired effect 
from the user's point of view, and bonus is that it requires no changes 
or special processing on the server side.

Hope that helps,

Neil

On 3/3/20 9:45 AM, Ruben Safir wrote:
> how did you solve this
> 
> On Sat, Oct 15, 2016 at 08:20:38AM -0700, Neil Gunton wrote:
>> Does anyone know if Embperl can handle multiple file uploads from
>> HTML5? If so, how do you process the different files on the server
>> side?
>>
>> This works in many browsers now, so it would be nice to be able to
>> wean myself away from the Flash widget I'm using currently for this.
>>
>> Thanks in advance for any tips...
>>
>> Neil
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
>> For additional commands, e-mail: embperl-help@perl.apache.org
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: embperl-unsubscribe@perl.apache.org
For additional commands, e-mail: embperl-help@perl.apache.org