2014-07-21 22:32:37 +02:00
|
|
|
Change lsd command so it doesn't show -1
|
|
|
|
* Make sure all Fses show -1 for objects Zero for dates etc
|
2014-07-31 22:24:52 +02:00
|
|
|
* Make test?
|
2014-07-21 22:32:37 +02:00
|
|
|
|
2014-07-31 22:24:52 +02:00
|
|
|
Put the TestRemote names into the Fs description
|
|
|
|
Make rclonetest use the TestRemote name automatically
|
|
|
|
Put rclonetest back into rclone as tests
|
2014-08-01 00:20:39 +02:00
|
|
|
* defaults to using local remote
|
|
|
|
* but could pass another in with a flag
|
2014-07-31 22:24:52 +02:00
|
|
|
|
|
|
|
Run errcheck and go vet in the make file
|
|
|
|
.. Also race detector?
|
|
|
|
|
|
|
|
Write developer manual
|
2014-07-23 00:03:14 +02:00
|
|
|
|
2012-12-29 12:35:41 +01:00
|
|
|
Todo
|
2012-12-31 18:31:19 +01:00
|
|
|
* FIXME: More -dry-run checks for object transfer
|
2013-01-08 23:31:16 +01:00
|
|
|
* Might be quicker to check md5sums first? for swift <-> swift certainly, and maybe for small files
|
2014-03-16 15:01:17 +01:00
|
|
|
* swift: Ignoring the pseudo directories
|
2013-01-02 16:34:25 +01:00
|
|
|
* if object.PseudoDirectory {
|
|
|
|
* fmt.Printf("%9s %19s %s\n", "Directory", "-", fs.Remote())
|
2013-01-03 23:50:00 +01:00
|
|
|
* Make Account wrapper
|
|
|
|
* limit bandwidth for a pool of all individual connectinos
|
|
|
|
* do timeouts by setting a limit, seeing whether io has happened
|
|
|
|
and resetting it if it has
|
|
|
|
* make Account do progress meter
|
2012-12-31 17:40:34 +01:00
|
|
|
* Make logging controllable with flags (mostly done)
|
|
|
|
* -timeout: Make all timeouts be settable with command line parameters
|
2012-12-29 12:35:41 +01:00
|
|
|
* Windows paths? Do we need to translate / and \?
|
|
|
|
* Make a fs.Errorf and count errors and log them at a different level
|
2013-01-08 19:53:35 +01:00
|
|
|
* Add max object size to fs metadata - 5GB for swift, infinite for local, ? for s3
|
2013-01-19 00:21:02 +01:00
|
|
|
* tie into -max-size flag
|
2014-07-19 13:39:31 +02:00
|
|
|
* FIXME Make NewFs to return err.IsAnObject so can put the LimitedFs
|
|
|
|
creation in common code? Or try for as much as possible?
|
|
|
|
* FIXME Account all the transactons (ls etc) using a different
|
|
|
|
Roundtripper wrapper which wraps the transactions?
|
|
|
|
* FIXME write tests for local file system
|
|
|
|
* FIXME implement tests for single file operations in rclonetest
|
|
|
|
* Need to make directory objects otherwise can't upload an empty directory
|
|
|
|
* Or could upload empty directories only?
|
2012-12-29 12:35:41 +01:00
|
|
|
|
2012-12-23 18:46:03 +01:00
|
|
|
Ideas
|
2013-01-08 19:53:35 +01:00
|
|
|
* could do encryption - put IV into metadata?
|
2012-12-29 12:35:41 +01:00
|
|
|
* optimise remote copy container to another container using remote
|
2013-01-19 00:21:02 +01:00
|
|
|
copy if local is same as remote - use an optional Copier interface
|
2013-01-15 00:38:18 +01:00
|
|
|
* support
|
|
|
|
* sftp
|
|
|
|
* scp
|
|
|
|
* rsync over ssh
|
2014-07-19 13:39:31 +02:00
|
|
|
* control times sync (which is slow with some remotes) with -a --archive flag?
|
|
|
|
* Copy a glob pattern - could do with LimitedFs
|
2014-05-05 20:52:52 +02:00
|
|
|
|
2012-12-29 12:35:41 +01:00
|
|
|
s3
|
2013-01-03 23:50:00 +01:00
|
|
|
* Can maybe set last modified?
|
|
|
|
* https://forums.aws.amazon.com/message.jspa?messageID=214062
|
|
|
|
* Otherwise can set metadata
|
|
|
|
* Returns etag and last modified in bucket list
|
2013-01-18 18:01:47 +01:00
|
|
|
|
|
|
|
Bugs
|
2014-04-17 23:27:33 +02:00
|
|
|
* Non verbose - not sure number transferred got counted up? CHECK
|
2014-05-05 20:52:52 +02:00
|
|
|
* When doing copy it recurses the whole of the destination FS which isn't necessary
|
2014-04-24 19:11:08 +02:00
|
|
|
|
|
|
|
Making a release
|
2014-07-19 14:12:20 +02:00
|
|
|
* make test
|
2014-04-24 19:11:08 +02:00
|
|
|
* make tag
|
2014-07-03 23:01:25 +02:00
|
|
|
* edit README.md
|
2014-07-13 19:58:06 +02:00
|
|
|
* git commit fs/version.go README.md docs/content/downloads.md
|
2014-04-24 19:11:08 +02:00
|
|
|
* make retag
|
|
|
|
* . ~/bin/go-cross
|
|
|
|
* make cross
|
|
|
|
* make upload
|
|
|
|
* make upload_website
|
2014-07-03 23:01:25 +02:00
|
|
|
* git push --tags origin master
|