- Fixed RT #52665 (http://rt.cpan.org/Public/Bug/Display.html?id=52665), Using dave or propfind() on URLs containing escaped chars (%xx) could fail, due to upper/lower case differences. Thanks to cebjyre for the patch and the test case.
- Fixed RT #14506 (http://rt.cpan.org/Public/Bug/Display.html?id=14506), about the missing get_lastresponse() method. It was a documentation bug. - Fixed RT #29788 (http://rt.cpan.org/Public/Bug/Display.html?id=29788), avoid file corruptions on Win32 when calling HTTP::DAV::get() method. - Fixed RT #31014 (http://rt.cpan.org/Public/Bug/Display.html?id=31014), probably already in v0.34, since it seems related to propfind() "depth" bug.
- Fixed RT #44409 (http://rt.cpan.org/Public/Bug/Display.html?id=44409), Small bug in HTTP::DAV::put(). Passing a reference as local content resulted in the "SCALAR(0x12345678)" being logged instead of the real scalar.
- Fixed RT #19616 (http://rt.cpan.org/Public/Bug/Display.html?id=19616), LWP::UserAgent::redirect_ok() is not changed anymore. We're subclassing it from HTTP::DAV::UserAgent and overriding redirect_ok() there. - Fixed RT #42877 (http://rt.cpan.org/Public/Bug/Display.html?id=42877), HTTP::DAV::UserAgent::credentials() has been modified to behave like LWP::UserAgent::credentials(), otherwise basic authentication breakages can occur. - Fixed a problem with C<-depth> argument to C<HTTP::DAV::propfind()> that could lead to massive performance degradation, especially when running C<propfind()> against large folders. C<-depth> was set to 1 even when passed as zero.
- Fixed RT #40318 (http://rt.cpan.org/Public/Bug/Display.html?id=40318), about getting single or multiple files directly to \*STDOUT.
- Fixed RT #39150 (http://rt.cpan.org/Public/Bug/Display.html?id=39150), about downloading multiple files in the same directory.
- Clearly state that opera software asa is now co-maintainer of http::dav - Fixed various inconsistencies in the v0.32 documentation
- Now HTTP::DAV requires Perl 5.6.0+ and Scalar::Util (core in 5.8.x).
- Now HTTP::DAV objects are correctly released from memory when they go out of scope. Now it should be possible to use multiple instances of HTTP::DAV even in long-running processes. Was caused by circular references between HTTP::DAV and HTTP::DAV::Resource.
- Now works with mod_dav under Apache 2.
- Fixed bug to correctly handle the put/get of filenames with spaces in them. - Fixed bug to allow the PUT of empty files. - put() now uses binmode so that it works under Windows. - HTTP redirect code added in the previous release was incorrectly returning a HTTP::Response instead of a HTTP::DAV::Response - Fixed bug to allow https for copy and move (http:// was hardcoded). - Fixed strange copy/move bug for Apache2.0's mod_dav.
https support as provided from the underlying LWP library has been tested against mod_dav and mod_ssl. Seems to work well. See INSTALLATION for more detail.
Requires MD5 to be installed. See INSTALLATION notes.
Useful for giving progress indicators.
the get() routine now allows you to pass by reference a filehandle or scalar in which to save the contents of the GET request.
Thanks to Jeremy for this patch.
Thanks to Jeremy for this patch.
HTTP::DAV::get() and HTTP::DAV::put() now supports file globs. This functionality also propagates to dave. This allows you to do the following:
dav> put /tmp/index*.html dav> get index[12].htm? /tmp ?,* and sets ([]) are supported. See the docs for details.
HTTP::DAV now requires the Perl module File::Glob which comes bundled with perl5.6 and later.
Complete overhaul of API, recursive get and put, addition of dave.
I wrote dave (the DAV Explorer) because I needed an end-user application that allowed me to "feel" how well the HTTP::DAV API was performing. dave is quite similar to Joe Orton's C-based DAV client called cadaver (yes, imitation is the best form of flattery).
This new API is accessed directly through the HTTP::DAV module and is based on the core API written in previous releases.
The new API now supports, proppatch, recursive get and put.
Moving from v0.05 to v0.22 in one release might indicate the amount of work gone into this release.
is now included in PerlDAV. The test suite is built on top of the standard Perl Test::Harness modules. Still in development, the test suite is highlighting interoperability problems with DAV-servers a lot quicker than before. See "the test suite & interoperability" section.
General bug fixes and addition of proppatch
- added PROPPATCH method to HTTP::DAV::Resource, thanks to Sylvain Plancon. - fixed uninitialized warnings in test scripts. - fixed new lock bug in DAV::Lock, thanks to Ben Evans - fixed dumb mistake where PUT was calling get instead of put, thanks to Sylvain and Ben again. - fixed call to Utils::bad, thanks to Sylvain
Initial Release
- supports PUT,GET,MLCOL,DELETE,OPTIONS,PROPFIND,LOCK,UNLOCK,steal_lock,lock_discovery