rclone-dev:onedrive-sharedfolders

Last commit made on 2018-12-26
Get this branch:
git clone -b onedrive-sharedfolders https://git.launchpad.net/rclone-dev

Branch merges

Branch information

Name:
onedrive-sharedfolders
Repository:
lp:rclone-dev

Recent commits

108ec53... by Cnly

onedrive: fix driveID of src being moved not determined correctly

64e3033... by Cnly

onedrive: make moving between drives fall back to copying then deleting

7d87386... by Cnly

fstests: fix TestFsName fails when using remote:with/path

beb773d... by Cnly

onedrive: fix broken support for "shared with me" folders - #2536, #2778

5babf2d... by Animosity022 <email address hidden>

Update drive.md

Fixed the Google Drive API documentation

9012d7c... by Nick Craig-Wood

cmd: fix --progress crash under Windows Jenkins - fixes #2846

df1faa9... by Nick Craig-Wood

webdav: fail soft on time parsing errors

The time format provided by webdav servers seems to vary wildly from
that specified in the RFC - rclone already parses times in 5 different
formats!

If an unparseable time is found, then fail softly logging an ERROR
(just once) but returning the epoch.

This will mean that webdav servers with bad time formats will still be
usable by rclone.

3de7ad5... by Nick Craig-Wood

b2: for a bucket limited application key check the bucket name

Before this fix rclone would just use the authorised bucket regardless
of what bucket you put on the command line.

This uses the new `bucketName` response in the API and checks that the
user is using the correct bucket name to avoid accidents.

Fixes #2839

9cb3a68... by Garry McNulty <email address hidden>

crypt: check for maximum length before decrypting filename

The EME Transform() method will panic if the input data is larger than
2048 bytes.

Fixes #2826

c1dd767... by Nick Craig-Wood

httplib: make http serving with auth generate INFO messages on auth fail

2018/12/13 12:13:44 INFO : /: 127.0.0.1:39696: Basic auth challenge sent
2018/12/13 12:13:54 INFO : /: 127.0.0.1:40050: Unauthorized request from ncw

Fixes #2834