aboutsummaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-08-12
|\
* | special case edit page for web remoteGravatar Joey Hess2014-08-12
| | | | | | | | | | | | The crash came from calling Git.repoLocation, but it made sense to fix this higher up, because there is nothing to edit about the web, it just is what it is.
* | more complete gpg key verification process, including statement signed with ↵Gravatar Joey Hess2014-08-12
| | | | | | | | my personal key
| * Added a commentGravatar https://id.koumbit.net/anarcat2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
* | closeGravatar Joey Hess2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
|/
* move bug and close itGravatar Joey Hess2014-08-12
|
* Added a commentGravatar http://joeyh.name/2014-08-12
|
* Added a commentGravatar http://joeyh.name/2014-08-12
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-08-12
|\
* | WORM backend: When adding a file in a subdirectory, avoid including the ↵Gravatar Joey Hess2014-08-12
| | | | | | | | subdirectory in the key name.
* | maybe better note for direct mode, although I dislike the walkthrough being ↵Gravatar Joey Hess2014-08-12
| | | | | | | | complicated by direct mode at all
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
* | confirmed; really a git bugGravatar Joey Hess2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
| |
| * Added a commentGravatar http://joeyh.name/2014-08-12
|/
* Added a commentGravatar https://launchpad.net/~rorymcc2014-08-11
|
* Added a commentGravatar https://launchpad.net/~rorymcc2014-08-11
|
* Added a commentGravatar sts2014-08-11
|
* (no commit message)Gravatar sts2014-08-11
|
* i believe i provided moreinto in the comments nowGravatar https://id.koumbit.net/anarcat2014-08-11
|
* Added a comment: more infoGravatar https://id.koumbit.net/anarcat2014-08-11
|
* icingGravatar https://id.koumbit.net/anarcat2014-08-10
|
* always set the playcount to some numeric value, 0 if we failGravatar https://id.koumbit.net/anarcat2014-08-10
|
* rename ↵Gravatar https://id.koumbit.net/anarcat2014-08-10
| | | | tips/dumb_metadata_extraction_from_xbmc/git-annex-xbmc-playcount.pl.pl to tips/dumb_metadata_extraction_from_xbmc/git-annex-xbmc-playcount.pl
* trying script upload from the web interface, neatGravatar https://id.koumbit.net/anarcat2014-08-10
|
* this is degenerate, but should workGravatar https://id.koumbit.net/anarcat2014-08-10
|
* Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-08-10
|\
* | devblogGravatar Joey Hess2014-08-10
| |
| * Explain the problem betterGravatar http://svario.it/gioele2014-08-10
|/
* devblogGravatar Joey Hess2014-08-08
|
* Merge branch 'newchunks'Gravatar Joey Hess2014-08-08
|\
* | Added a comment: a more recent forkGravatar https://www.google.com/accounts/o8/id?id=AItOawmvzzyDA8uXFz8yokeCrepbh8PwWe_WrjE2014-08-08
| |
* | Added a comment: current status?Gravatar https://www.google.com/accounts/o8/id?id=AItOawmvzzyDA8uXFz8yokeCrepbh8PwWe_WrjE2014-08-08
| |
* | devbogGravatar Joey Hess2014-08-07
| |
* | Merge branch 'master' of ssh://git-annex.branchable.comGravatar Joey Hess2014-08-06
|\ \
* | | devblogGravatar Joey Hess2014-08-06
| | |
| | * convert WebDAV to new special remote interface, adding new-style chunking ↵Gravatar Joey Hess2014-08-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support Reusing http connection when operating on chunks is not done yet, I had to submit some patches to DAV to support that. However, this is no slower than old-style chunking was. Note that it's a fileRetriever and a fileStorer, despite DAV using bytestrings that would allow streaming. As a result, upload/download of encrypted files is made a bit more expensive, since it spools them to temp files. This was needed to get the progress meters to work. There are probably ways to avoid that.. But it turns out that the current DAV interface buffers the whole file content in memory, and I have sent in a patch to DAV to improve its interfaces. Using the new interfaces, it's certainly going to need to be a fileStorer, in order to read the file size from the file (getting the size of a bytestring would destroy laziness). It should be possible to use the new interface to make it be a byteRetriever, so I'll change that when I get to it. This commit was sponsored by Andreas Olsson.
| | * pushed checkPresent exception handling out of Remote implementationsGravatar Joey Hess2014-08-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I tend to prefer moving toward explicit exception handling, not away from it, but in this case, I think there are good reasons to let checkPresent throw exceptions: 1. They can all be caught in one place (Remote.hasKey), and we know every possible exception is caught there now, which we didn't before. 2. It simplified the code of the Remotes. I think it makes sense for Remotes to be able to be implemented without needing to worry about catching exceptions inside them. (Mostly.) 3. Types.StoreRetrieve.Preparer can only work on things that return a Bool, which all the other relevant remote methods already did. I do not see a good way to generalize that type; my previous attempts failed miserably.
| * | (no commit message)Gravatar gernot2014-08-06
| | |
| * | Revert to normal forum pageGravatar http://svario.it/gioele2014-08-06
| | |
| * | (no commit message)Gravatar https://renaud.casenave.fr/2014-08-06
| | |
| * | Added a comment: Can annex use existing backends when amending existing files?Gravatar https://www.google.com/accounts/o8/id?id=AItOawmraN_ldJplGunVGmnjjLN6jL9s9TrVMGE2014-08-05
| | |