Re: PUT handler

2009-04-24 Thread André Warnier
n on the web, here : http://www.farid-hajji.net/books/de/Hajji_Farid/pbv2/ew/cgi-upload.html ) Searching for "+mod_perl +"put handler" gives some interesting historical material.. I don't think i've ever seen anything about PUT requests directly, but i'd imagine you'd

Re: PUT handler

2009-04-24 Thread Adam Prime
_perl +"put handler" gives some interesting historical material.. I don't think i've ever seen anything about PUT requests directly, but i'd imagine you'd just do something like (completely untested): sub handler :method { my ($self,$r) = @_; if ($r->m

Re: PUT handler

2009-04-24 Thread André Warnier
Thanks. Do you happen to know /where/ in the on-line mod_perl docs there is information about handling a PUT request. (I found a nice article in German on the web, here : http://www.farid-hajji.net/books/de/Hajji_Farid/pbv2/ew/cgi-upload.html ) Searching for "+mod_perl +"put handler&q

Re: PUT handler

2009-04-24 Thread Steve Siebert
ier wrote: Greetings. I would like to create a mod_perl PUT handler, but I don't really understand if I have for that to do anything special in the handler() method (apart from dealing with the PUT data itself). Is there an example somewhere ? In particular, I don't underst

PUT handler

2009-04-24 Thread André Warnier
Greetings. I would like to create a mod_perl PUT handler, but I don't really understand if I have for that to do anything special in the handler() method (apart from dealing with the PUT data itself). Is there an example somewhere ? In particular, I don't understand this p