Commit graph

15142 commits

Author SHA1 Message Date
Joey Hess
2369ba4618 move bug and close it 2014-08-12 15:40:21 -04:00
http://joeyh.name/
2718c78ae7 Added a comment 2014-08-12 19:37:56 +00:00
http://joeyh.name/
57fb728b62 Added a comment 2014-08-12 18:58:49 +00:00
Joey Hess
631bf3cbc2 Merge branch 'master' of ssh://git-annex.branchable.com 2014-08-12 14:45:00 -04:00
Joey Hess
f0df660570 WORM backend: When adding a file in a subdirectory, avoid including the subdirectory in the key name. 2014-08-12 14:38:53 -04:00
Joey Hess
4ae25032c6 maybe better note for direct mode, although I dislike the walkthrough being complicated by direct mode at all 2014-08-12 14:30:44 -04:00
http://joeyh.name/
1782fd177c Added a comment 2014-08-12 18:24:57 +00:00
Joey Hess
b09c02b4f9 confirmed; really a git bug 2014-08-12 14:24:38 -04:00
http://joeyh.name/
6113f4cf0f Added a comment 2014-08-12 18:00:47 +00:00
http://joeyh.name/
54d4ce654b Added a comment 2014-08-12 17:57:26 +00:00
http://joeyh.name/
ee7872d3b2 Added a comment 2014-08-12 17:50:15 +00:00
http://joeyh.name/
99ee12d513 Added a comment 2014-08-12 17:48:35 +00:00
http://joeyh.name/
1ac2e022c7 Added a comment 2014-08-12 17:39:10 +00:00
http://joeyh.name/
e698bbc258 Added a comment 2014-08-12 17:33:25 +00:00
http://joeyh.name/
fb1dc71cc8 Added a comment 2014-08-12 17:29:17 +00:00
http://joeyh.name/
6f24dc28ab Added a comment 2014-08-12 17:26:46 +00:00
https://launchpad.net/~rorymcc
be6f7b4567 Added a comment 2014-08-11 18:41:05 +00:00
https://launchpad.net/~rorymcc
7a7e2ef606 Added a comment 2014-08-11 18:37:47 +00:00
sts
7e78aff15c Added a comment 2014-08-11 11:39:44 +00:00
sts
1cb4fb012e 2014-08-11 08:29:24 +00:00
https://id.koumbit.net/anarcat
a40f1552c2 i believe i provided moreinto in the comments now 2014-08-11 01:58:50 +00:00
https://id.koumbit.net/anarcat
1824d56383 Added a comment: more info 2014-08-11 01:55:28 +00:00
https://id.koumbit.net/anarcat
6332d7161e icing 2014-08-10 23:56:48 +00:00
https://id.koumbit.net/anarcat
34f5beaaef always set the playcount to some numeric value, 0 if we fail 2014-08-10 23:48:06 +00:00
https://id.koumbit.net/anarcat
5141e53ca2 rename tips/dumb_metadata_extraction_from_xbmc/git-annex-xbmc-playcount.pl.pl to tips/dumb_metadata_extraction_from_xbmc/git-annex-xbmc-playcount.pl 2014-08-10 23:35:43 +00:00
https://id.koumbit.net/anarcat
fd2546dafb trying script upload from the web interface, neat 2014-08-10 23:33:36 +00:00
https://id.koumbit.net/anarcat
ae30cba464 this is degenerate, but should work 2014-08-10 23:32:47 +00:00
Joey Hess
54b74ef8db Merge branch 'master' of ssh://git-annex.branchable.com 2014-08-10 15:20:03 -04:00
Joey Hess
dc2155c2b8 devblog 2014-08-10 15:17:59 -04:00
http://svario.it/gioele
0da82b1d68 Explain the problem better 2014-08-10 15:57:33 +00:00
Joey Hess
81e1b2078e devblog 2014-08-08 23:25:48 -04:00
Joey Hess
1412056b20 Merge branch 'newchunks' 2014-08-08 23:25:38 -04:00
https://www.google.com/accounts/o8/id?id=AItOawmvzzyDA8uXFz8yokeCrepbh8PwWe_WrjE
d8a865a397 Added a comment: a more recent fork 2014-08-08 16:03:24 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmvzzyDA8uXFz8yokeCrepbh8PwWe_WrjE
5c24841d37 Added a comment: current status? 2014-08-08 16:00:18 +00:00
Joey Hess
a619175732 devbog 2014-08-07 19:57:55 -04:00
Joey Hess
2a94853e75 Merge branch 'master' of ssh://git-annex.branchable.com 2014-08-06 18:40:49 -04:00
Joey Hess
7e55fe6a1f devblog 2014-08-06 18:33:20 -04:00
Joey Hess
aacb0b2823 convert WebDAV to new special remote interface, adding new-style chunking 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.
2014-08-06 16:57:06 -04:00
Joey Hess
b4cf22a388 pushed checkPresent exception handling out of Remote implementations
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.
2014-08-06 13:45:19 -04:00
gernot
70740bcc55 2014-08-06 12:53:04 +00:00
http://svario.it/gioele
1c738db295 Revert to normal forum page 2014-08-06 12:06:07 +00:00
https://renaud.casenave.fr/
63321f57fa 2014-08-06 06:50:04 +00:00
https://www.google.com/accounts/o8/id?id=AItOawmraN_ldJplGunVGmnjjLN6jL9s9TrVMGE
a4de1c707d Added a comment: Can annex use existing backends when amending existing files? 2014-08-05 21:35:34 +00:00
gernot
b07b1d8ec8 2014-08-05 20:14:25 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkBTVYS5lTecuenAB01eHgfUxE20vWVpU4
beecf61fe0 How to remove a directory with git-annex added? 2014-08-05 18:07:56 +00:00
https://www.google.com/accounts/o8/id?id=AItOawkBTVYS5lTecuenAB01eHgfUxE20vWVpU4
d0779c815a How to remove a directory with git-annex added? 2014-08-05 18:04:38 +00:00
jg123h12jh3y12g3y
353cf1eaca 2014-08-05 14:46:51 +00:00
annexuser123
f58930f26c Added a comment 2014-08-04 18:00:00 +00:00
zardoz
13827c8a97 Added a comment 2014-08-04 08:05:37 +00:00
http://svario.it/gioele
f12a00f159 Added a comment: Multipart S3 support files > 5 GB 2014-08-04 06:00:45 +00:00