summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* sync: support gcrypt4.20130909Gravatar Joey Hess2013-09-09
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-09-09
|\
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmOsy6nbvPyXLd--qqjPMLnVIzxgZwtKlQ2013-09-09
| |
* | recommend git-remote-gcrypt (package in incoming)Gravatar Joey Hess2013-09-09
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawl9sYlePmv1xK-VvjBdN-5doOa_Xw-jH4U2013-09-09
| |
| * (no commit message)Gravatar http://joeyh.name/2013-09-09
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-09-09
|\
* | Allow building without quvi support.Gravatar Joey Hess2013-09-09
| |
| * Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawkgH7oNEqNbh3g-N1-UHXuqleXaRYDgj1U2013-09-09
| |
| * Added a commentGravatar http://joeyh.name/2013-09-09
| |
| * Added a commentGravatar RaspberryPie2013-09-09
| |
| * (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawkgH7oNEqNbh3g-N1-UHXuqleXaRYDgj1U2013-09-09
| |
| * Added a commentGravatar http://joeyh.name/2013-09-09
| |
| * Added a commentGravatar http://joeyh.name/2013-09-09
|/
* webapp: Improve javascript's handling of longpolling connection failures, by ↵Gravatar Joey Hess2013-09-09
| | | | reloading the current page in this case. Works around chromium behavior where ajax connections to urls that were already accessed are denied after navigating back to a previous page.
* Added a commentGravatar http://joeyh.name/2013-09-09
|
* (no commit message)Gravatar RaspberryPie2013-09-09
|
* the screenshot failed and i lost it, but we get the point :)Gravatar https://id.koumbit.net/anarcat2013-09-09
|
* Added a commentGravatar http://joeyh.name/2013-09-09
|
* Added a commentGravatar https://id.koumbit.net/anarcat2013-09-09
|
* Added a commentGravatar http://joeyh.name/2013-09-09
|
* create myself a homepageGravatar Antoine Beaupré2013-09-08
|
* small usability thingGravatar https://id.koumbit.net/anarcat2013-09-09
|
* (no commit message)Gravatar https://id.koumbit.net/anarcat2013-09-09
|
* Added a commentGravatar https://www.google.com/accounts/o8/id?id=AItOawmR-xG9O2HWoybxYZPVbYVYxwitfcfDgtE2013-09-09
|
* (no commit message)Gravatar https://www.google.com/accounts/o8/id?id=AItOawmR-xG9O2HWoybxYZPVbYVYxwitfcfDgtE2013-09-09
|
* blog for the dayGravatar Joey Hess2013-09-08
|
* gcrypt urlsGravatar Joey Hess2013-09-08
|
* tocGravatar Joey Hess2013-09-08
|
* add gcrypt tipGravatar Joey Hess2013-09-08
|
* ignore gcrypt remotes w/o an annex-uuidGravatar Joey Hess2013-09-08
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-09-08
|\
* | gcrypt: now supports rsyncGravatar Joey Hess2013-09-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use rsync for gcrypt remotes that are not local to the disk. (Note that I have punted on supporting http transport for now, it doesn't seem likely to be very useful.) This was mostly quite easy, it just uses the rsync special remote to handle the transfers. The git repository url is converted to a RsyncOptions structure, which required parsing it separately, since the rsync special remote only supports rsync urls, which use a different format. Note that annexed objects are now stored at the top of the gcrypt repo, rather than inside annex/objects. This simplified the rsync suport, since it doesn't have to arrange to create that directory. And git-annex is not going to be run directly within gcrypt repos -- or if in some strance scenario it was, it would make sense for it to not see the encrypted objects. This commit was sponsored by Sheila Miguez
* | local gcrypt fully working!Gravatar Joey Hess2013-09-08
| |
| * Added a comment: Add to F-DroidGravatar http://openlifechallenge.wordpress.com/2013-09-08
| |
* | updateGravatar Joey Hess2013-09-07
|/
* fixedGravatar Joey Hess2013-09-07
|
* adjust for earlier change that made sync be introduced earlierGravatar Joey Hess2013-09-07
|
* nameGravatar Joey Hess2013-09-07
|
* blog for the dayGravatar Joey Hess2013-09-07
|
* page for gcryptGravatar Joey Hess2013-09-07
|
* fix commentGravatar Joey Hess2013-09-07
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-09-07
|\
* | partially complete gcrypt remote (local send done; rest not)Gravatar Joey Hess2013-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a git-remote-gcrypt encrypted special remote. Only sending files in to the remote works, and only for local repositories. Most of the work so far has involved making initremote work. A particular problem is that remote setup in this case needs to generate its own uuid, derivied from the gcrypt-id. That required some larger changes in the code to support. For ssh remotes, this will probably just reuse Remote.Rsync's code, so should be easy enough. And for downloading from a web remote, I will need to factor out the part of Remote.Git that does that. One particular thing that will need work is supporting hot-swapping a local gcrypt remote. I think it needs to store the gcrypt-id in the git config of the local remote, so that it can check it every time, and compare with the cached annex-uuid for the remote. If there is a mismatch, it can change both the cached annex-uuid and the gcrypt-id. That should work, and I laid some groundwork for it by already reading the remote's config when it's local. (Also needed for other reasons.) This commit was sponsored by Daniel Callahan.
| * markdown formattingGravatar https://www.google.com/accounts/o8/id?id=AItOawnxlx1UrzVhdy6_gFjzmF42x6QXxBUxg002013-09-07
| |
| * git annex merge out of memory on large reposGravatar https://www.google.com/accounts/o8/id?id=AItOawnxlx1UrzVhdy6_gFjzmF42x6QXxBUxg002013-09-07
|/
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2013-09-07
|\
* | closeGravatar Joey Hess2013-09-07
| |
| * Added a commentGravatar http://joeyh.name/2013-09-07
| |
| * Added a commentGravatar http://joeyh.name/2013-09-07
| |