summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* blog for the dayGravatar Joey Hess2012-11-19
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-11-19
|\
| * (no commit message)Gravatar https://me.yahoo.com/a/uSGZkc1_k._MfptG8E4Hsqx6tUJaerbXGQ--#ac79f2012-11-19
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-11-19
|\|
* | Allow controlling whether login credentials for S3 and webdav are committed ↵Gravatar Joey Hess2012-11-19
| | | | | | | | to the repository, by setting embedcreds=yes|no when running initremote.
* | new storage regime implemented for webdavGravatar Joey Hess2012-11-19
| |
* | Bugfix: directory special remote could loop forever storing a key when a ↵Gravatar Joey Hess2012-11-19
| | | | | | | | | | | | | | | | | | | | too small chunksize was configured. Ensure that each file has something written to it, even if the bytestring chunk size is greater than the configured chunksize. This means we may write a bit larger than the configured value, but only when the configured value is very small; ie, < 8 kb.
* | directory special remote: Made more efficient and robust.Gravatar Joey Hess2012-11-19
| | | | | | | | | | | | | | | | | | Files are now written to a tmp directory in the remote, and once all chunks are written, etc, it's moved into the final place atomically. For now, checkpresent still checks every single chunk of a file, because the old method could leave partially transferred files with some chunks present and others not.
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawmU_2tE75oyG0h2ZPN4lcroIKEMC8G-otE2012-11-19
|/
* remove annex/ from key locations used for webdavGravatar Joey Hess2012-11-18
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-11-18
|\
* | S3: Added progress display for uploading and downloading.Gravatar Joey Hess2012-11-18
| |
* | blog for the dayGravatar Joey Hess2012-11-18
| |
* | S3: upload progress displayGravatar Joey Hess2012-11-18
| |
* | refactorGravatar Joey Hess2012-11-18
| |
* | upload progress bars for webdav!Gravatar Joey Hess2012-11-18
| |
* | simplifyGravatar Joey Hess2012-11-18
| |
* | better streaming while encrypting/decryptingGravatar Joey Hess2012-11-18
| | | | | | | | | | | | Both the directory and webdav special remotes used to have to buffer the whole file contents before it could be decrypted, as they read from chunks. Now the chunks are streamed through gpg with no buffering.
| * Added a commentGravatar http://joeyh.name/2012-11-18
|/
* closeGravatar Joey Hess2012-11-18
|
* fix warningGravatar Joey Hess2012-11-18
|
* Added a commentGravatar http://joeyh.name/2012-11-18
|
* fix build with xml-conduit newer than in debianGravatar Joey Hess2012-11-18
| | | | | The Element data type changed to use a map of attributes. Rather than ifdef, I'm avoiding directly using that data type.
* cabal fix for webdavGravatar Joey Hess2012-11-18
|
* fix build with shakespeare-js-1.0.0.2Gravatar Joey Hess2012-11-18
| | | | | | | For no apparent reason, this version removes all useful instances of ToJavaScript, leavind behind only an instance for Aeson.Value. Argh. Pissed off at this arbitrary breaking change, and seriously considering dropping this library.
* new thread Building git-annex-3.20121112-19309Gravatar https://www.google.com/accounts/o8/id?id=AItOawmU_2tE75oyG0h2ZPN4lcroIKEMC8G-otE2012-11-18
|
* doc/git-annex.mdwn: Typo fix, automaticaly → automaticallyGravatar Øyvind A. Holm2012-11-18
|
* (no commit message)Gravatar Leon2012-11-17
|
* Added a commentGravatar annexuser2012-11-17
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-11-17
|\
* | reproduced; confirmed fixedGravatar Joey Hess2012-11-17
| |
| * Added a commentGravatar http://joeyh.name/2012-11-17
| |
| * Added a commentGravatar http://joeyh.name/2012-11-17
|/
* fix warningGravatar Joey Hess2012-11-17
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2012-11-17
|\ | | | | | | | | Conflicts: doc/design/assistant/polls/prioritizing_special_remotes.mdwn
* | blog for the dayGravatar Joey Hess2012-11-17
| |
* | UI for enabling existing webdav remotesGravatar Joey Hess2012-11-17
| |
* | webapp: support box.comGravatar Joey Hess2012-11-17
| |
| * poll vote (My phone (or MP3 player))Gravatar http://hands.com/~phil/2012-11-17
|/
* Added a comment: Package for older OS XGravatar https://www.google.com/accounts/o8/id?id=AItOawkN91jAhoesnVI9TtWANaBPaYjd1V9Pag82012-11-17
|
* (no commit message)Gravatar http://peter-simons.myopenid.com/2012-11-17
|
* blog for the dayGravatar Joey Hess2012-11-16
|
* Merge branch 'webdav'Gravatar Joey Hess2012-11-16
|\
| * webdav now checks presence of and receives chunked contentGravatar Joey Hess2012-11-16
| | | | | | | | | | Note that receiving encrypted chunked content currently involves buffering. (So does doing so with the directory special remote.)
| * Merge branch 'master' into webdavGravatar Joey Hess2012-11-16
| |\
| * | back to standard directory layout for webdav remotesGravatar Joey Hess2012-11-16
| | | | | | | | | | | | | | | | | | | | | | | | This allows deleting all chunks for a file with a single http command, so it's a win after all. However, does not look in the mixed case hash directories, which were in the past used by the directory, etc remotes.
| * | webdav now supports sending chunked contentGravatar Joey Hess2012-11-16
| | | | | | | | | | | | Not yet getting it though.
| * | generic chunked content helperGravatar Joey Hess2012-11-16
| | | | | | | | | | | | | | | However, directory still uses its optimzed chunked file writer, as it uses less memory than the generic one in the helper.
| * | note that webdav needs upload progress barsGravatar Joey Hess2012-11-16
| | |
| * | encrypted webdav workingGravatar Joey Hess2012-11-16
| | |