NAME
Dancer::Plugin::WebDAV - Defines routes for methods of HTTP WebDAV
SYNOPSIS
package YourDancerApp;
use Dancer ':syntax';
use Dancer::Plugin::WebDAV;
propfind '/somewhere/:param' => sub {
...
};
mkcol '/anotherwhere/:param' => sub {
...
};
DESCRIPTION
Dancer::Plugin::WebDAV provides the routes controllers to define routes for WebDAV. Just like the routes controllers any, "Dancer/get" in get, "Dancer/patch" in patch, post, del, options and put.
Please making sure your server implementation accepts HTTP methods from WebDAV. The bin/app.pl coming along with the Dancer app skeleton uses HTTP::Server::Simple which has no support on WebDAV. Plack::Handler::Standalone, the default handler of plackup, does support WebDAV.
AUTHOR
shelling <navyblueshellingford@gmail.com>
SEE ALSO
LICENSE
Copyright (C) shelling
The MIT License